I have a movie clip that will move around the stage. it will consist of 10 frames. on the 10th frame it will duplicate a dot (instance name) movie and slowly create a path around the stage.

Here is the code I have on the 10th frame of my moving movieclip (a bee)

Code:
i++;
dot.duplicateMovieClip("dot"+i,i);
eval("dot"+i)._y = theBee._y;
eval("dot"+i)._x = theBee._x;
Any ideas?

Thanks