All I have for a preloader is a dynamic text box with the variable name "loadd". The first frame of the first scene has the actions:

Code:
 _root.loadd = Math.round((_root.getBytesLoaded()/_root.getBytesTotal())*100) + "%";
and the second frame...

Code:
 _root.loadd = Math.round((_root.getBytesLoaded()/_root.getBytesTotal())*100) + "%";
if (_root.getBytesLoaded() == _root.getBytesTotal()) {
	_root.play();
} else {
	_root.gotoAndPlay(1);
}
Good so far? The problem is when I watched it in my browser three fourths of the movie loaded before the preloader showed up.

Here is the url.

Thanks in advance!