Please Help

This is probably really easy to do but I an new at Flash and have no idead of how to do it.

I have a few buttons and when you click on a button it loads a different movie file. Is there a way that I can get one movie file to load after another automatically instead of having to press the buttons.

I apprecaite any help anyone can give me on this.

sure in your movie thats loaded just load another movie in that timeline

I actually tried that but when I uploaded it to the web server there was long pauses in between movies.

So I completed a pre-loader tutorial that allows me not to have any long pauses in between movie loads but now in that tutorial you have to use buttons.

Thats why I was wondering if I can have it load automatically somehow.

The code behind it is this:

b1.onRelease = function() {
if (_root.section != “page01.swf”) {
_root.section = “page01.swf”;
_root.transition.gotoAndPlay(“closing”);
}
};

is there any way to modfiy this to get rid of the button press.