I have one 4 seperate movies all with a preloader.
The opening movie preloads with percentage and all and gives the user the choice of the other 3 movies. Once the user chooses one of these IT SHOULD preload the movie showing percentage just like in the first one, BUT it doesnt, and neither do the other two.
Does any have any idea why the other preloader wont work!!!???
I took a look at your preloader and saw that there was a play action at the last frame. And your preloader code tells flash to got and play that frame when loaded. So what you have is an infinite first frame - last frame loop.
Oh and by the way, the frames between the two first frames and the loaded frame won’t be played, since your preloader tells Flash to go to the last frame (with the label “loaded”) when fully loaded, so it will jump there and stop. If you want the frames in between also played, change
[AS]
if (_root.getBytesLoaded()>=_root.getBytesTotal()) {
_root.gotoAndPlay(“loaded”);
}
[/AS]
to
[AS]
if (_root.getBytesLoaded()>=_root.getBytesTotal()) {
_root.gotoAndPlay(3);
}
[/AS]
You made the same error, putting a play() action at the last frame. That will cause Flash to go into an infinite loop. Replace it with stop(), that should do it. I couldn’t view all your FLA’s because for some reason, all the others crashed Flash