Hello - I did a tutorial or three on this site to try to get my preloader to work, and so far have had no success.
I have two frames on my actions layer, Frame 1 has the following:
bytes_loaded = Math.round(this.getBytesLoaded());
bytes_total = Math.round(this.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
this.loadBar._width = getPercent100;
this.loadText = Math.round(getPercent100)+"%";
if (bytes_loaded == bytes_total) {
this.gotoAndPlay(“catalogs”, 1);
}