Can you post HOW you are choosing the random scene to jump to?
Jason L. Wright
I'm not that hard to imitate. Just make some random negative claim at Apple or anything else for that matter and then have nothing to back it up.
Can you post HOW you are choosing the random scene to jump to?
Code:
startpage = Math.round(Math.random()*2)+1;
if (startpage == 1) {
_root.currentup = "b1";
_root.gotoAndPlay("sec1");
_root.b1.gotoAndStop(18);
} else if (startpage == 2) {
_root.currentup = "b2";
_root.gotoAndPlay("sec2");
_root.b2.gotoAndStop(18);
} else if (startpage == 3) {
_root.currentup = "b3";
_root.gotoAndPlay(62); // This used to be "sec3" but it didn't go to the frame that was clearly labelled "sec3"? So I changed this one to the frame number.
_root.b3.gotoAndStop(18);
}
the "_root.currentup" variable determines which button is currently in the 'up' state so the other ones will fall down if they are [going] up - don't mind it.