Hi, i couldn’t find a solution to this, problem, I suspect that tthis is no longer possible in as3.
in as2 for games and cool effects I would attach random movieclips from the library. in the library I would have “enemy1”, “enemy2” and “enemy3”
then my as would be
rn = 1+ random(2) ;
attachMovie(“enemy”+rn, “enemy”, 0);
is this possible to do with two lines of code in as3?