You were right to pick up on the seperate files. That is how the music plays across the background and new sections can be loaded, etc, etc. This is the best way to do things.
Ok... Because all the scenes are located in one file, it is impossible to load one scene at a time. The browser loads the file and that is that.
It is however, possible to detect if a scene has been loaded and this should be ok in your book?
Code:
ifFrameLoaded (200) {
gotoAndPlay(1);
}
ifFrameLoaded allows you to find out if a frame of number (200) has been loaded. If it has, then you can .... do whatever you want... in this case gotoAndPlay(1);
Using this you should be able to specify the number of frames for each scene and put this loader in each. You can keep looping back to this frame to keep checking that the scene is loaded.
Hope you understand, if not I'll rustle up a demo file :wink: