Hello Guys,
Using my intermediate but growing AS skills I can place 3 MC’s onto the screen.
I do not want these 3 MC loading on at the same time. I would like to load the first one and X amount of time later load the second MC and the same for the third one.
How would I go about putting in X amount of delay between the MC’s as they are placed on the stage.
circle1._x=50;
circle2._x=50;
circle3._x=50;
new Tween(circle1, “_x”, Back.easeOut, circle1._x, _root.xpos_arr*, 1.2, true);
new Tween(circle2, “_x”, Elastic.easeOut, circle2._x, circle2._x+150, 2, true);
new Tween(circle3, “_alpha”, Elastic.easeOut, circle3._x, circle3._x+dif, 1.2, true);
Thanks