Jump to content
Search Community

Andrija

Members
  • Posts

    2
  • Joined

  • Last visited

Posts posted by Andrija

  1. Thanks very much for help, I will update code so there is overlapping in duration/delay as you suggested.

     

    Sample that I posted was just a demo from bigger picture. I'm working on a product that converts/emulates whole PowerPoint animation model, and now I'm adjusting mine "old" property animation engine with TweenLite ( which is written very well ).

     

    Thanks for help,

    Andrija

  2. Hello everyone, I need small help with TweenLite. I'm trying to create animation on my MovieClip combining multiple TweenLite, but it doesn't behave as I hoped at start.

     

    TweenLite.to( mc, 0, {x:119.5, y:609 , overwrite:false} );

    TweenLite.to( mc, 3, {y:136 , overwrite:false} );

    TweenLite.to( mc, 0, {width:0, height:0 , overwrite:false, immediateRender:false , delay:3});

    TweenLite.to( mc, 8, {width:200, height:200 , overwrite:false, immediateRender:false , delay:3});

     

    Idea was to move movieClip out of the screen ( Tween with 0 duration ) and then during 3 sec interval to move it in predefined position. After that moviClip will "grow" from w=0,h=0 to w=200,h=200.

     

    Unfortunately it seams that leaving duration = 0, causes some problems, and mc after moving to position blinks, and start to change to w=200,h=200 from original size.

     

    Can any one help me with this?

    I tried to use TimelineLite, also to delay creation of TweenLite for defined delay ( emulating delay param passed to TweenLite)

     

    Thanks

    Andrija

×
×
  • Create New...