Maybe this is what’s wrong?[AS][COLOR=Silver]bytes_loaded = Math.round(this.getBytesLoaded());
bytes_total = Math.round(this.getBytesTotal());
getPercent = bytes_loaded/bytes_total;[/COLOR] this.loadBar._width = getPercent*100;
[COLOR=Silver]this.loadText = Math.round(getPercent*100)+"%";
if (bytes_loaded == bytes_total) {
this.gotoAndPlay(3);
}[/COLOR][/AS]A lot of people, including myself, didn’t realize that the loadBar had to be 100 pixels in width in order for that script to work. Of course you can always change the script to match the size of your loadBar but could this be the problem?
If you followed the tutorial properly you should have a loadBar layer. Select the actual load bar (should be a movie clip) and in the properties panel where the W: is, type in 100.