[Tools][Expand/Collapse All]Note that automatic extraction of ActionScript 3 is still pretty much unsupported by swfchan. AS1/AS2 works okay most of the time.Frame 1 (391 B)
function xPreload() {
nLoaded = this.getBytesLoaded();
if (nTotal <= nLoaded) {
this.gotoAndStop("cont");
delete this.onEnterFrame;
} else {
nParcentage = Math.round((100 * nLoaded) / nTotal);
bar_mc._xscale = nParcentage;
parcentage_txt.text = nParcentage + " %";
}
}
this.stop();
nParcentage = 0;
nTotal = this.getBytesTotal();
this.onEnterFrame = xPreload;
Frame 2 (8 B)
play();
Frame 2417 (8 B)
stop();
Symbol 179 Button (34 B)
on (release) {
gotoAndPlay (4);
}