‘actions’ frame code:
stop();
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(3);
}
it’s not working.
and one more question:
when loading a movieclip on another that is on the web, where should i place the preloader? on the movie that loads the other or on the movie that is being loaded?