[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 (126 B)
if (getBytesLoaded() == getBytesTotal()) {
gotoAndPlay (3);
}
loadbar._width = (87 * getBytesLoaded()) / getBytesTotal();
Frame 2 (17 B)
gotoAndPlay (1);
Frame 3 (318 B)
Stage.scaleMode = "noScale";
Stage.addListener({onResize:function () {
if ((Stage.width > 512) && (Stage.height > 448)) {
_root._xscale = (_root._yscale = 200);
_root._x = -128;
_root._y = -112;
} else {
_root._xscale = (_root._yscale = 100);
_root._x = 0;
_root._y = 0;
}
}});