Jump to content
Search Community

Is it possible to assign TweenMax.allTo to a variable

danissimo test
Moderator Tag

Recommended Posts

to control the allTo() via play(), pause() etc you can insert it into a TimelineLite:

 

var tl:TimelineLite = new TimelineLite();

tl.insertMultiple( TweenMax.alltTo( ... ) )

 

or if you are using your array var

var arrowPulse:Array = TweenMax.allTo (...);
tl.insertMultiple(arrowPulse);

 

 

to control the timeline

tl.play();
tl.pause()
tl.restart()
//etc

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...