Question
inserting a delay between lines of code
I looked at the Timer function but i guess i am not using it right.
I have something like this:
var mytimer:Timer = new Timer(1000, 1);
addChild(blah);
mytimer.Start();
addChild(blah2);
I was hoping i'd see a 1 second delay between the first and 2nd movieclips being added, but i'm not.
What am i doing wrong? How do i insert a delay between actions?
thanks