Jump to content
Search Community

cracknell

Members
  • Posts

    3
  • Joined

  • Last visited

cracknell's Achievements

0

Reputation

  1. That does help me a lot guys, thanks. I'll start watching the videos too :
  2. I've sorted it with some extra delays in there but it seems a little counter intuitive... import com.greensock.*; import com.greensock.easing.*; var tl:TimelineLite = new TimelineLite({onComplete:done}) tl.append( TweenLite.to(image_mc, 1, {_x:-300, _y:0, delay:3, ease:Quint.easeIn})); tl.append( TweenLite.to(lafrom_mc, 1, {_x:20, _y:33, delay:-1, ease:Quint.easeIn})); tl.append( TweenLite.to(lafrom_mc, 1, {_x:-300, _y:33, delay:3,ease:Quint.easeIn})); tl.append( TweenLite.to(logos_mc, 1, {_x:110, _y:185, delay:-5,ease:Quint.easeIn})); tl.append( TweenLite.to(toFind_mc, 1, {_x:20, _y:33, delay:-1, ease:Quint.easeIn})); tl.append( TweenLite.to(toFind_mc, 1, {_x:-300, _y:33, delay:3, ease:Quint.easeIn})); tl.append( TweenLite.to(logos_mc, 1, {_x:-280, _y:185, delay:-1,ease:Quint.easeIn})); tl.append( TweenLite.to(image2_mc, 1, {_x:0, _y:0, delay:-1, ease:Quint.easeIn})); function done(){ tl.restart(); }
  3. I'm using the append (Timeline lite) method to have one tween start after the next, also with a few delay adjustments, I want to pause between tweens so the movie clip stays on the stage for a few seconds before the next tween happens, I'm using AS2, can someone help a newbie? Thanks! import com.greensock.*; import com.greensock.easing.*; var tl:TimelineLite = new TimelineLite({onComplete:done}) tl.append( TweenLite.to(image_mc, 1, {_x:-300, _y:0, ease:Quint.easeIn})); tl.append( TweenLite.to(lafrom_mc, 1, {_x:20, _y:33, delay:-1, ease:Quint.easeIn})); tl.append( TweenLite.to(logos_mc, 1, {_x:110, _y:185, delay:-1,ease:Quint.easeIn})); tl.append( TweenLite.to(lafrom_mc, 1, {_x:-300, _y:33, ease:Quint.easeIn})); tl.append( TweenLite.to(toFind_mc, 1, {_x:20, _y:33, delay:-1, ease:Quint.easeIn})); tl.append( TweenLite.to(toFind_mc, 1, {_x:-300, _y:33, ease:Quint.easeIn})); tl.append( TweenLite.to(logos_mc, 1, {_x:-280, _y:185, delay:-1,ease:Quint.easeIn})); tl.append( TweenLite.to(image2_mc, 1, {_x:0, _y:0, delay:-1, ease:Quint.easeIn})); function done(){ tl.restart(); }
×
×
  • Create New...