Script error of MX2004 setting?

Okay guys,

My flash movie keeps loading as it plays, instead of loading while the preloader plays. I’ve tried 2 simple preloaders, but they are not working. My movie is made up of 2 scenes: 1 is the preloader, 2 is the movie, which is 400 frames.

The preloaders I’ve tried are as follows:

–First Preloader (very simple):
action 1:
ifFrameLoaded (“Scene 2”, 400) {
gotoAndPlay(“Scene 2”, 1);
}
action 2:
gotoAndPlay(“Scene 1”, 1);

–Second Preloader:
action 1:
bytes_loaded = Math.round(_this.getBytesLoaded());
bytes_total = Math.round(_this.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
this.loadBar._width = getPercent100;
this.loadText = Math.round(getPercent
100)+"%";
if (bytes_loaded == bytes_total) {
this.gotoAndPlay(“Scene 2”, 1);
}
action 2:
gotoAndPlay(“Scene 1”, 1);

In both cases I never see the preloader. The movie just starts playing and loads as it goes. What am I doing wrong? This is for a client so I would appreciate some help ASAP!

Thanks!