ok, so i have this movie. i have three scenes in it. and i wanna make it so the first scene randomly selects a number so it can jump to either scene 2 or 3. so everytime it loads the page it will go to either one of those randomly. i can easily do this buy loading external swfs and getting it to work, however jumping to a random scene in the movie doesn’t seem to work right. here’s my code, anyone know what i’m doing wrong? am i missing something simple?
Num = Math.random();
Num = Math.round(Num);
if (Num == 0) {
gotoAndPlay(“Scene_2”, 1);
}else if (Num == 1) {
gotoAndPlay(“Scene_3”, 1);
}