technoknow
Technical User
First, thanks oldnewbie for the preloader 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(3);
}
My question: is there a way to have the first few frames of a movie play while the rest is still loading? This preloader seems to load the whole movie until moving to the 3rd frame.
Thanks,
technoknow
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(3);
}
My question: is there a way to have the first few frames of a movie play while the rest is still loading? This preloader seems to load the whole movie until moving to the 3rd frame.
Thanks,
technoknow