Could someone help me PLEASE !
I tried to modify this code to preload a SWF file… but I can’t do it…
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);
}
I just load a movie like this :
loadMovieNum(“In.swf”, 1);
How can I preload my In.swf file ???
I tried to modify like this :
bytes_loaded = Math.round(loadMovieNum(“In.swf”, 1).getBytesLoaded());
Didn’t work…
Can anyone help ? THANKS !!!