Hello,
I'm just starting with TweenLite and I have a very basic question:
I tween a movieclip in a mouseup event (it is a simple scroll), using this:
TweenLite.to(mc, 2, {throwProps:{x:200, y:0}, ease:Strong.easeOut});
The effect looks good, but I need to limit the movieclip "mc" X.
The mc may have a maximum X value of 0, and a minimum of -1500, so I can tween the mc without showing the background under the mc.
Is there any way to limit the tween or to stop the tween when the mc reach the limits?
Thank you very much.