[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.Combined Code (68.38 KiB) ● ● ● ●
movieClip 1 FUIComponentSymbol {
#initclip
function FUIComponentClass() {
this.init();
}
FUIComponentClass.prototype = new MovieClip();
FUIComponentClass.prototype.init = function () {
this.enable = true;
this.focused = false;
this.useHandCursor = false;
this._accImpl = new Object();
this._accImpl.stub = true;
this.styleTable = new Array();
if (_global.globalStyleFormat == undefined) {
_global.globalStyleFormat = new FStyleFormat();
globalStyleFormat.isGlobal = true;
_global._focusControl = new Object();
_global._focusControl.onSetFocus = function (oldFocus, newFocus) {
oldFocus.myOnKillFocus();
newFocus.myOnSetFocus();
};
Selection.addListener(_global._focusControl);
}
if (this._name != undefined) {
this._focusrect = false;
this.tabEnabled = true;
this.focusEnabled = true;
this.tabChildren = false;
this.tabFocused = true;
if (this.hostStyle == undefined) {
globalStyleFormat.addListener(this);
} else {
this.styleTable = this.hostStyle;
}
this.deadPreview._visible = false;
this.deadPreview._height = 1;
this.deadPreview._width = 1;
this.methodTable = new Object();
this.keyListener = new Object();
this.keyListener.controller = this;
this.keyListener.onKeyDown = function () {
this.controller.myOnKeyDown();
};
this.keyListener.onKeyUp = function () {
this.controller.myOnKeyUp();
};
for (var v3 in this.styleFormat_prm) {
this.setStyleProperty(v3, this.styleFormat_prm[v3]);
}
}
};
FUIComponentClass.prototype.setEnabled = function (enabledFlag) {
this.enable = arguments.length > 0 ? enabledFlag : true;
this.focusEnabled = enabledFlag;
this.tabEnabled = this.focusEnabled;
if (!this.enable && this.focused) {
Selection.setFocus(undefined);
}
};
FUIComponentClass.prototype.getEnabled = function () {
return this.enable;
};
FUIComponentClass.prototype.setSize = function (w, h) {
this.width = w;
this.height = h;
this.focusRect.removeMovieClip();
};
FUIComponentClass.prototype.setChangeHandler = function (chng, obj) {
this.handlerObj = (obj == undefined) ? this._parent : obj;
this.changeHandler = chng;
};
FUIComponentClass.prototype.invalidate = function (methodName) {
this.methodTable[methodName] = true;
this.onEnterFrame = this.cleanUI;
};
FUIComponentClass.prototype.cleanUI = function () {
if (this.methodTable.setSize) {
this.setSize(this.width, this.height);
} else {
this.cleanUINotSize();
}
this.methodTable = new Object();
delete this.onEnterFrame;
};
FUIComponentClass.prototype.cleanUINotSize = function () {
for (var v2 in this.methodTable) {
this[v2]();
}
};
FUIComponentClass.prototype.drawRect = function (x, y, w, h) {
var v4 = this.styleTable.focusRectInner.value;
var v5 = this.styleTable.focusRectOuter.value;
if (v4 == undefined) {
v4 = 16777215;
}
if (v5 == undefined) {
v5 = 0;
}
this.createEmptyMovieClip('focusRect', 1000);
this.focusRect.controller = this;
this.focusRect.lineStyle(1, v5);
this.focusRect.moveTo(x, y);
this.focusRect.lineTo(x + w, y);
this.focusRect.lineTo(x + w, y + h);
this.focusRect.lineTo(x, y + h);
this.focusRect.lineTo(x, y);
this.focusRect.lineStyle(1, v4);
this.focusRect.moveTo(x + 1, y + 1);
this.focusRect.lineTo(x + w - 1, y + 1);
this.focusRect.lineTo(x + w - 1, y + h - 1);
this.focusRect.lineTo(x + 1, y + h - 1);
this.focusRect.lineTo(x + 1, y + 1);
};
FUIComponentClass.prototype.pressFocus = function () {
this.tabFocused = false;
this.focusRect.removeMovieClip();
Selection.setFocus(this);
};
FUIComponentClass.prototype.drawFocusRect = function () {
this.drawRect(-2, -2, this.width + 4, this.height + 4);
};
FUIComponentClass.prototype.myOnSetFocus = function () {
this.focused = true;
Key.addListener(this.keyListener);
if (this.tabFocused) {
this.drawFocusRect();
}
};
FUIComponentClass.prototype.myOnKillFocus = function () {
this.tabFocused = true;
this.focused = false;
this.focusRect.removeMovieClip();
Key.removeListener(this.keyListener);
};
FUIComponentClass.prototype.executeCallBack = function () {
this.handlerObj[this.changeHandler](this);
};
FUIComponentClass.prototype.updateStyleProperty = function (styleFormat, propName) {
this.setStyleProperty(propName, styleFormat[propName], styleFormat.isGlobal);
};
FUIComponentClass.prototype.setStyleProperty = function (propName, value, isGlobal) {
if (value == '') {
return undefined;
}
var v17 = parseInt(value);
if (!isNaN(v17)) {
value = v17;
}
var v16 = arguments.length > 2 ? isGlobal : false;
if (this.styleTable[propName] == undefined) {
this.styleTable[propName] = new Object();
this.styleTable[propName].useGlobal = true;
}
if (this.styleTable[propName].useGlobal || !v16) {
this.styleTable[propName].value = value;
if (this.setCustomStyleProperty(propName, value)) {
} else {
if (propName == 'embedFonts') {
this.invalidate('setSize');
} else {
if (propName.subString(0, 4) == 'text') {
if (this.textStyle == undefined) {
this.textStyle = new TextFormat();
}
var v18 = propName.subString(4, propName.length);
this.textStyle[v18] = value;
this.invalidate('setSize');
} else {
for (var v15 in this.styleTable[propName].coloredMCs) {
var v4 = new Color(this.styleTable[propName].coloredMCs[v15]);
if (this.styleTable[propName].value == undefined) {
var v5 = {'ra': '100', 'rb': '0', 'ga': '100', 'gb': '0', 'ba': '100', 'bb': '0', 'aa': '100', 'ab': '0'};
v4.setTransform(v5);
} else {
v4.setRGB(value);
}
}
}
}
}
this.styleTable[propName].useGlobal = v16;
}
};
FUIComponentClass.prototype.registerSkinElement = function (skinMCRef, propName) {
if (this.styleTable[propName] == undefined) {
this.styleTable[propName] = new Object();
this.styleTable[propName].useGlobal = true;
}
if (this.styleTable[propName].coloredMCs == undefined) {
this.styleTable[propName].coloredMCs = new Object();
}
this.styleTable[propName].coloredMCs[skinMCRef] = skinMCRef;
if (this.styleTable[propName].value != undefined) {
var v4 = new Color(skinMCRef);
v4.setRGB(this.styleTable[propName].value);
}
};
_global.FStyleFormat = function () {
this.nonStyles = {'listeners': true, 'isGlobal': true, 'isAStyle': true, 'addListener': true, 'removeListener': true, 'nonStyles': true, 'applyChanges': true};
this.listeners = new Object();
this.isGlobal = false;
if (arguments.length > 0) {
for (var v3 in arguments[0]) {
this[v3] = arguments[0][v3];
}
}
};
_global.FStyleFormat.prototype = new Object();
FStyleFormat.prototype.addListener = function () {
var v3 = 0;
while (v3 < arguments.length) {
var v4 = arguments[v3];
this.listeners[arguments[v3]] = v4;
for (var v5 in this) {
if (this.isAStyle(v5)) {
v4.updateStyleProperty(this, v5.toString());
}
}
++v3;
}
};
FStyleFormat.prototype.removeListener = function (component) {
this.listeners[component] = undefined;
for (var v4 in this) {
if (this.isAStyle(v4)) {
if (component.styleTable[v4].useGlobal == this.isGlobal) {
component.styleTable[v4].useGlobal = true;
var v3 = this.isGlobal ? undefined : globalStyleFormat[v4];
component.setStyleProperty(v4, v3, true);
}
}
}
};
FStyleFormat.prototype.applyChanges = function () {
var v6 = 0;
for (var v5 in this.listeners) {
var v3 = this.listeners[v5];
if (arguments.length > 0) {
var v4 = 0;
while (v4 < arguments.length) {
if (this.isAStyle(arguments[v4])) {
v3.updateStyleProperty(this, arguments[v4]);
}
++v4;
}
} else {
for (var v4 in this) {
if (this.isAStyle(v4)) {
v3.updateStyleProperty(this, v4.toString());
}
}
}
}
};
FStyleFormat.prototype.isAStyle = function (name) {
return this.nonStyles[name] ? false : true;
};
#endinitclip
frame 1 {
}
}
movieClip 3 {
}
movieClip 5 {
}
movieClip 7 {
}
movieClip 9 {
}
movieClip 11 {
}
movieClip 13 {
}
movieClip 14 {
frame 1 {
var component = _parent._parent;
component.registerSkinElement(arrow_mc, 'arrow');
component.registerSkinElement(face_mc, 'face');
component.registerSkinElement(shadow_mc, 'shadow');
component.registerSkinElement(darkshadow_mc, 'darkshadow');
component.registerSkinElement(highlight_mc, 'highlight');
component.registerSkinElement(highlight3D_mc, 'highlight3D');
}
}
movieClip 15 {
}
movieClip 16 {
}
movieClip 18 {
}
movieClip 20 {
}
movieClip 21 {
}
movieClip 23 {
}
movieClip 24 {
frame 1 {
var component = _parent._parent;
component.registerSkinElement(arrow_mc, 'arrow');
component.registerSkinElement(face_mc, 'face');
component.registerSkinElement(shadow_mc, 'shadow');
component.registerSkinElement(darkshadow_mc, 'darkshadow');
component.registerSkinElement(highlight_mc, 'highlight');
component.registerSkinElement(highlight3D_mc, 'highlight3D');
}
}
movieClip 25 {
}
movieClip 26 {
}
movieClip 27 {
}
movieClip 28 {
}
movieClip 30 {
}
movieClip 32 {
}
movieClip 33 {
frame 1 {
var component = _parent._parent;
component.registerSkinElement(arrow_mc, 'foregroundDisabled');
component.registerSkinElement(face_mc, 'face');
component.registerSkinElement(shadow_mc, 'shadow');
component.registerSkinElement(darkshadow_mc, 'darkshadow');
component.registerSkinElement(highlight_mc, 'highlight');
component.registerSkinElement(highlight3D_mc, 'highlight3D');
}
}
movieClip 34 UpArrow {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
}
movieClip 36 {
}
movieClip 38 {
}
movieClip 39 {
}
movieClip 40 {
}
movieClip 41 {
frame 1 {
var component = _parent._parent;
component.registerSkinElement(shadow_mc, 'shadow');
component.registerSkinElement(darkshadow_mc, 'darkshadow');
component.registerSkinElement(highlight_mc, 'highlight');
component.registerSkinElement(highlight3D_mc, 'highlight3D');
}
}
movieClip 42 {
}
movieClip 43 {
}
movieClip 45 {
}
movieClip 46 {
}
movieClip 47 {
}
movieClip 48 {
frame 1 {
var component = _parent._parent;
component.registerSkinElement(face_mc, 'face');
component.registerSkinElement(shadow_mc, 'shadow');
component.registerSkinElement(darkshadow_mc, 'darkshadow');
component.registerSkinElement(highlight_mc, 'highlight');
component.registerSkinElement(highlight3D_mc, 'highlight3D');
}
}
movieClip 49 {
}
movieClip 51 {
}
movieClip 52 {
}
movieClip 53 {
frame 1 {
var component = _parent._parent;
component.registerSkinElement(highlight3D_mc, 'highlight3D');
component.registerSkinElement(shadow_mc, 'shadow');
component.registerSkinElement(darkshadow_mc, 'darkshadow');
component.registerSkinElement(highlight_mc, 'highlight');
}
}
movieClip 54 ScrollThumb {
frame 1 {
stop();
}
}
movieClip 55 {
}
movieClip 57 {
}
movieClip 58 {
}
movieClip 59 {
}
movieClip 60 {
}
movieClip 61 {
}
movieClip 62 {
frame 1 {
var component = _parent._parent;
component.registerSkinElement(arrow_mc, 'arrow');
component.registerSkinElement(face_mc, 'face');
component.registerSkinElement(shadow_mc, 'shadow');
component.registerSkinElement(darkshadow_mc, 'darkshadow');
component.registerSkinElement(highlight_mc, 'highlight');
component.registerSkinElement(highlight3D_mc, 'highlight3D');
}
}
movieClip 63 {
}
movieClip 64 {
}
movieClip 65 {
}
movieClip 66 {
}
movieClip 67 {
}
movieClip 69 {
}
movieClip 70 {
frame 1 {
var component = _parent._parent;
component.registerSkinElement(arrow_mc, 'arrow');
component.registerSkinElement(face_mc, 'face');
component.registerSkinElement(shadow_mc, 'shadow');
component.registerSkinElement(darkshadow_mc, 'darkshadow');
component.registerSkinElement(highlight_mc, 'highlight');
component.registerSkinElement(highlight3D_mc, 'highlight3D');
}
}
movieClip 71 {
}
movieClip 72 {
}
movieClip 73 {
}
movieClip 74 {
}
movieClip 75 {
}
movieClip 77 {
}
movieClip 78 {
frame 1 {
var component = _parent._parent;
component.registerSkinElement(arrow_mc, 'foregroundDisabled');
component.registerSkinElement(face_mc, 'face');
component.registerSkinElement(shadow_mc, 'shadow');
component.registerSkinElement(darkshadow_mc, 'darkshadow');
component.registerSkinElement(highlight_mc, 'highlight');
component.registerSkinElement(highlight3D_mc, 'highlight3D');
}
}
movieClip 79 DownArrow {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
}
movieClip 80 DoomsdayOneStage {
frame 1 {
createEmptyMovieClip('DoomsdayOnePixel', 21);
onEnterFrame = function () {
DoomsdayOnePixelX = Math.round(_xmouse / 20 - 0.5) * 20;
DoomsdayOnePixelY = Math.round(_ymouse / 20 - 0.5) * 20;
DoomsdayOnePixel.clear();
if (DoomsdayOnePixelX >= 0 && DoomsdayOnePixelX < 300 && DoomsdayOnePixelY >= 0 && DoomsdayOnePixelY < 300) {
with (DoomsdayOnePixel) {
beginFill(_root.DoomsdayOneRGB, 100);
moveTo(DoomsdayOnePixelX, DoomsdayOnePixelY);
lineTo(DoomsdayOnePixelX + 20, DoomsdayOnePixelY);
lineTo(DoomsdayOnePixelX + 20, DoomsdayOnePixelY + 20);
lineTo(DoomsdayOnePixelX, DoomsdayOnePixelY + 20);
lineTo(DoomsdayOnePixelX, DoomsdayOnePixelY);
endFill();
}
if (Key.isDown(1)) {
_root['DoomsdayOneKeyframe' + _root.DoomsdayOneFrame].gotoAndStop(2);
DoomsdayOneX = DoomsdayOnePixelX;
while (DoomsdayOneX < DoomsdayOnePixelX + 20) {
DoomsdayOneY = DoomsdayOnePixelY;
while (DoomsdayOneY < DoomsdayOnePixelY + 20) {
_global['DoomsdayOneBitmap' + _root.DoomsdayOneFrame].setPixel(DoomsdayOneX, DoomsdayOneY, _root.DoomsdayOneRGB);
++DoomsdayOneY;
}
++DoomsdayOneX;
}
}
}
};
}
}
movieClip 83 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
movieClip 86 DoomsdayOneKeyframe {
frame 1 {
stop();
DoomsdayOneKeyframePosition = (_x - 200) / 20;
_global.DoomsdayOneShow[DoomsdayOneKeyframePosition] = false;
}
instance DoomsdayOneKeyframeKeyframe of movieClip 83 {
onClipEvent (press) {
if (_root.DoomsdayOneShower == true) {
_parent.play();
}
_root['DoomsdayOneKeyframe' + _root.DoomsdayOneFrame].DoomsdayOneKeyframeKeyframe.gotoAndStop(1);
gotoAndStop(2);
_root.DoomsdayOneFrame = (_parent._x - 200) / 20;
_root.DoomsdayOneGo();
}
}
frame 2 {
stop();
DoomsdayOneKeyframePosition = (_x - 200) / 20;
_global.DoomsdayOneShow[DoomsdayOneKeyframePosition] = true;
}
}
movieClip 87 DoomsdayOneDisplay {
frame 1 {
_xscale = 33.33333333333334;
_yscale = 33.33333333333334;
onEnterFrame = function () {
_root.DoomsdayOneDisplayFound = false;
_root.DoomsdayOneDisplayer += 0.25;
if (_root.DoomsdayOneDisplayer >= 1) {
DoomsdayOneRotation = 0;
for (;;) {
if (!(_root.DoomsdayOneDisplayFound == false && DoomsdayOneRotation < 15)) break;
if (DoomsdayOneRota >= 14) {
DoomsdayOneRota = 0;
} else {
++DoomsdayOneRota;
}
if (_global.DoomsdayOneShow[DoomsdayOneRota] == true) {
_root.DoomsdayOneDisplayFound = true;
}
++DoomsdayOneRotation;
}
_root.DoomsdayOneDisplayer = 0;
if (_root.DoomsdayOneDisplayFound == true) {
attachBitmap(_global['DoomsdayOneBitmap' + DoomsdayOneRota], 19());
}
}
};
}
}
movieClip 88 DoomsdayOneDisplayDisplay {
}
movieClip 90 DoomsdayOneGrid {
}
movieClip 92 {
}
movieClip 93 {
frame 1 {
var component = _parent;
component.registerSkinElement(track_mc, 'scrollTrack');
}
}
movieClip 94 FScrollBarSymbol {
#initclip
FScrollBarClass = function () {
if (this._height == 4) {
return undefined;
}
this.init();
this.largeScroll = 0;
this.pageSize = 0;
this.maxPos = 0;
this.minPos = 0;
this.smallScroll = 1;
this.width = this.horizontal ? this._width : this._height;
this._yscale = 100;
this._xscale = 100;
this.setScrollPosition(0);
this.tabEnabled = false;
if (this._targetInstanceName.length > 0) {
this.setScrollTarget(this._parent[this._targetInstanceName]);
}
this.tabChildren = false;
this.setSize(this.width);
};
FScrollBarClass.prototype = new FUIComponentClass();
FScrollBarClass.prototype.setHorizontal = function (flag) {
if (this.horizontal && !flag) {
this._xscale = 100;
this._rotation = 0;
} else {
if (flag && !this.horizontal) {
this._xscale = -100;
this._rotation = -90;
}
}
this.horizontal = flag;
};
FScrollBarClass.prototype.setScrollProperties = function (pSize, mnPos, mxPos) {
if (!this.enable) {
return undefined;
}
this.pageSize = pSize;
this.minPos = Math.max(mnPos, 0);
this.maxPos = Math.max(mxPos, 0);
this.scrollPosition = Math.max(this.minPos, this.scrollPosition);
this.scrollPosition = Math.min(this.maxPos, this.scrollPosition);
if (this.maxPos - this.minPos <= 0) {
this.scrollThumb_mc.removeMovieClip();
this.upArrow_mc.gotoAndStop(3);
this.downArrow_mc.gotoAndStop(3);
this.downArrow_mc.onDragOut = null;
this.downArrow_mc.onRelease = this.downArrow_mc.onDragOut;
this.downArrow_mc.onPress = this.downArrow_mc.onDragOut;
this.upArrow_mc.onDragOut = null;
this.upArrow_mc.onRelease = this.upArrow_mc.onDragOut;
this.upArrow_mc.onPress = this.upArrow_mc.onDragOut;
this.scrollTrack_mc.onRelease = null;
this.scrollTrack_mc.onPress = this.scrollTrack_mc.onRelease;
this.scrollTrack_mc.onRollOut = null;
this.scrollTrack_mc.onDragOut = this.scrollTrack_mc.onRollOut;
this.scrollTrack_mc.useHandCursor = false;
} else {
var v2 = this.getScrollPosition();
this.upArrow_mc.gotoAndStop(1);
this.downArrow_mc.gotoAndStop(1);
this.upArrow_mc.onDragOver = this.startUpScroller;
this.upArrow_mc.onPress = this.upArrow_mc.onDragOver;
this.upArrow_mc.onDragOut = this.stopScrolling;
this.upArrow_mc.onRelease = this.upArrow_mc.onDragOut;
this.downArrow_mc.onDragOver = this.startDownScroller;
this.downArrow_mc.onPress = this.downArrow_mc.onDragOver;
this.downArrow_mc.onDragOut = this.stopScrolling;
this.downArrow_mc.onRelease = this.downArrow_mc.onDragOut;
this.scrollTrack_mc.onDragOver = this.startTrackScroller;
this.scrollTrack_mc.onPress = this.scrollTrack_mc.onDragOver;
this.scrollTrack_mc.onRelease = this.stopScrolling;
this.scrollTrack_mc.onDragOut = this.stopScrolling;
this.scrollTrack_mc.onRollOut = this.stopScrolling;
this.scrollTrack_mc.useHandCursor = false;
this.attachMovie('ScrollThumb', 'scrollThumb_mc', 3);
this.scrollThumb_mc._x = 0;
this.scrollThumb_mc._y = this.upArrow_mc._height;
this.scrollThumb_mc.onPress = this.startDragThumb;
this.scrollThumb_mc.controller = this;
this.scrollThumb_mc.onReleaseOutside = this.stopDragThumb;
this.scrollThumb_mc.onRelease = this.scrollThumb_mc.onReleaseOutside;
this.scrollThumb_mc.useHandCursor = false;
this.thumbHeight = (this.pageSize / (this.maxPos - this.minPos + this.pageSize)) * this.trackSize;
this.thumbMid_mc = this.scrollThumb_mc.mc_sliderMid;
this.thumbTop_mc = this.scrollThumb_mc.mc_sliderTop;
this.thumbBot_mc = this.scrollThumb_mc.mc_sliderBot;
this.thumbHeight = Math.max(this.thumbHeight, 6);
this.midHeight = this.thumbHeight - this.thumbTop_mc._height - this.thumbBot_mc._height;
this.thumbMid_mc._yScale = this.midHeight * 100 / this.thumbMid_mc._height;
this.thumbMid_mc._y = this.thumbTop_mc._height;
this.thumbBot_mc._y = this.thumbTop_mc._height + this.midHeight;
this.scrollTop = this.scrollThumb_mc._y;
this.trackHeight = this.trackSize - this.thumbHeight;
this.scrollBot = this.trackHeight + this.scrollTop;
v2 = Math.min(v2, this.maxPos);
this.setScrollPosition(Math.max(v2, this.minPos));
}
};
FScrollBarClass.prototype.getScrollPosition = function () {
return this.scrollPosition;
};
FScrollBarClass.prototype.setScrollPosition = function (pos) {
this.scrollPosition = pos;
if (this.scrollThumb_mc != undefined) {
pos = Math.min(pos, this.maxPos);
pos = Math.max(pos, this.minPos);
}
this.scrollThumb_mc._y = (pos - this.minPos) * this.trackHeight / (this.maxPos - this.minPos) + this.scrollTop;
this.executeCallBack();
};
FScrollBarClass.prototype.setLargeScroll = function (lScroll) {
this.largeScroll = lScroll;
};
FScrollBarClass.prototype.setSmallScroll = function (sScroll) {
this.smallScroll = sScroll;
};
FScrollBarClass.prototype.setEnabled = function (enabledFlag) {
var v3 = this.enable;
if (enabledFlag && !v3) {
this.enable = enabledFlag;
if (this.textField != undefined) {
this.setScrollTarget(this.textField);
} else {
this.setScrollProperties(this.pageSize, this.cachedMinPos, this.cachedMaxPos);
this.setScrollPosition(this.cachedPos);
}
this.clickFilter = undefined;
} else {
if (!enabledFlag && v3) {
this.textField.removeListener(this);
this.cachedPos = this.getScrollPosition();
this.cachedMinPos = this.minPos;
this.cachedMaxPos = this.maxPos;
if (this.clickFilter == undefined) {
this.setScrollProperties(this.pageSize, 0, 0);
} else {
this.clickFilter = true;
}
this.enable = enabledFlag;
}
}
};
FScrollBarClass.prototype.setSize = function (hgt) {
if (this._height == 1) {
return undefined;
}
this.width = hgt;
this.scrollTrack_mc._yscale = 100;
this.scrollTrack_mc._yscale = 100 * this.width / this.scrollTrack_mc._height;
if (this.upArrow_mc == undefined) {
this.attachMovie('UpArrow', 'upArrow_mc', 1);
this.attachMovie('DownArrow', 'downArrow_mc', 2);
this.upArrow_mc.controller = this;
this.downArrow_mc.controller = this.upArrow_mc.controller;
this.downArrow_mc.useHandCursor = false;
this.upArrow_mc.useHandCursor = this.downArrow_mc.useHandCursor;
this.upArrow_mc._y = 0;
this.upArrow_mc._x = 0;
this.downArrow_mc._x = 0;
}
this.scrollTrack_mc.controller = this;
this.downArrow_mc._y = this.width - this.downArrow_mc._height;
this.trackSize = this.width - 2 * this.downArrow_mc._height;
if (this.textField != undefined) {
this.onTextChanged();
} else {
this.setScrollProperties(this.pageSize, this.minPos, this.maxPos);
}
};
FScrollBarClass.prototype.scrollIt = function (inc, mode) {
var v3 = this.smallScroll;
if (inc != 'one') {
v3 = (this.largeScroll == 0) ? this.pageSize : this.largeScroll;
}
var v2 = this.getScrollPosition() + mode * v3;
if (v2 > this.maxPos) {
v2 = this.maxPos;
} else {
if (v2 < this.minPos) {
v2 = this.minPos;
}
}
this.setScrollPosition(v2);
};
FScrollBarClass.prototype.startDragThumb = function () {
this.lastY = this._ymouse;
this.onMouseMove = this.controller.dragThumb;
};
FScrollBarClass.prototype.dragThumb = function () {
this.scrollMove = this._ymouse - this.lastY;
this.scrollMove += this._y;
if (this.scrollMove < this.controller.scrollTop) {
this.scrollMove = this.controller.scrollTop;
} else {
if (this.scrollMove > this.controller.scrollBot) {
this.scrollMove = this.controller.scrollBot;
}
}
this._y = this.scrollMove;
var v2 = this.controller;
v2.scrollPosition = Math.round((v2.maxPos - v2.minPos) * (this._y - v2.scrollTop) / v2.trackHeight) + v2.minPos;
this.controller.isScrolling = true;
updateAfterEvent();
this.controller.executeCallBack();
};
FScrollBarClass.prototype.stopDragThumb = function () {
this.controller.isScrolling = false;
this.onMouseMove = null;
};
FScrollBarClass.prototype.startTrackScroller = function () {
this.controller.trackScroller();
this.controller.scrolling = setInterval(this.controller, 'scrollInterval', 500, 'page', -1);
};
FScrollBarClass.prototype.scrollInterval = function (inc, mode) {
clearInterval(this.scrolling);
if (inc == 'page') {
this.trackScroller();
} else {
this.scrollIt(inc, mode);
}
this.scrolling = setInterval(this, 'scrollInterval', 35, inc, mode);
};
FScrollBarClass.prototype.trackScroller = function () {
if (this.scrollThumb_mc._y + this.thumbHeight < this._ymouse) {
this.scrollIt('page', 1);
} else {
if (this.scrollThumb_mc._y > this._ymouse) {
this.scrollIt('page', -1);
}
}
};
FScrollBarClass.prototype.stopScrolling = function () {
this.controller.downArrow_mc.gotoAndStop(1);
this.controller.upArrow_mc.gotoAndStop(1);
clearInterval(this.controller.scrolling);
};
FScrollBarClass.prototype.startUpScroller = function () {
this.controller.upArrow_mc.gotoAndStop(2);
this.controller.scrollIt('one', -1);
this.controller.scrolling = setInterval(this.controller, 'scrollInterval', 500, 'one', -1);
};
FScrollBarClass.prototype.startDownScroller = function () {
this.controller.downArrow_mc.gotoAndStop(2);
this.controller.scrollIt('one', 1);
this.controller.scrolling = setInterval(this.controller, 'scrollInterval', 500, 'one', 1);
};
FScrollBarClass.prototype.setScrollTarget = function (tF) {
if (tF == undefined) {
this.textField.removeListener(this);
delete this.textField[this.horizontal ? 'hScroller' : 'vScroller'];
if (this.textField.hScroller != undefined && this.textField.vScroller != undefined) {
this.textField.unwatch('text');
this.textField.unwatch('htmltext');
}
}
this.textField = undefined;
if (!(tF instanceof TextField)) {
return undefined;
}
this.textField = tF;
this.textField[this.horizontal ? 'hScroller' : 'vScroller'] = this;
this.onTextChanged();
this.onChanged = function () {
this.onTextChanged();
};
this.onScroller = function () {
if (!this.isScrolling) {
if (!this.horizontal) {
this.setScrollPosition(this.textField.scroll);
} else {
this.setScrollPosition(this.textField.hscroll);
}
}
};
this.textField.addListener(this);
this.textField.watch('text', this.callback);
this.textField.watch('htmlText', this.callback);
};
FScrollBarClass.prototype.callback = function (prop, oldVal, newVal) {
clearInterval(this.hScroller.synchScroll);
clearInterval(this.vScroller.synchScroll);
this.hScroller.synchScroll = setInterval(this.hScroller, 'onTextChanged', 50);
this.vScroller.synchScroll = setInterval(this.vScroller, 'onTextChanged', 50);
return newVal;
};
FScrollBarClass.prototype.onTextChanged = function () {
if (!this.enable || this.textField == undefined) {
return undefined;
}
clearInterval(this.synchScroll);
if (this.horizontal) {
var v3 = this.textField.hscroll;
this.setScrollProperties(this.textField._width, 0, this.textField.maxhscroll);
this.setScrollPosition(Math.min(v3, this.textField.maxhscroll));
} else {
var v3 = this.textField.scroll;
var v2 = this.textField.bottomScroll - this.textField.scroll;
this.setScrollProperties(v2, 1, this.textField.maxscroll);
this.setScrollPosition(Math.min(v3, this.textField.maxscroll));
}
};
FScrollBarClass.prototype.executeCallBack = function () {
if (this.textField == undefined) {
super.executeCallBack();
} else {
if (this.horizontal) {
this.textField.hscroll = this.getScrollPosition();
} else {
this.textField.scroll = this.getScrollPosition();
}
}
};
Object.registerClass('FScrollBarSymbol', FScrollBarClass);
#endinitclip
frame 1 {
}
}
frame 1 {
function DoomsdayOneNewgrounds(obj, item) {
getURL('http://www.newgrounds.com', '_blank');
}
function DoomsdayOneSpriteTV1(obj, item) {
getURL('http://www.newgrounds.com/portal/view/379663', '_blank');
}
function DoomsdayOneSpriteTV2(obj, item) {
getURL('http://www.newgrounds.com/portal/view/425404', '_blank');
}
function DoomsdayOneForum(obj, item) {
getURL('http://www.newgrounds.com/bbs/topic/894298/05202007', '_blank');
}
function DoomsdayOnePreloader(obj, item) {
gotoAndStop(1);
}
function DoomsdayOneMenu(obj, item) {
gotoAndStop(4);
_root.DoomsdayOneDestroy();
}
function DoomsdayOnePlay(obj, item) {
gotoAndPlay(28);
_root.DoomsdayOneDestroy();
}
function DoomsdayOneBios(obj, item) {
gotoAndStop(6);
_root.DoomsdayOneDestroy();
}
function DoomsdayOneGo() {
with (_root.DoomsdayOneStage) {
attachBitmap(_global['DoomsdayOneBitmap' + _root.DoomsdayOneFrame], 18);
}
}
function DoomsdayOneDestroy() {
removeMovieClip(_root.DoomsdayOneStage);
removeMovieClip(_root.DoomsdayOneDisplay);
DoomsdayOneDestroyer = 0;
while (DoomsdayOneDestroyer < 15) {
removeMovieClip(_root['DoomsdayOneKeyframe' + DoomsdayOneDestroyer]);
++DoomsdayOneDestroyer;
}
}
_root._focusrect = false;
var DoomsdayOneContextMenu = new ContextMenu();
DoomsdayOneContextMenu.hideBuiltInItems();
var DoomsdayOneNewgroundsLink = new ContextMenuItem('Go To Newgrounds', DoomsdayOneNewgrounds);
var DoomsdayOneSpriteTV1Link = new ContextMenuItem('View The First Sprite TV', DoomsdayOneSpriteTV1);
var DoomsdayOneSpriteTV2Link = new ContextMenuItem('View Sprite TV 2', DoomsdayOneSpriteTV2);
var DoomsdayOneForumLink = new ContextMenuItem('Visit The Collab Thread', DoomsdayOneForum);
var DoomsdayOnePreloaderLink = new ContextMenuItem('Go To The Preloader', DoomsdayOnePreloader);
DoomsdayOnePreloaderLink.separatorBefore = true;
var DoomsdayOneMenuLink = new ContextMenuItem('Go To The Menu', DoomsdayOneMenu);
DoomsdayOneMenuLink.enabled = false;
var DoomsdayOnePlayLink = new ContextMenuItem('Watch Sprite TV 3', DoomsdayOnePlay);
DoomsdayOnePlayLink.enabled = false;
var DoomsdayOneBiosLink = new ContextMenuItem('View The Animators\' Bios', DoomsdayOneBios);
DoomsdayOneBiosLink.enabled = false;
DoomsdayOneContextMenu.customItems.push(DoomsdayOneNewgroundsLink, DoomsdayOneSpriteTV1Link, DoomsdayOneSpriteTV2Link, DoomsdayOneForumLink, DoomsdayOnePreloaderLink, DoomsdayOneMenuLink, DoomsdayOnePlayLink, DoomsdayOneBiosLink);
_root.menu = DoomsdayOneContextMenu;
var DoomsdayOneDisplayFound = false;
var DoomsdayOneGridButton = false;
var DoomsdayOneShower = false;
var DoomsdayOneWhite = false;
var DoomsdayOneDisplayer = 1;
var DoomsdayOneFrame = 0;
var DoomsdayOnePercentage = 0;
var DoomsdayOneRGB = 0;
var DoomsdayOneRota = 14;
_root.attachMovie('DoomsdayOneStage', 'DoomsdayOneStage', 1);
with (_root.DoomsdayOneStage) {
_x = 200;
_y = 80;
}
attachMovie('DoomsdayOneDisplay', 'DoomsdayOneDisplay', 2());
with (_root.DoomsdayOneDisplay) {
_x = 10;
_y = 201;
}
if (_global.DoomsdayOneFirst != true) {
_global.DoomsdayOneCopied = new flash.display.BitmapData(300, 300, false, 16777215);
_global.DoomsdayOneShow = [true];
_global.DoomsdayOneFirst = false;
}
DoomsdayOneCreator = 0;
while (DoomsdayOneCreator < 15) {
if (_global.DoomsdayOneFirst == false) {
_global['DoomsdayOneBitmap' + DoomsdayOneCreator] = new flash.display.BitmapData(300, 300, false, 16777215);
}
attachMovie('DoomsdayOneKeyframe', 'DoomsdayOneKeyframe' + DoomsdayOneCreator, getNextHighestDepth());
with (_root['DoomsdayOneKeyframe' + DoomsdayOneCreator]) {
_x = DoomsdayOneCreator * 20 + 200;
_y = 20;
}
if (_global.DoomsdayOneShow[DoomsdayOneCreator] == true) {
_root['DoomsdayOneKeyframe' + DoomsdayOneCreator].gotoAndStop(2);
}
++DoomsdayOneCreator;
}
with (_root.DoomsdayOneKeyframe0) {
DoomsdayOneKeyframeKeyframe.gotoAndStop(2);
}
DoomsdayOneGo();
_root.DoomsdayOnePixelTool.gotoAndStop(3);
_global.DoomsdayOneFirst = true;
}
movieClip 101 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
_root.DoomsdayOneRGB = 0;
}
frame 4 {
stop();
}
}
instance DoomsdayOnePixelTool of movieClip 101 {
onClipEvent (rollOver) {
if (_root.DoomsdayOneRGB == 0) {
gotoAndStop(4);
} else {
gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.DoomsdayOneRGB == 0) {
gotoAndStop(3);
} else {
gotoAndStop(1);
}
}
onClipEvent (press) {
gotoAndStop(3);
_root.DoomsdayOneEraserTool.gotoAndStop(1);
_root.DoomsdayOneCrosser.gotoAndStop(1);
}
}
movieClip 103 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
_root.DoomsdayOneRGB = 16777215;
}
frame 4 {
stop();
}
}
instance DoomsdayOneEraserTool of movieClip 103 {
onClipEvent (rollOver) {
if (_root.DoomsdayOneRGB == 16777215) {
gotoAndStop(4);
} else {
gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.DoomsdayOneRGB == 16777215) {
gotoAndStop(3);
} else {
gotoAndStop(1);
}
}
onClipEvent (press) {
gotoAndStop(3);
_root.DoomsdayOnePixelTool.gotoAndStop(1);
_root.DoomsdayOneCrosser.gotoAndStop(1);
}
}
movieClip 105 {
frame 1 {
stop();
_root.DoomsdayOneShower = false;
}
frame 2 {
stop();
}
frame 3 {
stop();
_root.DoomsdayOneShower = true;
}
frame 4 {
stop();
}
}
instance DoomsdayOneCrosser of movieClip 105 {
onClipEvent (rollOver) {
if (_root.DoomsdayOneShower == true) {
gotoAndStop(4);
} else {
gotoAndStop(2);
}
}
onClipEvent (rollOut) {
if (_root.DoomsdayOneShower == true) {
gotoAndStop(3);
} else {
gotoAndStop(1);
}
}
onClipEvent (press) {
if (_root.DoomsdayOneShower == true) {
gotoAndStop(1);
} else {
gotoAndStop(3);
}
}
}
movieClip 107 {
frame 1 {
stop();
_root.DoomsdayOneGridButton = false;
removeMovieClip(_root.DoomsdayOneGrid);
}
frame 2 {
stop();
}
frame 3 {
stop();
_root.DoomsdayOneGridButton = true;
_root.attachMovie('DoomsdayOneGrid', 'DoomsdayOneGrid', 20);
with (_root.DoomsdayOneGrid) {
_x = 200;
_y = 80;
}
}
}
instance of movieClip 107 {
onClipEvent (rollOver) {
gotoAndStop(2);
}
onClipEvent (rollOut) {
if (_root.DoomsdayOneGridButton == false) {
gotoAndStop(1);
} else {
gotoAndStop(3);
}
}
onClipEvent (press) {
if (_root.DoomsdayOneGridButton == false) {
gotoAndStop(3);
} else {
gotoAndStop(1);
}
_root.DoomsdayOneCrosser.gotoAndStop(1);
}
}
movieClip 109 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
_global['DoomsdayOneBitmap' + _root.DoomsdayOneFrame].fillRect(new flash.geom.Rectangle(0, 0, 300, 300), 0);
}
}
instance of movieClip 109 {
onClipEvent (rollOver) {
gotoAndStop(2);
}
onClipEvent (rollOut) {
gotoAndStop(1);
}
onClipEvent (press) {
gotoAndStop(3);
_root.DoomsdayOneCrosser.gotoAndStop(1);
_root['DoomsdayOneKeyframe' + _root.DoomsdayOneFrame].gotoAndStop(2);
}
onClipEvent (release) {
gotoAndStop(1);
}
onClipEvent (releaseOutside) {
gotoAndStop(1);
}
}
movieClip 111 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
_global['DoomsdayOneBitmap' + _root.DoomsdayOneFrame].fillRect(new flash.geom.Rectangle(0, 0, 300, 300), 16777215);
}
}
instance of movieClip 111 {
onClipEvent (rollOver) {
gotoAndStop(2);
}
onClipEvent (rollOut) {
gotoAndStop(1);
}
onClipEvent (press) {
gotoAndStop(3);
_root.DoomsdayOneCrosser.gotoAndStop(1);
_root['DoomsdayOneKeyframe' + _root.DoomsdayOneFrame].gotoAndStop(2);
}
onClipEvent (release) {
gotoAndStop(1);
}
onClipEvent (releaseOutside) {
gotoAndStop(1);
}
}
movieClip 115 {
}
movieClip 117 {
}
movieClip 127 {
}
button 129 {
on (release) {
_root.play();
_root.DoomsdayOneDestroy();
}
}
movieClip 130 {
frame 1 {
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
bar._xscale = PercentLoaded;
} else {
gotoAndPlay('loaded');
_root.DoomsdayOneMenuLink.enabled = true;
_root.DoomsdayOnePlayLink.enabled = true;
_root.DoomsdayOneBiosLink.enabled = true;
}
}
frame 2 {
gotoAndPlay(1);
}
frame 30 {
stop();
}
}
movieClip 132 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
_global.DoomsdayOneCopied = _global['DoomsdayOneBitmap' + _root.DoomsdayOneFrame].clone();
}
}
instance DoomsdayOneCopyButton of movieClip 132 {
onClipEvent (rollOver) {
gotoAndStop(2);
}
onClipEvent (rollOut) {
gotoAndStop(1);
}
onClipEvent (press) {
gotoAndStop(3);
_root.DoomsdayOneCrosser.gotoAndStop(1);
}
onClipEvent (release) {
gotoAndStop(1);
}
onClipEvent (releaseOutside) {
gotoAndStop(1);
}
}
movieClip 134 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
_global['DoomsdayOneBitmap' + _root.DoomsdayOneFrame] = _global.DoomsdayOneCopied.clone();
_root.DoomsdayOneGo();
}
}
instance of movieClip 134 {
onClipEvent (rollOver) {
gotoAndStop(2);
}
onClipEvent (rollOut) {
gotoAndStop(1);
}
onClipEvent (press) {
gotoAndStop(3);
_root.DoomsdayOneCrosser.gotoAndStop(1);
_root['DoomsdayOneKeyframe' + _root.DoomsdayOneFrame].gotoAndStop(2);
}
onClipEvent (release) {
gotoAndStop(1);
}
onClipEvent (releaseOutside) {
gotoAndStop(1);
}
}
movieClip 151 {
frame 20 {
stop();
}
}
movieClip 152 {
frame 25 {
stop();
}
}
movieClip 157 {
}
movieClip 234 {
}
movieClip 235 {
}
movieClip 239 {
}
movieClip 241 {
}
movieClip 243 {
}
movieClip 245 {
}
movieClip 247 {
}
movieClip 248 {
frame 1 {
_root.stop();
}
frame 221 {
_root.play();
}
}
movieClip 255 {
}
movieClip 259 {
}
movieClip 265 {
}
movieClip 273 {
}
movieClip 275 {
}
movieClip 280 {
frame 1 {
_root.stop();
}
frame 2405 {
_root.play();
}
}
button 282 {
on (release) {
gotoAndStop(4);
}
}
frame 4 {
stop();
}
movieClip 284 {
}
movieClip 287 {
}
movieClip 289 {
}
movieClip 291 {
}
movieClip 292 {
}
movieClip 294 {
}
movieClip 296 {
}
movieClip 301 {
}
movieClip 305 {
}
movieClip 308 {
}
movieClip 311 {
}
movieClip 313 {
}
movieClip 315 {
}
button 316 {
on (release) {
gotoAndPlay(28);
}
}
movieClip 317 {
}
movieClip 318 {
}
button 319 {
on (release) {
gotoAndStop(5);
}
}
movieClip 320 {
}
movieClip 321 {
}
button 322 {
on (release) {
gotoAndPlay(6);
}
}
button 324 {
on (release) {
gotoAndPlay(615);
}
}
frame 5 {
stop();
}
button 327 {
on (release) {
gotoAndPlay(4);
}
}
button 330 {
on (release) {
gotoAndPlay(28);
}
}
button 333 {
on (release) {
gotoAndPlay(178);
}
}
button 336 {
on (release) {
gotoAndPlay(328);
}
}
button 339 {
on (release) {
gotoAndPlay(43);
}
}
button 342 {
on (release) {
gotoAndPlay(193);
}
}
button 345 {
on (release) {
gotoAndPlay(343);
}
}
button 348 {
on (release) {
gotoAndPlay(493);
}
}
button 351 {
on (release) {
gotoAndPlay(58);
}
}
button 354 {
on (release) {
gotoAndPlay(208);
}
}
button 357 {
on (release) {
gotoAndPlay(358);
}
}
button 360 {
on (release) {
gotoAndPlay(508);
}
}
button 363 {
on (release) {
gotoAndPlay(73);
}
}
button 366 {
on (release) {
gotoAndPlay(388);
}
}
button 369 {
on (release) {
gotoAndPlay(523);
}
}
button 372 {
on (release) {
gotoAndPlay(88);
}
}
button 375 {
on (release) {
gotoAndPlay(238);
}
}
button 378 {
on (release) {
gotoAndPlay(403);
}
}
button 381 {
on (release) {
gotoAndPlay(538);
}
}
button 384 {
on (release) {
gotoAndPlay(103);
}
}
button 387 {
on (release) {
gotoAndPlay(253);
}
}
button 390 {
on (release) {
gotoAndPlay(418);
}
}
button 393 {
on (release) {
gotoAndPlay(553);
}
}
button 396 {
on (release) {
gotoAndPlay(118);
}
}
button 399 {
on (release) {
gotoAndPlay(268);
}
}
button 402 {
on (release) {
gotoAndPlay(433);
}
}
button 405 {
on (release) {
gotoAndPlay(568);
}
}
button 408 {
on (release) {
gotoAndPlay(133);
}
}
button 411 {
on (release) {
gotoAndPlay(283);
}
}
button 414 {
on (release) {
gotoAndPlay(448);
}
}
button 417 {
on (release) {
gotoAndPlay(583);
}
}
button 420 {
on (release) {
gotoAndPlay(148);
}
}
button 423 {
on (release) {
gotoAndPlay(298);
}
}
button 426 {
on (release) {
gotoAndPlay(463);
}
}
button 429 {
on (release) {
gotoAndPlay(598);
}
}
button 432 {
on (release) {
gotoAndPlay(163);
}
}
button 435 {
on (release) {
gotoAndPlay(313);
}
}
button 438 {
on (release) {
gotoAndPlay(478);
}
}
button 441 {
on (release) {
gotoAndPlay(223);
}
}
button 444 {
on (release) {
gotoAndPlay(373);
}
}
frame 6 {
stop();
}
button 446 {
on (release) {
gotoAndPlay(7);
}
}
button 448 {
on (release) {
gotoAndPlay(8);
}
}
button 450 {
on (release) {
gotoAndPlay(9);
}
}
button 452 {
on (release) {
gotoAndPlay(10);
}
}
button 454 {
on (release) {
gotoAndPlay(11);
}
}
button 456 {
on (release) {
gotoAndPlay(12);
}
}
button 458 {
on (release) {
gotoAndPlay(13);
}
}
button 460 {
on (release) {
gotoAndPlay(20);
}
}
button 462 {
on (release) {
gotoAndPlay(19);
}
}
button 464 {
on (release) {
gotoAndPlay(18);
}
}
button 466 {
on (release) {
gotoAndPlay(17);
}
}
button 468 {
on (release) {
gotoAndPlay(16);
}
}
button 470 {
on (release) {
gotoAndPlay(15);
}
}
button 472 {
on (release) {
gotoAndPlay(14);
}
}
button 474 {
on (release) {
gotoAndPlay(21);
}
}
button 476 {
on (release) {
gotoAndPlay(22);
}
}
button 478 {
on (release) {
gotoAndPlay(23);
}
}
button 480 {
on (release) {
gotoAndPlay(24);
}
}
button 482 {
on (release) {
gotoAndPlay(25);
}
}
button 484 {
on (release) {
gotoAndPlay(27);
}
}
button 486 {
on (release) {
gotoAndPlay(26);
}
}
frame 7 {
stop();
}
button 487 {
on (release) {
gotoAndPlay(6);
}
}
button 490 {
on (release) {
getURL('http://www.dante224.newgrounds.com', '');
}
}
instance of movieClip 94 FScrollBarSymbol {
onClipEvent (construct) {
_targetInstanceName = 'scroller';
horizontal = false;
}
}
frame 8 {
stop();
}
button 495 {
on (release) {
getURL('http://www.darkalfa.newgrounds.com', '');
}
}
frame 9 {
stop();
}
button 499 {
on (release) {
getURL('http://www.emanhattan.newgrounds.com', '');
}
}
frame 10 {
stop();
}
button 503 {
on (release) {
getURL('http://www.ertyguy.newgrounds.com', '');
}
}
frame 11 {
stop();
}
button 507 {
on (release) {
getURL('http://www.hadoukendude.newgrounds.com', '');
}
}
frame 12 {
stop();
}
button 511 {
on (release) {
getURL('http://www.ikool.newgrounds.com', '');
}
}
frame 13 {
stop();
}
button 515 {
on (release) {
getURL('http://www.mtypenguim.newgrounds.com', '');
}
}
frame 14 {
stop();
}
button 519 {
on (release) {
getURL('http://www.nose-army.newgrounds.com', '');
}
}
frame 15 {
stop();
}
button 523 {
on (release) {
getURL('http://www.ogama-prime.newgrounds.com', '');
}
}
frame 16 {
stop();
}
button 527 {
on (release) {
getURL('http://www.osuka.newgrounds.com', '');
}
}
frame 17 {
stop();
}
button 531 {
on (release) {
getURL('http://www.pideonmaster88.newgrounds.com', '');
}
}
frame 18 {
stop();
}
button 535 {
on (release) {
getURL('http://www.random-her03.newgrounds.com', '');
}
}
frame 19 {
stop();
}
button 539 {
on (release) {
getURL('http://www.rascir.newgrounds.com', '');
}
}
frame 20 {
stop();
}
button 543 {
on (release) {
getURL('http://www.short-factor.newgrounds.com', '');
}
}
frame 21 {
stop();
}
button 547 {
on (release) {
getURL('http://www.tanner455.newgrounds.com', '');
}
}
button 548 {
on (release) {
gotoAndPlay(631);
}
}
frame 22 {
stop();
}
button 552 {
on (release) {
getURL('http://www.titrotu.newgrounds.com', '');
}
}
button 553 {
on (release) {
gotoAndPlay(647);
}
}
frame 23 {
stop();
}
button 557 {
on (release) {
getURL('http://www.ultralink.newgrounds.com', '');
}
}
frame 24 {
stop();
}
button 561 {
on (release) {
getURL('http://www.ultramoron.newgrounds.com', '');
}
}
frame 25 {
stop();
}
button 565 {
on (release) {
getURL('http://www.vato.newgrounds.com', '');
}
}
frame 26 {
stop();
}
button 569 {
on (release) {
getURL('http://www.warchamp7.newgrounds.com', '');
}
}
frame 27 {
stop();
}
button 573 {
on (release) {
getURL('http://www.youngandwise.newgrounds.com', '');
}
}
button 574 {
on (release) {
gotoAndPlay(663);
}
}
frame 28 {
play();
}
movieClip 580 {
}
movieClip 582 {
}
button 584 {
on (release) {
gotoAndPlay(4);
}
}
button 586 {
on (release) {
gotoAndPlay(43);
}
}
button 588 {
on (release) {
gotoAndPlay(4);
}
}
movieClip 593 {
}
movieClip 610 {
frame 1 {
_root.stop();
}
frame 112 {
_root.play();
}
}
frame 43 {
play();
}
button 611 {
on (release) {
gotoAndPlay(58);
}
}
button 612 {
on (release) {
gotoAndPlay(28);
}
}
movieClip 617 {
}
movieClip 621 {
}
button 622 {
on (release) {
_root.gotoAndPlay('MENU');
}
}
button 624 {
on (release) {
_root.nextScene();
}
}
button 626 {
on (release) {
_root.prevScene();
}
}
movieClip 628 {
}
movieClip 630 {
}
movieClip 632 {
}
movieClip 634 {
}
movieClip 639 {
}
movieClip 642 {
}
movieClip 644 {
}
movieClip 647 {
}
movieClip 653 {
}
movieClip 668 {
}
movieClip 669 {
frame 1 {
_root.stop();
}
frame 674 {
_root.play();
}
}
frame 58 {
play();
}
button 670 {
on (release) {
gotoAndPlay(73);
}
}
button 671 {
on (release) {
gotoAndStop(43);
}
}
movieClip 681 {
}
movieClip 688 {
}
movieClip 691 {
}
movieClip 696 {
}
movieClip 697 {
}
movieClip 700 {
}
movieClip 701 {
}
movieClip 702 {
}
movieClip 707 {
frame 1 {
_root.stop();
}
frame 842 {
_root.play();
}
}
frame 73 {
play();
}
button 708 {
on (release) {
gotoAndPlay(88);
}
}
button 709 {
on (release) {
gotoAndPlay(58);
}
}
movieClip 713 {
}
movieClip 716 {
}
movieClip 717 {
}
movieClip 720 {
}
movieClip 721 {
}
movieClip 723 {
}
movieClip 724 {
}
movieClip 726 {
}
movieClip 728 {
}
movieClip 730 {
}
movieClip 732 {
}
movieClip 743 {
frame 11 {
stop();
}
}
movieClip 745 {
}
movieClip 797 {
}
movieClip 799 {
}
movieClip 801 {
}
movieClip 803 {
}
movieClip 806 {
}
movieClip 809 {
frame 1 {
_root.stop();
}
frame 424 {
_root.play();
}
}
frame 88 {
play();
}
button 810 {
on (release) {
gotoAndStop(103);
}
}
button 811 {
on (release) {
gotoAndStop(73);
}
}
movieClip 813 {
}
movieClip 817 {
}
movieClip 821 {
}
movieClip 825 {
}
movieClip 827 {
}
movieClip 831 {
}
movieClip 834 {
}
movieClip 837 {
}
movieClip 840 {
}
movieClip 843 {
}
movieClip 849 {
}
movieClip 858 {
}
movieClip 861 {
}
movieClip 863 {
}
movieClip 865 {
}
movieClip 867 {
}
movieClip 870 {
}
movieClip 872 {
}
movieClip 873 {
}
movieClip 875 {
}
movieClip 882 {
frame 1 {
_root.stop();
}
frame 514 {
_root.play();
}
}
frame 103 {
play();
}
button 883 {
on (release) {
gotoAndPlay(118);
}
}
button 884 {
on (release) {
gotoAndPlay(88);
}
}
movieClip 900 {
}
movieClip 912 {
frame 1 {
_root.stop();
}
frame 541 {
_root.play();
}
}
frame 118 {
play();
}
button 913 {
on (release) {
gotoAndPlay(133);
}
}
button 914 {
on (release) {
gotoAndPlay(103);
}
}
movieClip 927 {
}
movieClip 1052 {
}
movieClip 1083 {
}
movieClip 1085 {
}
movieClip 1134 {
}
movieClip 1143 {
frame 1 {
_root.stop();
}
frame 316 {
_root.play();
}
}
frame 133 {
play();
}
button 1144 {
on (release) {
gotoAndStop(148);
}
}
button 1145 {
on (release) {
gotoAndPlay(118);
}
}
movieClip 1153 {
}
movieClip 1156 {
}
movieClip 1171 {
}
movieClip 1180 {
}
movieClip 1183 {
frame 1 {
_root.stop();
}
frame 200 {
_root.play();
}
}
frame 148 {
play();
}
button 1184 {
on (release) {
gotoAndStop(163);
}
}
button 1185 {
on (release) {
gotoAndStop(133);
}
}
movieClip 1197 {
}
movieClip 1230 {
frame 1 {
_root.stop();
}
frame 479 {
_root.play();
}
}
frame 163 {
play();
}
button 1231 {
on (release) {
gotoAndPlay(178);
}
}
button 1232 {
on (release) {
gotoAndStop(148);
}
}
movieClip 1235 {
}
movieClip 1236 {
}
movieClip 1238 {
}
movieClip 1239 {
}
movieClip 1241 {
}
movieClip 1243 {
}
movieClip 1247 {
}
movieClip 1251 {
}
movieClip 1253 {
}
movieClip 1255 {
}
movieClip 1257 {
}
movieClip 1265 {
}
movieClip 1269 {
frame 1 {
_root.stop();
}
frame 480 {
_root.play();
}
}
frame 178 {
play();
}
button 1270 {
on (release) {
gotoAndStop(193);
}
}
button 1271 {
on (release) {
gotoAndStop(163);
}
}
movieClip 1274 {
}
movieClip 1277 {
}
movieClip 1280 {
}
movieClip 1283 {
}
movieClip 1286 {
}
movieClip 1287 {
}
movieClip 1290 {
}
movieClip 1293 {
}
movieClip 1296 {
}
movieClip 1299 {
}
movieClip 1300 {
}
movieClip 1302 {
}
movieClip 1305 {
}
movieClip 1308 {
}
movieClip 1311 {
}
movieClip 1314 {
}
movieClip 1317 {
}
movieClip 1320 {
}
movieClip 1321 {
}
movieClip 1324 {
}
movieClip 1327 {
}
movieClip 1330 {
}
movieClip 1333 {
}
movieClip 1336 {
}
movieClip 1340 {
}
movieClip 1346 {
}
movieClip 1349 {
}
movieClip 1352 {
}
movieClip 1355 {
}
movieClip 1356 {
}
movieClip 1359 {
}
movieClip 1382 {
}
movieClip 1385 {
}
movieClip 1388 {
}
movieClip 1391 {
}
movieClip 1395 {
}
movieClip 1399 {
}
movieClip 1404 {
}
movieClip 1407 {
}
movieClip 1410 {
frame 1 {
_root.stop();
}
frame 408 {
_root.play();
}
}
frame 193 {
play();
}
button 1411 {
on (release) {
gotoAndPlay(208);
}
}
button 1412 {
on (release) {
gotoAndPlay(178);
}
}
movieClip 1441 {
}
movieClip 1456 {
}
movieClip 1473 {
}
movieClip 1481 {
}
movieClip 1534 {
}
movieClip 1535 {
frame 1 {
_root.stop();
}
frame 624 {
_root.play();
}
}
frame 208 {
play();
}
button 1536 {
on (release) {
gotoAndPlay(223);
}
}
button 1537 {
on (release) {
gotoAndStop(193);
}
}
movieClip 1540 {
}
movieClip 1543 {
}
movieClip 1546 {
}
movieClip 1549 {
}
movieClip 1551 {
}
movieClip 1553 {
}
movieClip 1554 {
}
movieClip 1558 {
}
movieClip 1560 {
}
movieClip 1574 {
}
movieClip 1612 {
}
movieClip 1614 {
}
movieClip 1618 {
}
movieClip 1619 {
}
movieClip 1621 {
}
movieClip 1649 {
}
movieClip 1650 {
frame 1 {
_root.stop();
}
frame 252 {
_root.play();
}
}
frame 223 {
play();
}
button 1651 {
on (release) {
gotoAndPlay(238);
}
}
button 1652 {
on (release) {
gotoAndStop(208);
}
}
movieClip 1697 {
}
movieClip 1702 {
}
movieClip 1705 {
}
movieClip 1714 {
}
movieClip 1718 {
}
movieClip 1737 {
frame 1 {
_root.stop();
}
frame 196 {
_root.play();
}
}
frame 238 {
play();
}
button 1738 {
on (release) {
gotoAndStop(253);
}
}
button 1739 {
on (release) {
gotoAndStop(223);
}
}
movieClip 1814 {
frame 1 {
_root.stop();
}
frame 825 {
_root.play();
}
}
frame 253 {
play();
}
button 1815 {
on (release) {
gotoAndPlay(268);
}
}
button 1816 {
on (release) {
gotoAndPlay(238);
}
}
movieClip 1929 {
frame 1 {
_root.stop();
}
frame 1059 {
_root.play();
}
}
frame 268 {
play();
}
button 1930 {
on (release) {
gotoAndStop(283);
}
}
button 1931 {
on (release) {
gotoAndPlay(253);
}
}
movieClip 1933 {
}
movieClip 1944 {
}
movieClip 1946 {
}
movieClip 1957 {
}
movieClip 1971 {
}
movieClip 1973 {
}
movieClip 1975 {
}
movieClip 1977 {
}
movieClip 1979 {
}
movieClip 1981 {
}
movieClip 1985 {
}
movieClip 1987 {
}
movieClip 1988 {
frame 1 {
_root.stop();
}
frame 480 {
_root.play();
}
}
frame 283 {
play();
}
button 1989 {
on (release) {
gotoAndStop(298);
}
}
button 1990 {
on (release) {
gotoAndStop(268);
}
}
movieClip 1993 {
}
movieClip 1995 {
}
movieClip 1997 {
}
movieClip 1999 {
}
movieClip 2001 {
}
movieClip 2003 {
}
movieClip 2005 {
}
movieClip 2007 {
}
movieClip 2009 {
}
movieClip 2011 {
}
movieClip 2013 {
}
movieClip 2015 {
}
movieClip 2018 {
}
movieClip 2020 {
}
movieClip 2022 {
}
movieClip 2025 {
}
movieClip 2027 {
}
movieClip 2029 {
}
movieClip 2031 {
}
movieClip 2032 {
}
movieClip 2035 {
}
movieClip 2037 {
}
movieClip 2038 {
frame 1 {
_root.stop();
}
frame 174 {
_root.play();
}
}
frame 298 {
play();
}
button 2039 {
on (release) {
gotoAndStop(313);
}
}
button 2040 {
on (release) {
gotoAndStop(283);
}
}
movieClip 2046 {
}
movieClip 2047 {
}
movieClip 2048 {
frame 1 {
_root.stop();
}
frame 652 {
_root.play();
}
}
frame 313 {
play();
}
button 2049 {
on (release) {
gotoAndStop(328);
}
}
button 2050 {
on (release) {
gotoAndStop(298);
}
}
movieClip 2053 {
}
movieClip 2057 {
}
movieClip 2071 {
}
movieClip 2083 {
}
movieClip 2098 {
}
movieClip 2133 {
}
movieClip 2138 {
}
movieClip 2147 {
}
movieClip 2160 {
}
movieClip 2179 {
}
movieClip 2183 {
}
movieClip 2187 {
}
movieClip 2189 {
}
movieClip 2191 {
}
movieClip 2192 {
}
movieClip 2216 {
}
movieClip 2220 {
}
movieClip 2227 {
}
movieClip 2228 {
frame 1 {
_root.stop();
}
frame 671 {
_root.play();
}
}
frame 328 {
play();
}
button 2229 {
on (release) {
gotoAndStop(343);
}
}
button 2230 {
on (release) {
gotoAndStop(313);
}
}
movieClip 2239 {
}
movieClip 2267 {
}
movieClip 2278 {
frame 1 {
_root.stop();
}
frame 307 {
_root.play();
}
}
frame 343 {
play();
}
button 2279 {
on (release) {
gotoAndStop(358);
}
}
button 2280 {
on (release) {
gotoAndStop(328);
}
}
movieClip 2283 {
}
movieClip 2386 {
}
movieClip 2392 {
frame 1 {
_root.stop();
}
frame 332 {
_root.play();
}
}
frame 358 {
play();
}
button 2393 {
on (release) {
gotoAndStop(373);
}
}
button 2394 {
on (release) {
gotoAndStop(343);
}
}
movieClip 2396 {
}
movieClip 2398 {
}
movieClip 2400 {
}
movieClip 2402 {
}
movieClip 2404 {
}
movieClip 2406 {
}
movieClip 2408 {
}
movieClip 2410 {
}
movieClip 2411 {
}
movieClip 2413 {
}
movieClip 2415 {
}
movieClip 2416 {
}
movieClip 2418 {
}
movieClip 2420 {
frame 1 {
function camControl() {
parentColor.setTransform(camColor.getTransform());
var v4 = sX / this._width;
var v3 = sY / this._height;
_parent._x = cX - this._x * v4;
_parent._y = cY - this._y * v3;
_parent._xscale = 100 * v4;
_parent._yscale = 100 * v3;
}
function resetStage() {
var v2 = {'ra': 100, 'rb': 0, 'ga': 100, 'gb': 0, 'ba': 100, 'bb': 0, 'aa': 100, 'ab': 0};
parentColor.setTransform(v2);
_parent._xscale = 100;
_parent._yscale = 100;
_parent._x = 0;
_parent._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;
}
}
movieClip 2429 {
}
movieClip 2432 {
}
movieClip 2437 {
}
movieClip 2439 {
}
movieClip 2441 {
}
movieClip 2443 {
}
movieClip 2444 {
}
movieClip 2446 {
}
movieClip 2448 {
}
movieClip 2450 {
}
movieClip 2451 {
}
movieClip 2465 {
}
movieClip 2470 {
}
movieClip 2475 {
}
movieClip 2477 {
}
movieClip 2483 {
}
movieClip 2485 {
}
movieClip 2487 {
}
movieClip 2488 {
}
movieClip 2491 {
}
movieClip 2492 {
}
movieClip 2493 {
}
movieClip 2496 {
}
movieClip 2498 {
}
movieClip 2500 {
}
movieClip 2501 {
frame 1 {
_root.stop();
}
frame 654 {
_root.play();
}
}
frame 373 {
play();
}
button 2502 {
on (release) {
gotoAndStop(388);
}
}
button 2503 {
on (release) {
gotoAndStop(358);
}
}
movieClip 2506 {
}
movieClip 2511 {
}
movieClip 2524 {
}
movieClip 2574 {
}
movieClip 2579 {
frame 4 {
stop();
}
}
movieClip 2582 {
}
movieClip 2633 {
frame 26 {
stop();
}
}
movieClip 2636 {
frame 1 {
_root.stop();
}
frame 240 {
_root.play();
}
}
frame 388 {
play();
}
button 2637 {
on (release) {
gotoAndStop(403);
}
}
button 2638 {
on (release) {
gotoAndStop(373);
}
}
movieClip 2643 {
}
movieClip 2646 {
}
movieClip 2649 {
}
movieClip 2652 {
frame 40 {
stop();
}
}
movieClip 2654 {
}
movieClip 2656 {
}
movieClip 2659 {
}
movieClip 2661 {
frame 50 {
stop();
}
}
movieClip 2663 {
}
movieClip 2664 {
}
movieClip 2666 {
}
movieClip 2668 {
}
movieClip 2670 {
}
movieClip 2672 {
}
movieClip 2674 {
}
movieClip 2676 {
}
movieClip 2678 {
}
movieClip 2680 {
}
movieClip 2681 {
}
movieClip 2682 {
}
movieClip 2683 {
frame 1 {
_root.stop();
}
frame 444 {
_root.play();
}
}
frame 403 {
play();
}
button 2684 {
on (release) {
gotoAndStop(418);
}
}
button 2685 {
on (release) {
gotoAndStop(388);
}
}
movieClip 2688 {
}
movieClip 2691 {
}
movieClip 2694 {
}
movieClip 2697 {
}
movieClip 2700 {
}
movieClip 2707 {
}
movieClip 2712 {
}
movieClip 2715 {
}
movieClip 2718 {
}
movieClip 2721 {
}
movieClip 2726 {
}
movieClip 2730 {
}
movieClip 2731 {
}
movieClip 2736 {
}
movieClip 2739 {
}
movieClip 2740 {
}
movieClip 2745 {
}
movieClip 2748 {
}
movieClip 2751 {
}
movieClip 2752 {
}
movieClip 2777 {
}
movieClip 2804 {
}
movieClip 2809 {
}
movieClip 2812 {
}
movieClip 2815 {
}
movieClip 2818 {
}
movieClip 2821 {
}
movieClip 2824 {
}
movieClip 2825 {
}
movieClip 2849 {
frame 1 {
_root.stop();
}
frame 516 {
_root.play();
}
frame 516 {
stopAllSounds();
}
}
frame 418 {
play();
}
button 2850 {
on (release) {
gotoAndStop(433);
}
}
button 2851 {
on (release) {
gotoAndStop(403);
}
}
movieClip 2854 {
}
movieClip 2857 {
}
movieClip 2860 {
}
movieClip 2863 {
}
movieClip 2865 {
}
movieClip 2867 {
}
movieClip 2869 {
}
movieClip 2871 {
}
movieClip 2874 {
}
movieClip 2875 {
}
movieClip 2878 {
}
movieClip 2880 {
}
movieClip 2882 {
}
movieClip 2884 {
}
movieClip 2888 {
}
movieClip 2890 {
}
movieClip 2891 {
}
movieClip 2892 {
}
movieClip 2898 {
}
movieClip 2903 {
}
movieClip 2937 {
frame 1 {
_root.stop();
}
frame 641 {
_root.play();
}
}
frame 433 {
play();
}
button 2938 {
on (release) {
gotoAndStop(448);
}
}
button 2939 {
on (release) {
gotoAndStop(418);
}
}
movieClip 2955 {
}
movieClip 2956 {
}
movieClip 2958 {
frame 1 {
_root.stop();
}
frame 282 {
_root.play();
}
}
frame 448 {
play();
}
button 2959 {
on (release) {
gotoAndStop(463);
}
}
button 2960 {
on (release) {
gotoAndStop(433);
}
}
movieClip 3092 {
frame 1 {
_root.stop();
}
frame 650 {
_root.play();
}
}
frame 463 {
play();
}
button 3093 {
on (release) {
gotoAndStop(478);
}
}
button 3094 {
on (release) {
gotoAndStop(448);
}
}
movieClip 3098 {
}
movieClip 3101 {
}
movieClip 3106 {
}
movieClip 3185 {
frame 1 {
_root.stop();
}
frame 286 {
_root.play();
}
}
frame 478 {
play();
}
button 3186 {
on (release) {
gotoAndStop(493);
}
}
button 3187 {
on (release) {
gotoAndStop(463);
}
}
movieClip 3189 {
}
movieClip 3192 {
}
movieClip 3195 {
}
movieClip 3197 {
}
movieClip 3199 {
}
movieClip 3200 {
frame 63 {
stop();
}
}
movieClip 3202 {
}
movieClip 3205 {
}
movieClip 3207 {
}
movieClip 3208 {
}
movieClip 3209 {
frame 1 {
_root.stop();
}
frame 216 {
_root.play();
}
}
frame 493 {
play();
}
button 3210 {
on (release) {
gotoAndStop(508);
}
}
button 3211 {
on (release) {
gotoAndStop(478);
}
}
movieClip 3213 {
}
movieClip 3218 {
}
movieClip 3220 {
}
movieClip 3223 {
}
movieClip 3225 {
}
movieClip 3227 {
}
movieClip 3229 {
}
movieClip 3231 {
}
movieClip 3241 {
}
movieClip 3243 {
}
movieClip 3245 {
}
movieClip 3247 {
}
movieClip 3253 {
}
movieClip 3254 {
}
movieClip 3257 {
}
movieClip 3270 {
}
movieClip 3271 {
frame 1 {
_root.stop();
}
frame 450 {
_root.play();
}
}
frame 508 {
play();
}
button 3272 {
on (release) {
gotoAndStop(523);
}
}
button 3273 {
on (release) {
gotoAndStop(493);
}
}
movieClip 3283 {
}
movieClip 3294 {
}
movieClip 3301 {
}
movieClip 3308 {
}
movieClip 3315 {
}
movieClip 3333 {
frame 25 {
stop();
}
}
movieClip 3346 {
}
movieClip 3359 {
frame 13 {
stop();
}
}
movieClip 3360 {
frame 1 {
_root.stop();
}
frame 634 {
_root.play();
}
}
frame 523 {
play();
}
button 3361 {
on (release) {
gotoAndStop(538);
}
}
button 3362 {
on (release) {
gotoAndStop(508);
}
}
movieClip 3369 {
}
button 3371 {
on (release) {
gotoAndStop(1);
}
}
button 3372 {
on (release) {
gotoAndStop(1);
}
}
button 3373 {
on (release) {
gotoAndPlay(1);
}
}
movieClip 3376 {
}
movieClip 3390 {
}
movieClip 3392 {
}
movieClip 3395 {
}
movieClip 3398 {
}
movieClip 3406 {
}
movieClip 3411 {
}
movieClip 3424 {
frame 1 {
_root.stop();
}
frame 667 {
_root.play();
}
}
frame 538 {
play();
}
button 3425 {
on (release) {
gotoAndStop(553);
}
}
button 3426 {
on (release) {
gotoAndStop(523);
}
}
movieClip 3428 {
}
movieClip 3430 {
}
movieClip 3432 {
}
movieClip 3434 {
}
movieClip 3439 {
}
movieClip 3447 {
}
movieClip 3450 {
frame 1 {
_root.stop();
}
frame 284 {
_root.play();
}
}
frame 553 {
play();
}
button 3451 {
on (release) {
gotoAndStop(568);
}
}
button 3452 {
on (release) {
gotoAndStop(538);
}
}
movieClip 3454 {
}
movieClip 3468 {
}
movieClip 3470 {
}
movieClip 3471 {
}
movieClip 3473 {
}
movieClip 3475 {
}
movieClip 3477 {
}
movieClip 3479 {
}
movieClip 3490 {
}
movieClip 3491 {
frame 1 {
function camControl() {
parentColor.setTransform(camColor.getTransform());
var v4 = sX / this._width;
var v3 = sY / this._height;
_parent._x = cX - this._x * v4;
_parent._y = cY - this._y * v3;
_parent._xscale = 100 * v4;
_parent._yscale = 100 * v3;
}
function resetStage() {
var v2 = {'ra': 100, 'rb': 0, 'ga': 100, 'gb': 0, 'ba': 100, 'bb': 0, 'aa': 100, 'ab': 0};
parentColor.setTransform(v2);
_parent._xscale = 100;
_parent._yscale = 100;
_parent._x = 0;
_parent._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;
}
}
movieClip 3494 {
}
movieClip 3536 {
}
movieClip 3537 {
frame 1 {
_root.stop();
}
frame 540 {
_root.play();
}
}
frame 568 {
play();
}
button 3539 {
on (release) {
gotoAndStop(583);
}
}
button 3540 {
on (release) {
gotoAndStop(553);
}
}
movieClip 3543 {
}
movieClip 3546 {
}
movieClip 3549 {
}
movieClip 3552 {
}
movieClip 3553 {
}
movieClip 3560 {
}
movieClip 3570 {
}
movieClip 3575 {
}
movieClip 3578 {
}
movieClip 3581 {
}
movieClip 3584 {
}
movieClip 3585 {
}
movieClip 3598 {
}
movieClip 3612 {
}
movieClip 3615 {
}
movieClip 3618 {
}
movieClip 3619 {
}
movieClip 3624 {
}
movieClip 3627 {
}
movieClip 3630 {
}
movieClip 3633 {
}
movieClip 3636 {
}
movieClip 3639 {
}
movieClip 3642 {
}
movieClip 3645 {
}
movieClip 3648 {
}
movieClip 3651 {
}
movieClip 3652 {
}
movieClip 3661 {
}
movieClip 3665 {
}
movieClip 3670 {
}
movieClip 3673 {
}
movieClip 3678 {
}
movieClip 3681 {
}
movieClip 3686 {
}
movieClip 3689 {
}
movieClip 3692 {
}
movieClip 3695 {
}
movieClip 3700 {
}
movieClip 3707 {
}
movieClip 3710 {
}
movieClip 3713 {
}
movieClip 3714 {
}
movieClip 3717 {
}
movieClip 3720 {
}
movieClip 3723 {
}
movieClip 3726 {
}
movieClip 3729 {
}
movieClip 3732 {
}
movieClip 3735 {
}
movieClip 3738 {
}
movieClip 3741 {
}
movieClip 3744 {
}
movieClip 3747 {
}
movieClip 3748 {
}
movieClip 3751 {
}
movieClip 3754 {
}
movieClip 3755 {
}
movieClip 3759 {
}
movieClip 3762 {
}
movieClip 3765 {
}
movieClip 3771 {
}
movieClip 3774 {
}
movieClip 3775 {
}
movieClip 3780 {
}
movieClip 3783 {
}
movieClip 3786 {
}
movieClip 3789 {
}
movieClip 3792 {
}
movieClip 3795 {
}
movieClip 3798 {
}
movieClip 3801 {
}
movieClip 3804 {
}
movieClip 3807 {
}
movieClip 3808 {
}
movieClip 3811 {
}
movieClip 3814 {
}
movieClip 3815 {
}
movieClip 3818 {
}
movieClip 3821 {
}
movieClip 3822 {
}
movieClip 3825 {
}
movieClip 3830 {
}
movieClip 3833 {
}
movieClip 3836 {
}
movieClip 3837 {
}
movieClip 3840 {
}
movieClip 3843 {
}
movieClip 3844 {
}
movieClip 3847 {
}
movieClip 3850 {
}
movieClip 3853 {
}
movieClip 3854 {
}
movieClip 3861 {
}
movieClip 3864 {
}
movieClip 3867 {
}
movieClip 3870 {
}
movieClip 3873 {
}
movieClip 3876 {
}
movieClip 3877 {
}
movieClip 3880 {
}
movieClip 3884 {
}
movieClip 3887 {
}
movieClip 3891 {
}
movieClip 3894 {
}
movieClip 3899 {
}
movieClip 3902 {
}
movieClip 3903 {
}
movieClip 3910 {
}
movieClip 3911 {
}
movieClip 3914 {
}
movieClip 3917 {
}
movieClip 3920 {
}
movieClip 3923 {
}
movieClip 3928 {
}
movieClip 3929 {
}
movieClip 3930 {
}
movieClip 3932 {
frame 1 {
_root.stop();
}
frame 706 {
stopAllSounds();
}
frame 743 {
_root.play();
}
}
frame 583 {
play();
}
button 3933 {
on (release) {
gotoAndStop(598);
}
}
button 3934 {
on (release) {
gotoAndStop(568);
}
}
movieClip 3942 {
}
movieClip 3943 {
}
movieClip 3944 {
}
movieClip 3946 {
}
movieClip 3947 {
}
movieClip 3982 {
}
movieClip 3983 {
frame 1 {
_root.stop();
}
frame 1428 {
_root.play();
}
}
frame 598 {
play();
}
button 3984 {
on (release) {
gotoAndStop(613);
}
}
button 3985 {
on (release) {
gotoAndStop(583);
}
}
movieClip 3988 {
}
movieClip 3992 {
}
movieClip 3997 {
}
movieClip 4001 {
}
movieClip 4004 {
}
movieClip 4010 {
}
movieClip 4016 {
}
movieClip 4031 {
}
button 4033 {
on (release) {
gotoAndStop(1);
}
}
button 4034 {
on (release) {
gotoAndStop(1);
}
}
movieClip 4037 {
}
movieClip 4039 {
}
movieClip 4040 {
}
movieClip 4041 {
frame 1 {
_root.stop();
}
frame 462 {
_root.play();
}
}
movieClip 4045 {
}
movieClip 4047 {
}
movieClip 4090 {
}
movieClip 4092 {
}
movieClip 4093 {
}
movieClip 4094 {
}
movieClip 4097 {
}
movieClip 4101 {
}
movieClip 4105 {
}
movieClip 4134 {
}
movieClip 4146 {
}
movieClip 4149 {
}
movieClip 4152 {
}
movieClip 4166 {
}
movieClip 4179 {
}
movieClip 4182 {
}
movieClip 4186 {
}
movieClip 4200 {
}
movieClip 4209 {
}
movieClip 4226 {
}
movieClip 4228 {
}
movieClip 4230 {
}
movieClip 4231 {
}
movieClip 4232 {
}
movieClip 4233 {
}
movieClip 4234 {
}
movieClip 4235 {
}
movieClip 4236 {
}
movieClip 4237 {
}
movieClip 4238 {
}
movieClip 4239 {
}
movieClip 4240 {
}
movieClip 4241 {
}
movieClip 4242 {
}
movieClip 4243 {
}
movieClip 4244 {
}
movieClip 4245 {
}
movieClip 4246 {
}
movieClip 4248 {
}
movieClip 4265 {
frame 1 {
_root.stop();
}
frame 1781 {
_root.play();
}
}
// unknown tag 67108859 length -16843009
// unknown tag 112 length 0
// unknown tag 896 length 2
// unknown tag 93 length 42