here is the script i have on the main time line;
for (i=0; i<10; i++) {
_root.box.duplicateMovieClip(“box”+i, i);
//set position
_root[“box”+i]._x = _x+4;
_root[“box”+i]._y = 100;
}
and here is the script i have on the movieclip;
onClipEvent (load) {
n = 0;
}
onClipEvent (enterFrame) {
_x = n++;
_y = n++;
}
When I test the movie, the movieclips moves like it should but it does not duplicate itself. I want the (onload) movieclips to all be at the same _y but spaced on the _x. Could use some help