Below is the code I have in my main movie, which loads the base splash movie on level 2.
loadMovieNum("cc_cover.swf", 10);
loadMovieNum("popupmenu.swf", 8);
loadMovieNum("resources.swf", 11);
loadMovieNum("help.swf", 35);
loadMovieNum("../section_1/01_top01_pg01_splash.swf", 2);
stop();
From there each page has a next and previous button, which you use to take you through the course. So the next button uses the code below and the timeline has an action script stop at the end of the movie
on (release) {
unloadMovieNum(2);
stopAllSounds();
loadMovieNum("../section_2/02_top02/02_top02_pg01.swf", 2);
}
Currently the site is self guided, you use the menu and the back and next buttons to navigate. My Manager now wants to have the option of an Auto Run button on the index page that if clicked will take the viewer from the splash page through to the last page of the web (40 pages). Some how I need to over ride the stop in the level 2 .swf and have it call the next .swf in order.
I would greatly appreciate any guidance or suggestions to help figure this one out.
Thnaks,
MJR
rossi3713
loadMovieNum("cc_cover.swf", 10);
loadMovieNum("popupmenu.swf", 8);
loadMovieNum("resources.swf", 11);
loadMovieNum("help.swf", 35);
loadMovieNum("../section_1/01_top01_pg01_splash.swf", 2);
stop();
From there each page has a next and previous button, which you use to take you through the course. So the next button uses the code below and the timeline has an action script stop at the end of the movie
on (release) {
unloadMovieNum(2);
stopAllSounds();
loadMovieNum("../section_2/02_top02/02_top02_pg01.swf", 2);
}
Currently the site is self guided, you use the menu and the back and next buttons to navigate. My Manager now wants to have the option of an Auto Run button on the index page that if clicked will take the viewer from the splash page through to the last page of the web (40 pages). Some how I need to over ride the stop in the level 2 .swf and have it call the next .swf in order.
I would greatly appreciate any guidance or suggestions to help figure this one out.
Thnaks,
MJR
rossi3713