Jump to content
Search Community

yelle77

Members
  • Posts

    5
  • Joined

  • Last visited

yelle77's Achievements

0

Reputation

  1. Hi, Probably very simple but i cant seem to get my head around timelineMax. I have a movieclip (spinY_mc) that i want to play backwards when i click a back button (back_mc). back_mc has various conditions and is done as a Click event. Can you help?
  2. Sussed it... enterButton_mc.addEventListener(MouseEvent.CLICK, enterButton); function enterButton(e:MouseEvent):void { TweenLite.to(enterButton_mc, 1, {alpha:0}); TweenLite.to(hand_mc, 1, {alpha:0}); TweenLite.to(introLogo_mc, 3, {scaleX:6, scaleY:6, alpha:1}); OverwriteManager.init(2); TweenLite.to(introLogo_mc, 1, {alpha:0, delay:1, onComplete:nextFrame}); }
  3. Hi, I want to know if it is possible to produce a number of tweens and when complete jump to Frame 2 of my main timeline? Ive tried a few things like calling in the frame Plugin but cant seem to get it to work? import com.greensock.*; import com.greensock.plugins.*; stop(); enterButton_mc.addEventListener(MouseEvent.CLICK, enterButton); function enterButton(e:MouseEvent):void { TweenLite.to(enterButton_mc, 1, {alpha:0}); TweenLite.to(hand_mc, 1, {alpha:0}); TweenLite.to(introLogo_mc, 3, {scaleX:6, scaleY:6, alpha:1}); OverwriteManager.init(2); TweenLite.to(introLogo_mc, 1, {alpha:0, delay:1}); } This is my code, after all these tweens have been made I want to jump to Frame 2? Can anyone help?
  4. Thanks Carl!
  5. Im new to all this and im sure what im after is very simple so can anyone help? I want a movieclips alpha to tween into alpha:1 stay like that for say 5 seconds and then tween back out to alpha:0 again. Can this be done in tweenlite? or do i need one of the other tweening platforms?
×
×
  • Create New...