I am playing with a kirupa’s tutorial.
I tried to draw 50 circles with 1 sec interval…but they all come up at the same time…please help.
I put the following code on a frame
amount = 50;
while(amount>0) {
i = i + 1;
delayInt = setInterval(duplicateMovieClip(_root.circle, “circle” + i, i), 1000);
amount = amount-1;
}