I have a button in a movie that is duplicating that same button. I would like to duplicate it in a blank movie in the main timeline but I cannot seem to do it. Any Ideas?
This duplicates but it does so inside the movie clip, not into the blank movie I have on the main stage.
on (press) {
num = 6;
xstart = -20;
n = 1;
while (n <= num) {
duplicateMovieClip(“help2”, “blank”, 2);
n = n + 1;
blank._x = 5
blank._y = 5
}
}