Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Auto Run or Self Guided option for Flash web challenge

Status
Not open for further replies.

rossi3713

Technical User
Feb 18, 2004
18
US
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


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top