I am trying to make a for loop that targets preexisting movie clips called under1, under2, etc.
my code for this event is:
for (i=1; i<55; i++) {
e = Math.ceil(Math.random()*(5+_root.angrer));
_root.under+i.gotoAndStop(e);
does anyone know how to get it working?