I’ve recently made the move from Tweener to TweenLite (about time) and am wondering if its possible to pass more than one object into a tween like I could with tweener.
For example, does this tweener syntax…
Tweener.addTween([movie1,movie2,movie3],{alpha:1, time:1});
…need to be divided up into separate tweens in TweenLite or is there another way to do it?
TweenLite.to(movie1,1,{alpha:1});
TweenLite.to(movie2,1,{alpha:1});
TweenLite.to(movie3,1,{alpha:1});
Thanks.
Julian