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:
and the second frame...Code:_root.loadd = Math.round((_root.getBytesLoaded()/_root.getBytesTotal())*100) + "%";
Good so far? The problem is when I watched it in my browser three fourths of the movie loaded before the preloader showed up.Code:_root.loadd = Math.round((_root.getBytesLoaded()/_root.getBytesTotal())*100) + "%"; if (_root.getBytesLoaded() == _root.getBytesTotal()) { _root.play(); } else { _root.gotoAndPlay(1); }
Here is the url.
Thanks in advance!




Reply With Quote