Hello, I am trying to make this movie clip of a boot get repeated indefinitely until the
screen is covered with a solid color. In addition, I’d like it to have it randomly change its x/yscale evenly and have a slight random rotation (like 20 or 30 degrees)… I’ve tried a few things and I think the overall result is just sloppy code… The FLA is too big to attach, but this is what I have in the first frame:
n = Number(n)+2;
setProperty(“boots”, _x, Math.random()*1024);
setProperty(“boots”, _y, Math.random()768);
setProperty(“boots”, _rotation, Math.random()30);
duplicateMovieClip(“boots”, “”, n.07);
duplicateMovieClip(“logos”, “”, n.08);
var randomSize:Number = 20+Math.random(200);
boots._xscale = randomSize;
boots._yscale = randomSize;
and this is in the movieclip itself:
onClipEvent (load) {
setProperty(_root.boots, _visible, “0”);
}
THANK YOU!!