i have a series of movie clip instances (of the same movie) on the stage all numbered 0 through 15
its a simple experiment but i can’t get it to work
heres what i want to do
i want
onClipEvent(enterFrame){
i=random(15);
"i".gotoAndPlay(2);
}
to work
i have the actionscript on a clip called controller that is on the main stage.
i want it to choose a random number between 0 and 15 and then play that number’s corresponding instance of the movieclip
this is possible i think … i’m sure i’m just missing something simple
thanks in advance for the help.