Hey! Could use some help here…
I have a bunch of mc’s, called like mc1, mc2, mc3 and so on.
What I’d like to do is to tween those in order, with the tween class. So when mc1 is finished, I want mc2 to start and so on.
This is of course possible when writing something like
var testTween:Tween = new Tween(...);
testTween.onMotionFinished = function():void{
var testTween:Tween = new Tween(..);
}
But when you got like 36 pieces or something, this tween gets really big. Is it possible to use some kind of loop to get the same result? Or maybe a function that gets one movieclip at a time?
Thanks in advance