i’m trying to create a preloader that will only load 1 scene (the main scene) then when the user clicks on a button, the scene that the button takes you to loads…
would i use the ifFramesLoaded command like so:
if (_framesloaded>= *“kbs/number of frames” * ) {
gotoAndPlay (2);
} else {
gotoAndPlay (1);
}
would i use a simple preloader like that for each scene?
or is there another , more proper way to do it…??
Scenes make up your entire .swf file, and you need to preload your entire .swf file. If you only preload only 1 Scene, then your movie will lag while playing because the rest of the file is still left loading.
I recommend using loadMovie() to load in each of your sections.