hello,

i',m trying to use the code below to move multiple dots across the stage at different speeds. the problem is flash seems to prevent each dynamic clip from executing the animation. dot1, dot2, dot... dot 20.

the clip is duplicated 20 times but they all appear moving in the same spot on the screen. they seem to ignor the ._x += code in effort to move each individual clip across the scree.

also, all code on one frame NOT two.

enterFrame = fmultidot();
function fmultidot(){
count=1;
while (count<20){
vpath = eval(this._target);
trace(vpath);
vpath.dot.duplicateMovieClip("dot"+count,count);
vpath["dot"+count]._rotation, _rotation +(Math.random())*20;

vpath["dot"+count]._x = Math.random()*500;

vpath["dot"+count]._y = Math.random()*100;
vpath["dot"+count]._xscale = Math.random()*100;
vpath["dot"+count]._yscale = Math.random()*100;
vpath["dot"+count]._alpha = Math.random()*100;
count+=1;
}
}