Huh, thats odd... Kirupas loader doesn't work?

[left]I made my first Loader ( yay) and it loads the page, BUT it doesn’t fill the loader as I planned… I made the loader with the AS needed but when I uploaded it to the internet it turned out… Kinda odd… Here it is… If you have ANY ideas please post em here… www.freewebs.com/dominerd[/left]
[left] [/left]
[left]Thanks[/left]

Which preloader tutorial did you use?

" Percent loader with load bar", I think?

[AS][COLOR=SlateGray]bytes_loaded = Math.round(this.getBytesLoaded());
bytes_total = Math.round(this.getBytesTotal());
getPercent = bytes_loaded/bytes_total;[/COLOR]
this.loadBar._width = getPercent*100;
[COLOR=SlateGray]this.loadText = Math.round(getPercent*100)+"%";
if (bytes_loaded == bytes_total) {
this.gotoAndPlay(3);
}[/COLOR][/AS]Change the 100 to the width of your load bar.

also dont forget to make the registration point on the far left/right of your load bar mc if you dont want it to be centrally expanding like that…

Prophet.