[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 (147 B)
var percent;
var textOut;
percent = Math.round((getBytesLoaded() / getBytesTotal()) * 100);
bar_mc._xscale = percent;
textOut = percent + "%";
Frame 2 (110 B)
if (getBytesLoaded() == getBytesTotal()) {
gotoAndPlay(nextFrame);
} else {
gotoAndPlay ("loadloop");
}
Frame 1319 (84 B)
replay.onRelease = function () {
gotoAndPlay (3);
stopAllSounds();
};
stop();