can anyone give me a piece of advice where i should build in a loading progress script for any .swf loading to the “content” (a script like that
bytes_loaded = Math.round(this.getBytesLoaded());
bytes_total = Math.round(this.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
this.bar._width = getPercent*100;
this.loadText = Math.round(getPercent*100)+"%";
)
** if I use the site structure as in the** tutorial :http://www.kirupa.com/developer/mx/preloader_transition.htm ?