Hi
I'm currently using this actionscript
Code:
bytes_loaded = Math.round(this.getBytesLoaded());
bytes_total = Math.round(this.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
this.loadBar._width = getPercent*100;
this.loadText = Math.round(getPercent*100)+"%";
if (bytes_loaded == bytes_total) {
this.gotoAndPlay(10);
}
to preload whenever I need preloading on a file but I've just put together a piece of flash for a website that loads external swf files by using
Code:
_root.movieloader.loadMovie("paulnicholls.swf");
when it hits a certain frame.
What I want is for the main file to look at all the other flash files and then preload them before starting, is this possible?
Cheers