All I’m trying to do is have a bunch of movie clips appear. Their alpha
increases from 0 to 100.
Only one movie clip is appearing with the code I’ve included here.
This is AS 2 and I’m working with Flash 8 Professional. Thanks for the help.
for (var i = 1; i<62; i++) {
var ball:MovieClip = attachMovie(“drone”, “drone”+i, i);
ball._alpha = 0;
ball._x = Math.random()*Stage.width;
ball._y = Math.random()*Stage.height;
//------------ change to visible -----------------------
if (ball._alpha == 0) {
onEnterFrame = function () {
ball._alpha += 2;
};
}
}