Any ideas?
Here is the code if it helps at all
onClipEvent(load){
timer = 1;
timer_to = random(15)+2;
depth = random(20);
rndx = random(600);
rndy = random(200);
square_num = 0;
}
onClipEvent(enterFrame){
if(timer <> timer_to){
timer ++;
}
else if(timer == timer_to){
square_num ++;
_root.square_base.duplicateMovieClip("square"+square_num, depth);
_root["square"+square_num]._x = rndx;
_root["square"+square_num]._y = rndy;
timer = 1;
timer_to = random(15)+2;
rndx = random(600);
rndy = random(200);
square_num ++;
}
}