PDA

View Full Version : navigate through preloaded swfs...



workingirl
September 10th, 2002, 04:11 PM
I have preloaded 5 swf into my main movie... I have figured out how to call the movies using
on (release) {
_level1.gotoAndPlay("framelable");
}

i want to be able to navigate from level2 to level1 but it does not work....
I have a button in the swf that is loaded into in level 2 and use the same code
on (release) {
_level1.gotoAndPlay("rocky");
}


but nothing happens

please help
thanks!

flex
September 11th, 2002, 08:29 AM
You have to use:

on (release) {
_level(number).(instance).gotoAndPlay("framelabel");
}


I'll post a fla to look at. It's very easy.

flex
September 11th, 2002, 11:11 AM
Here a new fla - the other one had gotoAndPlay when it should have been gotoAndStop.

flex
September 11th, 2002, 12:38 PM
Heres the Flash 5 version.