Groups | Blog | Home
all groups > flash (macromedia) > september 2004 >

flash (macromedia) : Random frames between 4-9?



interwebster
9/13/2004 11:17:30 PM
Does anyone know how I would send a random frame to go to any frame between 4-9.
lumeeguvnor
9/13/2004 11:28:14 PM
this.onEnterFrame = function() {
randomGenerator = math.floor(math.random()*6)+4;
this.gotoAndPlay(randomGenerator);
}
this will generate a random number between 4 and 9
AddThis Social Bookmark Button