[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 (45 B)
ifFrameLoaded (2860) {
gotoAndPlay (4);
}
Frame 3 (17 B)
gotoAndPlay (1);
Frame 3019 (17 B)
gotoAndPlay (4);
Symbol 20 MovieClip Frame 1 (979 B)
function camControl() {
var _local2 = _parent;
var _local3 = this;
parentColor.setTransform(camColor.getTransform());
var _local1 = sX / _local3._width;
var scaleY = (sY / _local3._height);
_local2._x = cX - (_local3._x * _local1);
_local2._y = cY - (_local3._y * scaleY);
_local2._xscale = 100 * _local1;
_local2._yscale = 100 * scaleY;
}
function resetStage() {
var _local1 = _parent;
var _local2 = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0, aa:100, ab:0};
parentColor.setTransform(_local2);
_local1._xscale = 100;
_local1._yscale = 100;
_local1._x = 0;
_local1._y = 0;
}
this._visible = false;
var oldMode = Stage.scaleMode;
Stage.scaleMode = "exactFit";
var cX = (Stage.width / 2);
var cY = (Stage.height / 2);
var sX = Stage.width;
var sY = Stage.height;
Stage.scaleMode = oldMode;
var camColor = new Color(this);
var parentColor = new Color(_parent);
this.onEnterFrame = camControl;
camControl();
this.onUnload = resetStage;