Random Images, random positions?

Hey there.

I want to add some depth to my background and what I was thinking was to have a simple animation appear at random each time a differant size, position angle ect, and if possible have it attach the animation more the once at a time.

Cheers.

use a for loop to attach multiple movies at once, and just give them random everything

say you wanted to attach 10 movies::

for(ii=0;ii<=10;ii++){
attachMovie (“bubble”, “copy”+ii, ii)
_root[“copy”+ii]._x = Math.random()*MovieWidth
_root[“copy”+ii]._y = Math.random()*MovieHeight
_root[“copy”+ii]._rotation = Math.random()*360
etc…etc…
}