Jump to content
Search Community

babeeni

Members
  • Posts

    1
  • Joined

  • Last visited

Posts posted by babeeni

  1. Hi all,

     

    I am sure this is something that is quite simple, however I am a newbie and would like to know how I loop the following code so that my animation keeps repeating. Would I need to rewrite the whole thing? I am new to actionscript, greensock is amazing!

     

     

    import com.greensock.*;

    import com.greensock.easing.*;

     

    //Train tween

    TweenNano.to(train, 0.75, {x:400, ease:Quad.easeOut});

     

    //Rotation 1 text tween in

    TweenNano.to(mc, 1, {x:20, ease:Quad.easeOut});

    //Rotation 1 text tween out

    TweenNano.to(mc, 1, {delay: 3, x:800});

     

    //Destination text tween in

    TweenNano.to(destination,1, {delay: 4,x:20, ease:Quad.easeOut});

     

    //Speed text tween in

    TweenNano.to(speed, 1, { x:235, delay: 4, ease:Quad.easeOut});

    //Speed text tween out

    TweenNano.to(speed, 1, {delay: 7, x:800});

     

    //Price text tween in

    TweenNano.to(price, 1, {delay: 7, x:240, ease:Quad.easeOut});

     

    TweenNano.to(booknow, 1, {delay: 7,scaleX:1, scaleY:1, alpha:1});

×
×
  • Create New...