I have created a simple banner with the following code:
var tl = new TimelineMax({repeat:3,repeatDelay:10})
tl.from(this.box1, .6, {scaleX:0, scaleY:0, alpha:1,ease:Back.easeOut}) .from(this.box2, .6, {delay:-.4,scaleX:0, scaleY:0, alpha:1,ease:Back.easeOut}) .from(this.cta, .6, {delay:.1,scaleX:0, scaleY:0, alpha:1,ease:Back.easeOut})
The 3 movieclip animates in but not out, the animation just restarts. I would like the animation to reverse then restart 3 times but then stop before reversing the 3rd time. Is there a marker or label I could use to achieve this.
NOTE: I am