Jump to content
Search Community

Holding/Delaying TimelineLite/Max

arcadiabc test
Moderator Tag

Recommended Posts

Hello,

 

How can you delay TimelineMax from going to the next appended Tween? Does TweenLiteMax honor the delays with in Tweens and thus extending the duration of the the dynamic timeline?

 

Edit: Just wanted to add that I have been trying to achieve this but the last appended tween keeps starting away ahead of the other tweens. Just trying to figure why this is a problem.

Link to comment
Share on other sites

have you used the offset parameter when appending

var tl:TimelineLite = new TimelineLite();

tl.append(TweenLite.to(mc, 1, {x:100});

//add a new tween 2 seconds after the previous tween ends

tl.append(TweenLite.to(mc, 1, {alpha:0}, 2);

 

And yes, if you used a delay it should be honored, but using the offset (second parameter) is more elegant.

 

if you continue to have problems please post a very short code example that illustrates what you are trying to achieve.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...