Share Posted May 26, 2014 Does anyone know if it's possible to assign a label to a sequence when that sequence is already relative to another label? for instance: tl.to("#redBox", 1, {x:550}, "start") .to("#blueBox", 1, {x:550}, "start+=0.05", "second") .to("#greenBox", 1 {x:550}, "second+=1"); You can see the codepen here See the Pen vLtlg by anon (@anon) on CodePen But from this snippit you see that the bluebox starts relative to start, and I want greenbox to start relative to bluebox. Is this possible? Link to post Share on other sites
Share Posted May 26, 2014 You would have to create the "second" label separately like so: tl.to("#redBox", 1, {x:550}, "start") .add("second", "start+=0.5")// add second label 0.5 seconds after start label .to("#blueBox", 1, {x:550}, "second") .to("#greenBox", 1, {x:550}, "second+=1"); http://codepen.io/GreenSock/pen/hoGtD 2 Link to post Share on other sites