i have 6 items on my stage, and want them all to “fly” into the stage one after the other. at the moment i’m using the time line and the code below, to bring each one of these items in on it’s own (so on the first frame i’m calling the first, the second frame the second and so on).
is there a way to modify this code, so all of it will be in the first frame and there will be a small delay between each of the items, until all are on the stage? it seems like a more logical way of doing it… i would rather not use the timeline for this…
any help would be greatly appreciated!
:hr:
[AS]
import mx.transitions.;
import mx.transitions.easing.;
TransitionManager.start(but_1, {type:Fly, direction:Transition.IN, duration:2.5, easing:Elastic.easeOut, startPoint:2});
TransitionManager.start(but_2, {type:Fly, direction:Transition.IN, duration:2.5, easing:Elastic.easeOut, startPoint:2});
TransitionManager.start(but_3, {type:Fly, direction:Transition.IN, duration:2.5, easing:Elastic.easeOut, startPoint:2});
TransitionManager.start(but_4, {type:Fly, direction:Transition.IN, duration:2.5, easing:Elastic.easeOut, startPoint:2});
TransitionManager.start(but_5, {type:Fly, direction:Transition.IN, duration:2.5, easing:Elastic.easeOut, startPoint:2});
TransitionManager.start(but_6, {type:Fly, direction:Transition.IN, duration:2.5, easing:Elastic.easeOut, startPoint:2});
[/AS]