onClipEvent (load) {
var i=1;
}
onClipEvent (enterFrame) {
duplicateMovieClip(this, "mc" +i, i);
mc =_root["mc"+i];
mc._x=random(Stage.width);
mc._y = random(Stage.height);
mc._xscale=random(100);
mc._yscale = random(100);
//mc._x=Math.ceil(Stage.width/2);
//mc._y = Math.ceil(Stage.height/2);
setProperty(mc, _rotation, random(360));
setProperty(mc, _alpha, random(100));
i++;
}