Jump to content
Search Community

matttbg

Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by matttbg

  1. Sorry I forgot to mention I am only using TweenLight
  2. Hi, I am having trouble canceling all delayed transitions. What would be the code to stop all of the transitions yet to happen when a user clicks a button? Thanks! Matthew
  3. Thank you, your response makes sense to me but when I look at what is happening it appears that the .from() function appears to be happening twice. Like the last one is not being removed when the second one is starting. I trued using the overwrite manager but nothing happened. Thanks, Matt
  4. Hi, I am having trouble restarting an animation. I have a function that I call when the the timeline gets to a movieclip but when I leave that section on the timeline and come back the functions do not restart they duplicate so that two sets of the same function are running at different times. function f_anim(){ TweenLite.from(pic0, 1, {_alpha:0, overwrite:0, delay:0.5}); TweenLite.from(pic0, 11, {_x:-100, _y:-40, _xscale:100, _yscale:100, overwrite:0, delay:0.5}); TweenLite.from(txtA1, 0.5, {transformAroundCenter:{_xscale:300, _yscale:300}, _alpha:0, blurFilter:{blurX:20, blurY:20}, ease:Circ.easeIn, overwrite:0, delay:1}); } f_anim(); How can I stop everything that is happening in f_anim and start it again from the beginning? Any help would be appreciated. Thanks, Matt
×
×
  • Create New...