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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Loadmovie, One question.

Status
Not open for further replies.
Dec 10, 2003
5
US
I now have three swf's that i want to link together.
Intro.swf, mainfilm.swf and scen2.swf.

In intro.swf the last frame is loadmovie mainfilm.swf (level 0). That works fine.

In mainfilm.swf I have a button that pops up in the last frame, if you click it i has the action onrelease loadmovie scen2.swf (also level 0). This does not work. It only plays the mainfilm.swf again. Is that because I did not include some sort of stop on the last frame or is it because the loadmovie is wrong?
 
Try out the following on your button:
on (release){
_level0.loadMovie("scen2.swf");
}

It might just work!

Regards,
wink4.gif
ldnewbie
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top