Preloader not showing up

Hi Everyone…

I’ve created a preloader from one of the kirupa tutorials… Everything loads fine on my machine, but once my site gets uploaded onto the web, my preloader won’t show up, and won’t load my main movie either… the window just remains blank…

my splash movie loads my **preLoader.**swf

//1st frm of the preloader is this script:

bytes_loaded = Math.round(_root.getBytesLoaded());
bytes_total = Math.round(_root.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
_root.loadBar._width = getPercent
100;
_root.loadText = Math.round(getPercent100)+"%";
if (bytes_loaded == bytes_total) {
gotoAndPlay(3);
}

//2nd frm of the preloader is this script:

gotoAndPlay(1);

//3rd frm is this:

*//load Movie Behavior
if(this == Number(this)){
loadMovieNum(“main_v04.swf”,this);
} else {
this.loadMovie(“main_v04.swf”);
}

  • //End Behavior

please…I would really appreciate your help! I’m so lost…:*(

Thank you!