Hey, I got this working but it duplicates the number of MCs in the loop all in one click.

I want it to duplicate the MC 1 at a time as the user clicks the button until the loop number limit is reached. Can anyone help me out here?


on (release) {

for(var i:Number = 1; i < 10; i++) {
_root.cell.duplicateMovieClip("cell" + i, i, {_x:200, _y:200});

}
}



Thanks in advance!

Spit