STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
228034
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2560 · P5120

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/69779910?noj=FRM69779910-20DC" width="1" height="1"></div>

Extreme Farm Simulator.swf

This is the info page for
Flash #2584

(Click the ID number above for more basic data on this flash file.)


Text
<P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000"> </FONT></P>

999

BEGIN!

loading

Options

Options

Play

Play

Extreme Farm
Simulator

Off

Off

On

On

High

High

Med

Med

Low

Low

Controls

Controls

Music

Quality

back

back

OPTIONS

Controls

UP

RIGHT

DOWN

LEFT

Click on an arrow, then press the key you want to use for that direction

1

level:

1

1

1

STOP CHEATING
OR JERMS WILL EAT YOU

ActionScript [AS1/AS2]

Frame 1
_global.upKey = 38; _global.leftKey = 37; _global.downKey = 40; _global.rightKey = 39; _global.muzic = true;
Frame 2
stop();
Frame 4
K = new Array(); K[9] = "TAB"; K[13] = "ENTER"; K[16] = "SHIFT"; K[17] = "CTRL"; K[20] = "Caps Lock"; K[32] = "SPACE"; K[33] = "Page Up"; K[34] = "Page Down"; K[35] = "END"; K[36] = "HOME"; K[37] = "LEFT"; K[38] = "UP"; K[39] = "RIGHT"; K[40] = "DOWN"; K[44] = ","; K[45] = "INSERT"; K[46] = "DELETE"; K[47] = "/"; K[48] = "0"; K[49] = "1"; K[50] = "2"; K[51] = "3"; K[52] = "4"; K[53] = "5"; K[54] = "6"; K[55] = "7"; K[56] = "8"; K[57] = "9"; K[65] = "A"; K[66] = "B"; K[67] = "C"; K[68] = "D"; K[69] = "E"; K[70] = "F"; K[71] = "G"; K[72] = "H"; K[73] = "I"; K[74] = "J"; K[75] = "K"; K[76] = "L"; K[77] = "M"; K[78] = "N"; K[79] = "O"; K[80] = "P"; K[81] = "Q"; K[82] = "R"; K[83] = "S"; K[84] = "T"; K[85] = "U"; K[86] = "V"; K[87] = "W"; K[88] = "X"; K[89] = "Y"; K[90] = "Z"; K[96] = "0"; K[97] = "1"; K[98] = "2"; K[99] = "3"; K[100] = "4"; K[101] = "5"; K[102] = "6"; K[103] = "7"; K[104] = "8"; K[105] = "9"; K[186] = ";"; K[219] = "["; K[222] = "'"; setLeft = false; setUp = false; setRight = false; setDown = false; keySet = new Object(); Key.addListener(keySet); onEnterFrame = function () { keySet.onKeyDown = function () { if (setUp) { setUp = false; _root.instructions.text = "Up key now set to " + K[int(Key.getCode())]; _global.upKey = Key.getCode(); _root.up.text = K[int(Key.getCode())]; } if (setLeft) { setLeft = false; _root.instructions.text = "Left key now set to " + K[int(Key.getCode())]; _global.leftKey = Key.getCode(); _root.left.text = K[int(Key.getCode())]; } if (setDown) { setDown = false; _root.instructions.text = "Down key now set to " + K[int(Key.getCode())]; _global.downKey = Key.getCode(); _root.down.text = K[int(Key.getCode())]; } if (setRight) { setRight = false; _root.instructions.text = "Right key now set to " + K[int(Key.getCode())]; _global.rightKey = Key.getCode(); _root.right.text = K[int(Key.getCode())]; } }; }; muzac.stop(); i = 200; while (i <= 500) { _root["ufo" + i].removeMovieClip(); i++; } i = 500; while (i <= 1000) { _root["cow" + i].removeMovieClip(); i++; } _root.nextLevel.removeMovieClip();
Frame 5
function makeCow() { cowNumber = 500; i = 500; while (i <= 1000) { if (!_root["cow" + i]) { cowNumber = i; _root.attachMovie("cow", "cow" + cowNumber, cowNumber); break; } i++; } _root["cow" + cowNumber].action = "walking"; _root["cow" + cowNumber]._y = 300; if (random(2) == 0) { _root["cow" + cowNumber]._x = -100; } else { _root["cow" + cowNumber]._x = 525; } _root["cow" + cowNumber].vSpeed = 0; _root["cow" + cowNumber].action = "walking"; _root["cow" + cowNumber].direction = "left"; if (cowNumber >= cowCounter) { cowCounter++; } } function makeUFO() { _root.attachMovie("ufo", "ufo" + ufoCounter, ufoCounter); _root["ufo" + ufoCounter].action = "searching"; _root["ufo" + ufoCounter].cowSearch = int(random(cowCounter) + 1); _root["ufo" + ufoCounter].vSpeed = 0; _root["ufo" + ufoCounter].health = 100; if (random(2) == 0) { _root["ufo" + ufoCounter]._x = -100; } else { _root["ufo" + ufoCounter]._x = 525; } _root["ufo" + ufoCounter]._y = random(75) + 50; ufoCounter++; } function makeBullet() { _root.attachMovie("bullet", "bullet" + bulletCounter, bulletCounter); _root["bullet" + bulletCounter]._x = _root.player._x; _root["bullet" + bulletCounter]._y = _root.player._y - 20; _root["bullet" + bulletCounter].x = _root["bullet" + bulletCounter]._xmouse; _root["bullet" + bulletCounter].y = _root["bullet" + bulletCounter]._ymouse; _root["bullet" + bulletCounter].angle = Math.atan(_root["bullet" + bulletCounter].y / _root["bullet" + bulletCounter].x) / (Math.PI/180); if (_root["bullet" + bulletCounter].x < 0) { _root["bullet" + bulletCounter].angle = _root["bullet" + bulletCounter].angle + 180; } if ((_root["bullet" + bulletCounter].x >= 0) && (_root["bullet" + bulletCounter].y < 0)) { _root["bullet" + bulletCounter].angle = _root["bullet" + bulletCounter].angle + 360; } _root["bullet" + bulletCounter].speed = 10; _root["bullet" + bulletCounter].angle = _root["bullet" + bulletCounter].angle + (88 + random(10)); _root["bullet" + bulletCounter]._rotation = _root["bullet" + bulletCounter].angle; _root["bullet" + bulletCounter].lastX = 0; _root["bullet" + bulletCounter].lastY = 0; bulletCounter++; if (bulletCounter > 150) { bulletCounter = 100; } } function levelUp() { _root.attachMovie("nextLevel", "nextLevel", 967); _root.nextLevel._x = 0; _root.nextLevel._y = 0; if (level == 1) { _root.makeCow(); } _root.ufoCounter = 200; } function clearAll() { muzac.stop(); i = 200; while (i <= 500) { _root["ufo" + i].removeMovieClip(); i++; } i = 500; while (i <= 1000) { _root["cow" + i].removeMovieClip(); i++; } _root.nextLevel.removeMovieClip(); } _root.level = 0; _root.lives = 5; _root.gunshot = new Sound(); _root.gunshot.attachSound("shotgun"); _root.reloadTimer = 0; _root.fire = 3; _root.cowCounter = 500; _root.ufoCounter = 200; _root.bulletCounter = 100; _root.missileCounter = 151; _root.score = 0; _root.attachMovie("crosshair", "crosshair", 997); onMouseDown = function () { if (_root.player.action == "aiming") { if (reloadTimer == 0) { _root.player.arms.arms.fire.gotoAndPlay(2); reloadTimer = 25; gunshot.start(); i = 1; while (i <= fire) { makeBullet(); i++; } } else { reloadTimer = reloadTimer + 2; } } else if ((_root.player.action == "walking") || (_root.player.action == "standing")) { _root.player.action = "aiming"; } }; onEnterFrame = function () { if (reloadTimer > 0) { reloadTimer--; } if (!_root.nextLevel) { nextLVL = true; i = 200; while (i <= ufoCounter) { if (_root["ufo" + i]) { nextLVL = false; } i++; } if (nextLVL) { ufoCounter = 200; level++; makeCow(); levelUp(); } } cows = 0; i = 500; while (i <= cowCounter) { if (_root["cow" + i]) { cows++; } i++; } if ((_root.lives == 0) || (cows == 0)) { clearAll(); gotoAndStop (6); } }; stop(); _root.muzac = new Sound(); _root.muzac.attachSound("music"); if (_global.muzic) { muzac.start(0, 9999); }
Instance of Symbol 236 MovieClip in Frame 5
onClipEvent (enterFrame) { this.gotoAndStop(_root.lives); }
Instance of Symbol 294 MovieClip "player" in Frame 5
onClipEvent (load) { action = "standing"; direction = "Left"; maxSpeed = 5; vSpeed = 0; hSpeed = 0; floor = this._y; jump = 10; keyListener = new Object(); fireListener = new Object(); Key.addListener(keyListener); Key.addListener(fireListener); } onClipEvent (enterFrame) { if (Key.isDown(_global.leftKey)) { if ((action != "aiming") && (action != "dead")) { hSpeed = hSpeed - 0.5; direction = "left"; } } if (Key.isDown(_global.rightKey)) { if ((action != "aiming") && (action != "dead")) { hSpeed = hSpeed + 0.5; direction = "right"; } } if (Key.isDown(_global.upKey)) { if ((action != "aiming") && (action != "dead")) { if (_y == floor) { vSpeed = -jump; } } } keyListener.onKeyDown = function () { if ((action == "aiming") && (Key.isDown(_global.upKey))) { action = "standing"; } else if (Key.isDown(_global.downKey)) { if ((action == "standing") || (action == "walking")) { action = "aiming"; hSpeed = 0; } else if (action == "aiming") { action = "standing"; } } }; if ((action != "aiming") && (action != "dead")) { if ((!Key.isDown(_global.leftKey)) && (hSpeed < 0)) { hSpeed = hSpeed + 0.5; } if ((!Key.isDown(_global.rightKey)) && (hSpeed > 0)) { hSpeed = hSpeed - 0.5; } if (hSpeed > maxSpeed) { hSpeed = maxSpeed; } else if (hSpeed < (-maxSpeed)) { hSpeed = -maxSpeed; } if ((_y < floor) && (Key.isDown(_global.upKey))) { vSpeed = vSpeed - (jump * 0.05); } if (_y < floor) { vSpeed++; } else if ((_y + vSpeed) > floor) { vSpeed = 0; _y = floor; } _x = (_x + hSpeed); _y = (_y + vSpeed); if (_x < 0) { _x = 0; } if (_x > 425) { _x = 425; } if (hSpeed != 0) { action = "walking"; } else { action = "standing"; } if (_y != floor) { action = "up"; } if (vSpeed > 0) { action = "down"; } if (hSpeed < 0) { direction = "left"; } if (hSpeed > 0) { direction = "right"; } } else if (action == "aiming") { if (this._xmouse > 0) { if (direction == "left") { direction = "right"; } else { direction = "left"; } } } if (direction == "left") { _xscale = 100; } else if (direction == "right") { _xscale = -100; } if (action == "standing") { this.gotoAndStop(1); } if (action == "walking") { this.gotoAndStop(2); } if (action == "up") { this.gotoAndStop(3); } if (action == "down") { this.gotoAndStop(4); } if (action == "aiming") { this.gotoAndStop(5); } if (action == "dead") { this.gotoAndStop(6); } }
Frame 6
onEnterFrame = function () { }; stop(); muzac.stop(); i = 200; while (i <= 500) { _root["ufo" + i].removeMovieClip(); i++; } i = 500; while (i <= 1000) { _root["cow" + i].removeMovieClip(); i++; } _root.nextLevel.removeMovieClip();
Instance of Symbol 305 MovieClip in Frame 6
onClipEvent (enterFrame) { if (this._currentframe == 156) { _root.gotoAndStop(2); } }
Frame 7
play();
Frame 50
gotoAndStop (2);
Symbol 8 MovieClip [FLabelSymbol] Frame 1
#initclip 2 _global.FLabelClass = function () { if (this.hostComponent == undefined) { this.hostComponent = ((this._parent.controller == undefined) ? (this._parent) : (this._parent.controller)); } if (this.customTextStyle == undefined) { if (this.hostComponent.textStyle == undefined) { this.hostComponent.textStyle = new TextFormat(); } this.textStyle = this.hostComponent.textStyle; this.enable = true; } }; FLabelClass.prototype = new MovieClip(); Object.registerClass("FLabelSymbol", FLabelClass); FLabelClass.prototype.setLabel = function (label) { var val = this.hostComponent.styleTable.embedFonts.value; if (val != undefined) { this.labelField.embedFonts = val; } this.labelField.setNewTextFormat(this.textStyle); this.labelField.text = label; this.labelField._height = this.labelField.textHeight + 2; }; FLabelClass.prototype.setSize = function (width) { this.labelField._width = width; }; FLabelClass.prototype.setEnabled = function (enable) { this.enable = enable; var tmpColor = this.hostComponent.styleTable[(enable ? "textColor" : "textDisabled")].value; if (tmpColor == undefined) { tmpColor = (enable ? 0 : 8947848); } this.setColor(tmpColor); }; FLabelClass.prototype.getLabel = function () { return(this.labelField.text); }; FLabelClass.prototype.setColor = function (col) { this.labelField.textColor = col; }; #endinitclip
Symbol 17 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(frame5, "face"); component.registerSkinElement(frame3, "shadow"); component.registerSkinElement(frame1, "darkshadow"); component.registerSkinElement(frame4, "highlight"); component.registerSkinElement(frame2, "highlight3D");
Symbol 23 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(frame5, "face"); component.registerSkinElement(frame3, "shadow"); component.registerSkinElement(frame1, "darkshadow"); component.registerSkinElement(frame4, "highlight"); component.registerSkinElement(frame2, "highlight3D");
Symbol 29 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(frame5, "face"); component.registerSkinElement(frame4, "shadow"); component.registerSkinElement(frame2, "darkshadow"); component.registerSkinElement(frame3, "highlight"); component.registerSkinElement(frame1, "highlight3D");
Symbol 35 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(frame5, "face"); component.registerSkinElement(frame3, "shadow"); component.registerSkinElement(frame1, "darkshadow"); component.registerSkinElement(frame4, "highlight"); component.registerSkinElement(frame2, "highlight3D");
Symbol 36 MovieClip [fpb_states] Frame 1
stop();
Symbol 36 MovieClip [fpb_states] Frame 2
stop();
Symbol 36 MovieClip [fpb_states] Frame 3
stop();
Symbol 36 MovieClip [fpb_states] Frame 4
stop();
Symbol 37 MovieClip [FUIComponentSymbol] Frame 1
#initclip 1 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._width = (this.deadPreview._height = 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 i in this.styleFormat_prm) { this.setStyleProperty(i, this.styleFormat_prm[i]); } } }; FUIComponentClass.prototype.setEnabled = function (enabledFlag) { this.enable = ((arguments.length > 0) ? (enabledFlag) : true); this.tabEnabled = (this.focusEnabled = enabledFlag); 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 funct in this.methodTable) { this[funct](); } }; FUIComponentClass.prototype.drawRect = function (x, y, w, h) { var inner = this.styleTable.focusRectInner.value; var outer = this.styleTable.focusRectOuter.value; if (inner == undefined) { inner = 16777215 /* 0xFFFFFF */; } if (outer == undefined) { outer = 0; } this.createEmptyMovieClip("focusRect", 1000); this.focusRect.controller = this; this.focusRect.lineStyle(1, outer); 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, inner); 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 tmpValue = parseInt(value); if (!isNaN(tmpValue)) { value = tmpValue; } var global = ((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 || (!global)) { 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 textProp = propName.subString(4, propName.length); this.textStyle[textProp] = value; this.invalidate("setSize"); } else { for (var j in this.styleTable[propName].coloredMCs) { var myColor = new Color(this.styleTable[propName].coloredMCs[j]); if (this.styleTable[propName].value == undefined) { var myTObj = {ra:"100", rb:"0", ga:"100", gb:"0", ba:"100", bb:"0", aa:"100", ab:"0"}; myColor.setTransform(myTObj); } else { myColor.setRGB(value); } } } this.styleTable[propName].useGlobal = global; } }; 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 myColor = new Color(skinMCRef); myColor.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 i in arguments[0]) { this[i] = arguments[0][i]; } } }; _global.FStyleFormat.prototype = new Object(); FStyleFormat.prototype.addListener = function () { var arg = 0; while (arg < arguments.length) { var mcRef = arguments[arg]; this.listeners[arguments[arg]] = mcRef; for (var i in this) { if (this.isAStyle(i)) { mcRef.updateStyleProperty(this, i.toString()); } } arg++; } }; FStyleFormat.prototype.removeListener = function (component) { this.listeners[component] = undefined; for (var prop in this) { if (this.isAStyle(prop)) { if (component.styleTable[prop].useGlobal == this.isGlobal) { component.styleTable[prop].useGlobal = true; var value = (this.isGlobal ? undefined : (globalStyleFormat[prop])); component.setStyleProperty(prop, value, true); } } } }; FStyleFormat.prototype.applyChanges = function () { var count = 0; for (var i in this.listeners) { var component = this.listeners[i]; if (arguments.length > 0) { var j = 0; while (j < arguments.length) { if (this.isAStyle(arguments[j])) { component.updateStyleProperty(this, arguments[j]); } j++; } } else { for (var j in this) { if (this.isAStyle(j)) { component.updateStyleProperty(this, j.toString()); } } } } }; FStyleFormat.prototype.isAStyle = function (name) { return((this.nonStyles[name] ? false : true)); }; #endinitclip
Symbol 43 MovieClip [FBoundingBoxSymbol] Frame 1
var component = _parent; component.registerSkinElement(boundingBox, "background"); stop();
Symbol 43 MovieClip [FBoundingBoxSymbol] Frame 2
component.registerSkinElement(boundingBox2, "backgroundDisabled"); stop();
Symbol 44 MovieClip [FPushButtonSymbol] Frame 1
#initclip 3 function FPushButtonClass() { this.init(); } FPushButtonClass.prototype = new FUIComponentClass(); Object.registerClass("FPushButtonSymbol", FPushButtonClass); FPushButtonClass.prototype.init = function () { super.setSize(this._width, this._height); this.boundingBox_mc.unloadMovie(); this.attachMovie("fpb_states", "fpbState_mc", 1); this.attachMovie("FLabelSymbol", "fLabel_mc", 2); this.attachMovie("fpb_hitArea", "fpb_hitArea_mc", 3); super.init(); this.btnState = false; this.setClickHandler(this.clickHandler); this._xscale = 100; this._yscale = 100; this.setSize(this.width, this.height); if (this.label != undefined) { this.setLabel(this.label); } this.ROLE_SYSTEM_PUSHBUTTON = 43; this.STATE_SYSTEM_PRESSED = 8; this.EVENT_OBJECT_STATECHANGE = 32778; this.EVENT_OBJECT_NAMECHANGE = 32780; this._accImpl.master = this; this._accImpl.stub = false; this._accImpl.get_accRole = this.get_accRole; this._accImpl.get_accName = this.get_accName; this._accImpl.get_accState = this.get_accState; this._accImpl.get_accDefaultAction = this.get_accDefaultAction; this._accImpl.accDoDefaultAction = this.accDoDefaultAction; }; FPushButtonClass.prototype.setHitArea = function (w, h) { var hit = this.fpb_hitArea_mc; this.hitArea = hit; hit._visible = false; hit._width = w; hit._height = ((arguments.length > 1) ? (h) : (hit._height)); }; FPushButtonClass.prototype.setSize = function (w, h) { w = ((w < 6) ? 6 : (w)); if (arguments.length > 1) { if (h < 6) { h = 6; } } super.setSize(w, h); this.setLabel(this.getLabel()); this.arrangeLabel(); this.setHitArea(w, h); this.boundingBox_mc._width = w; this.boundingBox_mc._height = h; this.drawFrame(); if (this.focused) { super.myOnSetFocus(); } this.initContentPos("fLabel_mc"); }; FPushButtonClass.prototype.arrangeLabel = function () { var label = this.fLabel_mc; var h = this.height; var w = (this.width - 2); var b = 1; this.fLabel_mc.setSize(w - (b * 4)); label._x = b * 3; label._y = (h / 2) - (label._height / 2); }; FPushButtonClass.prototype.getLabel = function () { return(this.fLabel_mc.labelField.text); }; FPushButtonClass.prototype.setLabel = function (label) { this.fLabel_mc.setLabel(label); this.txtFormat(); this.arrangeLabel(); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_NAMECHANGE); } }; FPushButtonClass.prototype.getEnabled = function () { return(this.enabled); }; FPushButtonClass.prototype.setEnabled = function (enable) { if (enable || (enable == undefined)) { this.gotoFrame(1); this.drawFrame(); this.flabel_mc.setEnabled(true); this.enabled = true; super.setEnabled(true); } else { this.gotoFrame(4); this.drawFrame(); this.flabel_mc.setEnabled(false); this.enabled = false; super.setEnabled(false); } }; FPushButtonClass.prototype.txtFormat = function () { var txtS = this.textStyle; var sTbl = this.styleTable; txtS.align = ((sTbl.textAlign.value == undefined) ? ((txtS.align = "center")) : undefined); txtS.leftMargin = ((sTbl.textLeftMargin.value == undefined) ? ((txtS.leftMargin = 1)) : undefined); txtS.rightMargin = ((sTbl.textRightMargin.value == undefined) ? ((txtS.rightMargin = 1)) : undefined); if (this.fLabel_mc._height > this.height) { super.setSize(this.width, this.fLabel_mc._height); } else { super.setSize(this.width, this.height); } this.fLabel_mc.labelField.setTextFormat(this.textStyle); this.setEnabled(this.enable); }; FPushButtonClass.prototype.drawFrame = function () { var b = 1; var x1 = 0; var y1 = 0; var x2 = this.width; var y2 = this.height; var mc_array = ["up_mc", "over_mc", "down_mc", "disabled_mc"]; var frame = mc_array[this.fpbState_mc._currentframe - 1]; var mc = "frame"; var i = 0; while (i < 6) { x1 = x1 + ((i % 2) * b); y1 = y1 + ((i % 2) * b); x2 = x2 - (((i + 1) % 2) * b); y2 = y2 - (((i + 1) % 2) * b); var w = (Math.abs(x1 - x2) + (2 * b)); var h = (Math.abs(y1 - y2) + (2 * b)); this.fpbState_mc[frame][mc + i]._width = w; this.fpbState_mc[frame][mc + i]._height = h; this.fpbState_mc[frame][mc + i]._x = x1 - b; this.fpbState_mc[frame][mc + i]._y = y1 - b; i++; } }; FPushButtonClass.prototype.setClickHandler = function (chng, obj) { this.handlerObj = ((arguments.length < 2) ? (this._parent) : (obj)); this.clickHandler = chng; }; FPushButtonClass.prototype.executeCallBack = function () { this.handlerObj[this.clickHandler](this); }; FPushButtonClass.prototype.initContentPos = function (mc) { this.incrVal = 1; this.initx = this[mc]._x - (this.getBtnState() * this.incrVal); this.inity = this[mc]._y - (this.getBtnState() * this.incrVal); this.togx = this.initx + this.incrVal; this.togy = this.inity + this.incrVal; }; FPushButtonClass.prototype.setBtnState = function (state) { this.btnState = state; if (state) { this.fLabel_mc._x = this.togx; this.fLabel_mc._y = this.togy; } else { this.fLabel_mc._x = this.initx; this.fLabel_mc._y = this.inity; } }; FPushButtonClass.prototype.getBtnState = function () { return(this.btnState); }; FPushButtonClass.prototype.myOnSetFocus = function () { this.focused = true; super.myOnSetFocus(); }; FPushButtonClass.prototype.onPress = function () { this.pressFocus(); this.fpbState_mc.gotoAndStop(3); this.drawFrame(); this.setBtnState(true); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_STATECHANGE, true); } }; FPushButtonClass.prototype.onRelease = function () { this.fpbState_mc.gotoAndStop(2); this.drawFrame(); this.executeCallBack(); this.setBtnState(false); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_STATECHANGE, true); } }; FPushButtonClass.prototype.onRollOver = function () { this.fpbState_mc.gotoAndStop(2); this.drawFrame(); }; FPushButtonClass.prototype.onRollOut = function () { this.fpbState_mc.gotoAndStop(1); this.drawFrame(); }; FPushButtonClass.prototype.onReleaseOutside = function () { this.setBtnState(false); this.fpbState_mc.gotoAndStop(1); this.drawFrame(); }; FPushButtonClass.prototype.onDragOut = function () { this.setBtnState(false); this.fpbState_mc.gotoAndStop(1); this.drawFrame(); }; FPushButtonClass.prototype.onDragOver = function () { this.setBtnState(true); this.fpbState_mc.gotoAndStop(3); this.drawFrame(); }; FPushButtonClass.prototype.myOnKeyDown = function () { if ((Key.getCode() == 32) && (this.pressOnce == undefined)) { this.onPress(); this.pressOnce = 1; } }; FPushButtonClass.prototype.myOnKeyUp = function () { if (Key.getCode() == 32) { this.onRelease(); this.pressOnce = undefined; } }; FPushButtonClass.prototype.get_accRole = function (childId) { return(this.master.ROLE_SYSTEM_PUSHBUTTON); }; FPushButtonClass.prototype.get_accName = function (childId) { return(this.master.getLabel()); }; FPushButtonClass.prototype.get_accState = function (childId) { if (this.pressOnce) { return(this.master.STATE_SYSTEM_PRESSED); } return(this.master.STATE_SYSTEM_DEFAULT); }; FPushButtonClass.prototype.get_accDefaultAction = function (childId) { return("Press"); }; FPushButtonClass.prototype.accDoDefaultAction = function (childId) { this.master.onPress(); this.master.onRelease(); }; #endinitclip boundingBox_mc._visible = false; deadPreview._visible = false;
Symbol 49 MovieClip Frame 1
stop();
Symbol 67 MovieClip Frame 12
_parent.makeMissile();
Symbol 67 MovieClip Frame 32
_parent.action = "searching";
Symbol 73 MovieClip Frame 8
gotoAndPlay (5);
Symbol 80 MovieClip Frame 1
_parent._root["cow" + _parent.cowSearch].action = "down";
Symbol 80 MovieClip Frame 11
_parent.vSpeed = random(20) - 10; _parent.cowSearch = int(random(_root.cowCounter) + 1); _parent.action = "searching";
Symbol 96 MovieClip Frame 1
_parent._root["cow" + _parent.cowSearch].action = "down"; _parent._root.score = _parent._root.score + 500;
Symbol 96 MovieClip Frame 26
_parent.removeMovieClip();
Symbol 97 MovieClip [UFO] Frame 1
function makeMissile() { _root.attachMovie("missile", "missile" + _root.missileCounter, _root.missileCounter); _root["missile" + _root.missileCounter]._x = _x - 10; _root["missile" + _root.missileCounter]._y = _y + 30; _root.missileCounter++; if (_root.missileCounter > 199) { _root.missileCounter = 151; } } onEnterFrame = function () { if (action == "damage") { vSpeed = 0; } if (health <= 0) { action = "death"; } if (action == "searching") { if (_root["cow" + cowSearch]) { if ((_root["cow" + cowSearch]._x < _x) && (vSpeed > -5)) { vSpeed = vSpeed - 0.5; } if ((_root["cow" + cowSearch]._x > _x) && (vSpeed < 5)) { vSpeed = vSpeed + 0.5; } if (((_root["cow" + cowSearch]._x + 10) > _x) && ((_root["cow" + cowSearch]._x - 10) < _x)) { vSpeed = vSpeed * 0.9; if (vSpeed < 1) { vSpeed = 0; action = "TractorBeam"; } } } if (random(200) == 0) { action = "missile"; } } if (action == "TractorBeam") { if (_root["cow" + cowSearch]) { _root["cow" + cowSearch].action = "up"; if (_root["cow" + cowSearch]._y < this._y) { health = health + 10; _root["cow" + cowSearch].removeMovieClip(); action = "searching"; } } else { action = "searching"; } } if (action == "missile") { vSpeed = (_root.player._x - _x) * 0.03; if (vSpeed > 8) { vSpeed = 8; } if (vSpeed < -8) { vSpeed = -8; } } _x = (_x + vSpeed); if (!_root["cow" + cowSearch]) { cowSearch = int(random(_root.cowCounter - 500) + 500); } if (action == "damage") { this.gotoAndStop(4); } if (action == "TractorBeam") { this.gotoAndStop(3); } if (action == "searching") { this.gotoAndStop(1); } if (action == "death") { this.gotoAndStop(5); } if (action == "missile") { this.gotoAndStop(2); } }; stop();
Instance of Symbol 49 MovieClip in Symbol 97 MovieClip [UFO] Frame 1
onClipEvent (enterFrame) { this.gotoAndStop(_parent.health); }
Instance of Symbol 51 MovieClip "hitArea" in Symbol 97 MovieClip [UFO] Frame 1
onClipEvent (load) { _visible = false; }
Symbol 140 MovieClip Frame 12
gotoAndPlay (10);
Symbol 141 MovieClip [cow] Frame 1
onEnterFrame = function () { if ((_root.level > 1) && (_root.nextLevel)) { _root.score = _root.score + 2; } if (action == "walking") { if (direction == "left") { _x = (_x-1); } if (direction == "right") { _x = (_x+1); } if (int(random(40)) == 0) { action = "standing"; } } if (action == "standing") { if (int(random(75)) == 0) { if (direction == "left") { direction = "right"; } else if (direction == "right") { direction = "left"; } } if (int(random(75)) == 0) { action = "walking"; } } if (action == "up") { _y = (_y-1); } if (action == "down") { vSpeed = vSpeed + 1; _y = (_y + vSpeed); if (_y > 300) { _y = 300; vSpeed = 0; action = "walking"; } } if (_x > 425) { _x = 425; action = "walking"; direction = "left"; } if (_x < 0) { action = "walking"; direction = "right"; _x = 0; } if (direction == "left") { _xscale = 100; } else if (direction == "right") { _xscale = -100; } if (action == "standing") { gotoAndStop (2); } if (action == "walking") { gotoAndStop (1); } if (action == "up") { gotoAndStop (3); } };
Symbol 143 MovieClip [bullet] Frame 1
onEnterFrame = function () { _x = (_x + ((Math.sin(angle * (Math.PI/180)) * speed) * 2)); _y = (_y - ((Math.cos(angle * (Math.PI/180)) * speed) * 2)); if ((lastX == _x) && (lastY == _y)) { this.removeMovieClip(); } lastX = _x; lastY = _y; if ((((_x < -20) || (_x > 445)) || (_y < -20)) || (_y > _root.player.floor)) { this.removeMovieClip(); } i = 200; while (i <= _parent.ufoCounter) { if (_root["ufo" + i]) { if (_root["ufo" + i].hitarea.hitTest(_x, _y, false)) { _root.score = _root.score + 5; _root["ufo" + i].action = "damage"; _root["ufo" + i].anim.gotoAndPlay(1); _root["ufo" + i].health = _root["ufo" + i].health - 4; this.removeMovieClip(); } } i++; } i = 151; while (i <= 199) { if (_root["missile" + i] && (_root["missile" + i].action != "explode")) { if (_root["missile" + i].hitTest(_x, _y, false)) { _root.score = _root.score + 5; _root["missile" + i].action = "explode"; this.removeMovieClip(); } } i++; } };
Symbol 145 MovieClip [crosshair] Frame 1
this.startDrag(true); Mouse.hide();
Symbol 151 MovieClip [nextLevel] Frame 95
i = 1; while (i <= _root.level) { _root.makeUFO(); i++; } i = 1; while (i <= (_root.level * 0.5)) { _root.makecow(); i++; } if ((_root.level % 5) == 0) { _root.fire++; } this.removeMovieClip();
Symbol 166 MovieClip Frame 15
_parent.removeMovieClip();
Symbol 167 MovieClip [missile] Frame 1
action = "none"; ySpeed = 0; onEnterFrame = function () { if ((_x > 425) || (_x < 0)) { this.removeMovieClip(); } if (_currentframe == 1) { if ((_y + ySpeed) > (_root.player.floor + 10)) { _y = _root.player.floor; ySpeed = 0; this.gotoAndPlay(2); } else { ySpeed++; } _y = (_y + ySpeed); } if (action == "explode") { i = 200; while (i <= _parent.ufoCounter) { if (_root["ufo" + i]) { if (_root["ufo" + i].hitarea.hitTest(this)) { _root.score = _root.score + 5; _root["ufo" + i].action = "damage"; _root["ufo" + i].anim.gotoAndPlay(1); _root["ufo" + i].health--; } } i++; } } if (action == "explode") { gotoAndStop (15); } if (frame < 15) { if (hitTest(_root.player._x, _root.player._y, false)) { action = "explode"; } } if ((_currentframe == 15) && (hitArea.hitTest(_root.player._x, _root.player._y, false))) { _root.player.action = "dead"; } }; stop();
Symbol 167 MovieClip [missile] Frame 14
stop();
Instance of Symbol 51 MovieClip "hitArea" in Symbol 167 MovieClip [missile] Frame 15
onClipEvent (enterFrame) { _visible = false; }
Symbol 170 MovieClip Frame 1
_root.stop();
Symbol 170 MovieClip Frame 14
_stop(); onEnterFrame = function () { if (_framesloaded == _totalframes) { play(); } };
Symbol 170 MovieClip Frame 33
stop(); _root.play();
Symbol 178 Button
on (release) { _root.gotoAndStop(3); }
Symbol 183 Button
on (release) { _root.gotoAndStop(5); }
Symbol 188 Button
on (release) { _global.muzic = false; }
Symbol 191 Button
on (release) { _global.muzic = true; }
Symbol 194 Button
on (release) { _quality = "High"; }
Symbol 197 Button
on (release) { _quality = "Medium"; }
Symbol 200 Button
on (release) { _quality = "Low"; }
Symbol 203 Button
on (release) { _root.gotoAndStop(4); }
Symbol 208 Button
on (release) { _root.gotoAndStop(2); }
Symbol 211 Button
on (release) { _root.gotoAndStop(3); }
Symbol 221 Button
on (press) { setLeft = false; setUp = false; setRight = true; setDown = false; _root.instructions.text = "Press key for RIGHT"; }
Symbol 225 Button
on (press) { setLeft = true; setUp = false; setRight = false; setDown = false; _root.instructions.text = "Press key for LEFT"; }
Symbol 229 Button
on (press) { setLeft = false; setUp = false; setRight = false; setDown = true; _root.instructions.text = "Press key for DOWN"; }
Symbol 233 Button
on (press) { setLeft = false; setUp = true; setRight = false; setDown = false; _root.instructions.text = "Press key for UP"; }
Symbol 236 MovieClip Frame 1
stop();
Symbol 252 MovieClip Frame 11
gotoAndPlay (2);
Symbol 271 MovieClip Frame 1
stop();
Symbol 294 MovieClip Frame 1
stop();
Instance of Symbol 273 MovieClip "arms" in Symbol 294 MovieClip Frame 5
onClipEvent (enterFrame) { x = this._xmouse; y = this._ymouse; angle = Math.atan(y / x) / (Math.PI/180); if (x < 0) { angle = angle + 180; } if ((x >= 0) && (y < 0)) { angle = angle + 360; } gotoAndStop(int(angle)); }
Instance of Symbol 293 MovieClip in Symbol 294 MovieClip Frame 6
onClipEvent (enterFrame) { if (_currentframe == 45) { i = 151; while (i <= 199) { if (_root["missile" + i]) { _root["missile" + i].action = "explode"; } i++; } } if (_currentframe == 56) { _root.player._x = random(425); _root.player._y = -20; _root.player.action = "down"; _root.lives--; } }
Symbol 304 MovieClip Frame 27
stop();
Symbol 305 MovieClip Frame 156
_root._parent.gotoAndStop(2);

Library Items

Symbol 1 Sound [shotgun]
Symbol 2 Sound [music]
Symbol 3 Sound [ouch]
Symbol 4 GraphicUsed by:5
Symbol 5 MovieClip [fpb_hitArea]Uses:4
Symbol 6 FontUsed by:7
Symbol 7 EditableTextUses:6Used by:8
Symbol 8 MovieClip [FLabelSymbol]Uses:7
Symbol 9 GraphicUsed by:10 18 24 30
Symbol 10 MovieClipUses:9Used by:17
Symbol 11 GraphicUsed by:12 13 19 20 31 32
Symbol 12 MovieClipUses:11Used by:17
Symbol 13 MovieClipUses:11Used by:17
Symbol 14 GraphicUsed by:15 16 21 22 25 26 27 28 33 34
Symbol 15 MovieClipUses:14Used by:17
Symbol 16 MovieClipUses:14Used by:17
Symbol 17 MovieClipUses:10 12 13 15 16Used by:36
Symbol 18 MovieClipUses:9Used by:23
Symbol 19 MovieClipUses:11Used by:23
Symbol 20 MovieClipUses:11Used by:23
Symbol 21 MovieClipUses:14Used by:23
Symbol 22 MovieClipUses:14Used by:23
Symbol 23 MovieClipUses:18 19 20 21 22Used by:36
Symbol 24 MovieClipUses:9Used by:29
Symbol 25 MovieClipUses:14Used by:29
Symbol 26 MovieClipUses:14Used by:29
Symbol 27 MovieClipUses:14Used by:29
Symbol 28 MovieClipUses:14Used by:29
Symbol 29 MovieClipUses:24 25 26 27 28Used by:36
Symbol 30 MovieClipUses:9Used by:35
Symbol 31 MovieClipUses:11Used by:35
Symbol 32 MovieClipUses:11Used by:35
Symbol 33 MovieClipUses:14Used by:35
Symbol 34 MovieClipUses:14Used by:35
Symbol 35 MovieClipUses:30 31 32 33 34Used by:36
Symbol 36 MovieClip [fpb_states]Uses:17 23 29 35
Symbol 37 MovieClip [FUIComponentSymbol]
Symbol 38 GraphicUsed by:39
Symbol 39 MovieClipUses:38Used by:44
Symbol 40 GraphicUsed by:43
Symbol 41 GraphicUsed by:42 188 191 194 197 200 203 208 211
Symbol 42 MovieClipUses:41Used by:43
Symbol 43 MovieClip [FBoundingBoxSymbol]Uses:40 42Used by:44
Symbol 44 MovieClip [FPushButtonSymbol]Uses:39 43
Symbol 45 GraphicUsed by:49
Symbol 46 ShapeTweeningUsed by:49
Symbol 47 GraphicUsed by:49
Symbol 48 GraphicUsed by:49
Symbol 49 MovieClipUses:46 45 47 48Used by:97
Symbol 50 GraphicUsed by:51
Symbol 51 MovieClipUses:50Used by:97 167
Symbol 52 GraphicUsed by:97
Symbol 53 GraphicUsed by:67
Symbol 54 GraphicUsed by:67
Symbol 55 GraphicUsed by:67
Symbol 56 SoundUsed by:67
Symbol 57 GraphicUsed by:67
Symbol 58 GraphicUsed by:67
Symbol 59 GraphicUsed by:67
Symbol 60 GraphicUsed by:67
Symbol 61 GraphicUsed by:67
Symbol 62 GraphicUsed by:67
Symbol 63 GraphicUsed by:67
Symbol 64 GraphicUsed by:67
Symbol 65 GraphicUsed by:67
Symbol 66 GraphicUsed by:67
Symbol 67 MovieClipUses:53 54 55 56 57 58 59 60 61 62 63 64 65 66Used by:97
Symbol 68 GraphicUsed by:73
Symbol 69 GraphicUsed by:73
Symbol 70 GraphicUsed by:73
Symbol 71 GraphicUsed by:73
Symbol 72 GraphicUsed by:73
Symbol 73 MovieClipUses:68 69 70 71 72Used by:97
Symbol 74 GraphicUsed by:80
Symbol 75 GraphicUsed by:80
Symbol 76 GraphicUsed by:80
Symbol 77 GraphicUsed by:80
Symbol 78 GraphicUsed by:80
Symbol 79 GraphicUsed by:80
Symbol 80 MovieClipUses:74 75 76 77 78 79Used by:97
Symbol 81 GraphicUsed by:96
Symbol 82 SoundUsed by:96 166
Symbol 83 GraphicUsed by:96
Symbol 84 GraphicUsed by:96
Symbol 85 GraphicUsed by:96
Symbol 86 GraphicUsed by:96
Symbol 87 GraphicUsed by:96
Symbol 88 GraphicUsed by:96 166
Symbol 89 GraphicUsed by:96
Symbol 90 SoundUsed by:96
Symbol 91 GraphicUsed by:96
Symbol 92 GraphicUsed by:96
Symbol 93 GraphicUsed by:96
Symbol 94 GraphicUsed by:96
Symbol 95 GraphicUsed by:96
Symbol 96 MovieClipUses:81 82 83 84 85 86 87 88 89 90 91 92 93 94 95Used by:97
Symbol 97 MovieClip [UFO]Uses:49 51 52 67 73 80 96
Symbol 98 GraphicUsed by:105
Symbol 99 GraphicUsed by:105
Symbol 100 GraphicUsed by:105
Symbol 101 GraphicUsed by:105
Symbol 102 GraphicUsed by:105
Symbol 103 GraphicUsed by:105
Symbol 104 GraphicUsed by:105
Symbol 105 MovieClipUses:98 99 100 101 102 103 104Used by:141
Symbol 106 GraphicUsed by:133
Symbol 107 GraphicUsed by:133
Symbol 108 GraphicUsed by:133
Symbol 109 GraphicUsed by:133
Symbol 110 GraphicUsed by:133
Symbol 111 GraphicUsed by:133
Symbol 112 GraphicUsed by:133
Symbol 113 GraphicUsed by:133
Symbol 114 GraphicUsed by:133
Symbol 115 GraphicUsed by:133
Symbol 116 GraphicUsed by:133
Symbol 117 GraphicUsed by:133
Symbol 118 GraphicUsed by:133
Symbol 119 GraphicUsed by:133
Symbol 120 GraphicUsed by:133
Symbol 121 GraphicUsed by:133
Symbol 122 GraphicUsed by:133
Symbol 123 GraphicUsed by:133
Symbol 124 GraphicUsed by:133
Symbol 125 GraphicUsed by:133
Symbol 126 GraphicUsed by:133
Symbol 127 GraphicUsed by:133
Symbol 128 GraphicUsed by:133
Symbol 129 GraphicUsed by:133
Symbol 130 GraphicUsed by:133
Symbol 131 GraphicUsed by:133
Symbol 132 GraphicUsed by:133
Symbol 133 MovieClipUses:106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132Used by:141
Symbol 134 GraphicUsed by:140
Symbol 135 GraphicUsed by:140
Symbol 136 GraphicUsed by:140
Symbol 137 GraphicUsed by:140
Symbol 138 GraphicUsed by:140
Symbol 139 GraphicUsed by:140
Symbol 140 MovieClipUses:134 135 136 137 138 139Used by:141
Symbol 141 MovieClip [cow]Uses:105 133 140
Symbol 142 GraphicUsed by:143
Symbol 143 MovieClip [bullet]Uses:142
Symbol 144 GraphicUsed by:145
Symbol 145 MovieClip [crosshair]Uses:144
Symbol 146 ShapeTweeningUsed by:151
Symbol 147 GraphicUsed by:151
Symbol 148 FontUsed by:149 150
Symbol 149 EditableTextUses:148Used by:151
Symbol 150 TextUses:148Used by:151
Symbol 151 MovieClip [nextLevel]Uses:146 147 149 150
Symbol 152 GraphicUsed by:167
Symbol 153 GraphicUsed by:167
Symbol 154 GraphicUsed by:167
Symbol 155 GraphicUsed by:167
Symbol 156 GraphicUsed by:167
Symbol 157 GraphicUsed by:167
Symbol 158 GraphicUsed by:167
Symbol 159 GraphicUsed by:167
Symbol 160 GraphicUsed by:166
Symbol 161 GraphicUsed by:166
Symbol 162 GraphicUsed by:166
Symbol 163 GraphicUsed by:166
Symbol 164 GraphicUsed by:166
Symbol 165 GraphicUsed by:166
Symbol 166 MovieClipUses:160 82 161 162 163 164 88 165Used by:167
Symbol 167 MovieClip [missile]Uses:152 153 154 155 156 157 158 159 51 166
Symbol 168 FontUsed by:169 213 214 215 216 217 237 238 239 297 298 306
Symbol 169 TextUses:168Used by:170
Symbol 170 MovieClipUses:169Used by:Timeline
Symbol 171 BitmapUsed by:172
Symbol 172 GraphicUses:171Used by:173
Symbol 173 MovieClipUses:172Used by:305  Timeline
Symbol 174 FontUsed by:175 176
Symbol 175 TextUses:174Used by:178
Symbol 176 TextUses:174Used by:178
Symbol 177 GraphicUsed by:178
Symbol 178 ButtonUses:175 176 177Used by:Timeline
Symbol 179 FontUsed by:180 181 186 187 189 190 192 193 195 196 198 199 201 202 204 205 206 207
Symbol 180 TextUses:179Used by:183
Symbol 181 TextUses:179Used by:183
Symbol 182 GraphicUsed by:183
Symbol 183 ButtonUses:180 181 182Used by:Timeline
Symbol 184 FontUsed by:185
Symbol 185 TextUses:184Used by:Timeline
Symbol 186 TextUses:179Used by:188
Symbol 187 TextUses:179Used by:188
Symbol 188 ButtonUses:186 187 41Used by:Timeline
Symbol 189 TextUses:179Used by:191
Symbol 190 TextUses:179Used by:191
Symbol 191 ButtonUses:189 190 41Used by:Timeline
Symbol 192 TextUses:179Used by:194
Symbol 193 TextUses:179Used by:194
Symbol 194 ButtonUses:192 193 41Used by:Timeline
Symbol 195 TextUses:179Used by:197
Symbol 196 TextUses:179Used by:197
Symbol 197 ButtonUses:195 196 41Used by:Timeline
Symbol 198 TextUses:179Used by:200
Symbol 199 TextUses:179Used by:200
Symbol 200 ButtonUses:198 199 41Used by:Timeline
Symbol 201 TextUses:179Used by:203
Symbol 202 TextUses:179Used by:203
Symbol 203 ButtonUses:201 202 41Used by:Timeline
Symbol 204 TextUses:179Used by:Timeline
Symbol 205 TextUses:179Used by:Timeline
Symbol 206 TextUses:179Used by:208 211
Symbol 207 TextUses:179Used by:208 211
Symbol 208 ButtonUses:206 207 41Used by:Timeline
Symbol 209 FontUsed by:210 212
Symbol 210 TextUses:209Used by:Timeline
Symbol 211 ButtonUses:206 207 41Used by:Timeline
Symbol 212 TextUses:209Used by:Timeline
Symbol 213 EditableTextUses:168Used by:Timeline
Symbol 214 EditableTextUses:168Used by:Timeline
Symbol 215 EditableTextUses:168Used by:Timeline
Symbol 216 EditableTextUses:168Used by:Timeline
Symbol 217 EditableTextUses:168Used by:Timeline
Symbol 218 GraphicUsed by:221
Symbol 219 GraphicUsed by:221
Symbol 220 GraphicUsed by:221
Symbol 221 ButtonUses:218 219 220Used by:Timeline
Symbol 222 GraphicUsed by:225
Symbol 223 GraphicUsed by:225
Symbol 224 GraphicUsed by:225
Symbol 225 ButtonUses:222 223 224Used by:Timeline
Symbol 226 GraphicUsed by:229
Symbol 227 GraphicUsed by:229
Symbol 228 GraphicUsed by:229
Symbol 229 ButtonUses:226 227 228Used by:Timeline
Symbol 230 GraphicUsed by:233
Symbol 231 GraphicUsed by:233
Symbol 232 GraphicUsed by:233
Symbol 233 ButtonUses:230 231 232Used by:Timeline
Symbol 234 GraphicUsed by:235
Symbol 235 MovieClipUses:234Used by:236
Symbol 236 MovieClipUses:235Used by:Timeline
Symbol 237 EditableTextUses:168Used by:Timeline
Symbol 238 TextUses:168Used by:Timeline
Symbol 239 EditableTextUses:168Used by:Timeline
Symbol 240 GraphicUsed by:244
Symbol 241 GraphicUsed by:244
Symbol 242 GraphicUsed by:244
Symbol 243 GraphicUsed by:244
Symbol 244 MovieClipUses:240 241 242 243Used by:294 305
Symbol 245 GraphicUsed by:252
Symbol 246 GraphicUsed by:252
Symbol 247 GraphicUsed by:252
Symbol 248 GraphicUsed by:252
Symbol 249 GraphicUsed by:252
Symbol 250 GraphicUsed by:252
Symbol 251 GraphicUsed by:252
Symbol 252 MovieClipUses:245 246 247 248 249 250 251Used by:294
Symbol 253 GraphicUsed by:255
Symbol 254 GraphicUsed by:255
Symbol 255 MovieClipUses:253 254Used by:294
Symbol 256 GraphicUsed by:258
Symbol 257 GraphicUsed by:258
Symbol 258 MovieClipUses:256 257Used by:294
Symbol 259 GraphicUsed by:271
Symbol 260 GraphicUsed by:271
Symbol 261 GraphicUsed by:271
Symbol 262 GraphicUsed by:271
Symbol 263 GraphicUsed by:271
Symbol 264 GraphicUsed by:271
Symbol 265 GraphicUsed by:271
Symbol 266 GraphicUsed by:271
Symbol 267 GraphicUsed by:271
Symbol 268 GraphicUsed by:271
Symbol 269 GraphicUsed by:271
Symbol 270 GraphicUsed by:271
Symbol 271 MovieClipUses:259 260 261 262 263 264 265 266 267 268 269 270Used by:272
Symbol 272 MovieClipUses:271Used by:273
Symbol 273 MovieClipUses:272Used by:294
Symbol 274 GraphicUsed by:275
Symbol 275 MovieClipUses:274Used by:294
Symbol 276 GraphicUsed by:293 304
Symbol 277 GraphicUsed by:293
Symbol 278 GraphicUsed by:293 304
Symbol 279 GraphicUsed by:293 304
Symbol 280 GraphicUsed by:293 304
Symbol 281 GraphicUsed by:293
Symbol 282 GraphicUsed by:293 304
Symbol 283 GraphicUsed by:293 304
Symbol 284 GraphicUsed by:293 304
Symbol 285 GraphicUsed by:293 304
Symbol 286 GraphicUsed by:293 304
Symbol 287 GraphicUsed by:293
Symbol 288 GraphicUsed by:293
Symbol 289 GraphicUsed by:293
Symbol 290 GraphicUsed by:293
Symbol 291 GraphicUsed by:293
Symbol 292 GraphicUsed by:293
Symbol 293 MovieClipUses:276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292Used by:294
Symbol 294 MovieClipUses:244 252 255 258 273 275 293Used by:Timeline
Symbol 295 BitmapUsed by:296
Symbol 296 GraphicUses:295Used by:305  Timeline
Symbol 297 EditableTextUses:168Used by:Timeline
Symbol 298 EditableTextUses:168Used by:Timeline
Symbol 299 GraphicUsed by:304
Symbol 300 GraphicUsed by:304
Symbol 301 GraphicUsed by:304
Symbol 302 GraphicUsed by:304
Symbol 303 GraphicUsed by:304
Symbol 304 MovieClipUses:276 299 278 279 280 300 282 283 284 285 286 301 302 303Used by:305
Symbol 305 MovieClipUses:244 296 304 173Used by:Timeline
Symbol 306 TextUses:168Used by:Timeline
Symbol 307 GraphicUsed by:Timeline
Symbol 308 GraphicUsed by:Timeline

Instance Names

"up"Frame 4Symbol 213 EditableText
"right"Frame 4Symbol 214 EditableText
"down"Frame 4Symbol 215 EditableText
"left"Frame 4Symbol 216 EditableText
"instructions"Frame 4Symbol 217 EditableText
"player"Frame 5Symbol 294 MovieClip
"labelField"Symbol 8 MovieClip [FLabelSymbol] Frame 1Symbol 7 EditableText
"frame5"Symbol 17 MovieClip Frame 1Symbol 10 MovieClip
"frame4"Symbol 17 MovieClip Frame 1Symbol 12 MovieClip
"frame3"Symbol 17 MovieClip Frame 1Symbol 13 MovieClip
"frame2"Symbol 17 MovieClip Frame 1Symbol 15 MovieClip
"frame1"Symbol 17 MovieClip Frame 1Symbol 16 MovieClip
"frame5"Symbol 23 MovieClip Frame 1Symbol 18 MovieClip
"frame4"Symbol 23 MovieClip Frame 1Symbol 19 MovieClip
"frame3"Symbol 23 MovieClip Frame 1Symbol 20 MovieClip
"frame2"Symbol 23 MovieClip Frame 1Symbol 21 MovieClip
"frame1"Symbol 23 MovieClip Frame 1Symbol 22 MovieClip
"frame5"Symbol 29 MovieClip Frame 1Symbol 24 MovieClip
"frame4"Symbol 29 MovieClip Frame 1Symbol 25 MovieClip
"frame3"Symbol 29 MovieClip Frame 1Symbol 26 MovieClip
"frame2"Symbol 29 MovieClip Frame 1Symbol 27 MovieClip
"frame1"Symbol 29 MovieClip Frame 1Symbol 28 MovieClip
"frame5"Symbol 35 MovieClip Frame 1Symbol 30 MovieClip
"frame4"Symbol 35 MovieClip Frame 1Symbol 31 MovieClip
"frame3"Symbol 35 MovieClip Frame 1Symbol 32 MovieClip
"frame2"Symbol 35 MovieClip Frame 1Symbol 33 MovieClip
"frame1"Symbol 35 MovieClip Frame 1Symbol 34 MovieClip
"up_mc"Symbol 36 MovieClip [fpb_states] Frame 1Symbol 17 MovieClip
"over_mc"Symbol 36 MovieClip [fpb_states] Frame 2Symbol 23 MovieClip
"down_mc"Symbol 36 MovieClip [fpb_states] Frame 3Symbol 29 MovieClip
"disabled_mc"Symbol 36 MovieClip [fpb_states] Frame 4Symbol 35 MovieClip
"boundingBox"Symbol 43 MovieClip [FBoundingBoxSymbol] Frame 1Symbol 42 MovieClip
"boundingBox2"Symbol 43 MovieClip [FBoundingBoxSymbol] Frame 2Symbol 42 MovieClip
"deadPreview"Symbol 44 MovieClip [FPushButtonSymbol] Frame 1Symbol 39 MovieClip
"boundingBox_mc"Symbol 44 MovieClip [FPushButtonSymbol] Frame 1Symbol 43 MovieClip [FBoundingBoxSymbol]
"hitArea"Symbol 97 MovieClip [UFO] Frame 1Symbol 51 MovieClip
"anim"Symbol 97 MovieClip [UFO] Frame 4Symbol 80 MovieClip
"hitArea"Symbol 167 MovieClip [missile] Frame 15Symbol 51 MovieClip
"fire"Symbol 272 MovieClip Frame 1Symbol 271 MovieClip
"arms"Symbol 273 MovieClip Frame 1Symbol 272 MovieClip
"arms"Symbol 294 MovieClip Frame 5Symbol 273 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "shotgun"
ExportAssets (56)Timeline Frame 1Symbol 2 as "music"
ExportAssets (56)Timeline Frame 1Symbol 3 as "ouch"
ExportAssets (56)Timeline Frame 1Symbol 5 as "fpb_hitArea"
ExportAssets (56)Timeline Frame 1Symbol 8 as "FLabelSymbol"
ExportAssets (56)Timeline Frame 1Symbol 36 as "fpb_states"
ExportAssets (56)Timeline Frame 1Symbol 37 as "FUIComponentSymbol"
ExportAssets (56)Timeline Frame 1Symbol 43 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 44 as "FPushButtonSymbol"
ExportAssets (56)Timeline Frame 1Symbol 97 as "UFO"
ExportAssets (56)Timeline Frame 1Symbol 141 as "cow"
ExportAssets (56)Timeline Frame 1Symbol 143 as "bullet"
ExportAssets (56)Timeline Frame 1Symbol 145 as "crosshair"
ExportAssets (56)Timeline Frame 1Symbol 151 as "nextLevel"
ExportAssets (56)Timeline Frame 1Symbol 167 as "missile"

Labels

#"Symbol_10"Symbol 5 MovieClip [fpb_hitArea] Frame 1
"Symbol_32"Symbol 8 MovieClip [FLabelSymbol] Frame 1
"up"Symbol 36 MovieClip [fpb_states] Frame 1
"over"Symbol 36 MovieClip [fpb_states] Frame 2
"down"Symbol 36 MovieClip [fpb_states] Frame 3
"disabled"Symbol 36 MovieClip [fpb_states] Frame 4
"Symbol_36"Symbol 37 MovieClip [FUIComponentSymbol] Frame 1
"enabled"Symbol 43 MovieClip [FBoundingBoxSymbol] Frame 1
"disabled"Symbol 43 MovieClip [FBoundingBoxSymbol] Frame 2

Dynamic Text Variables

_root.levelSymbol 149 EditableText"999"
_root.scoreSymbol 237 EditableText"1"
_root.levelSymbol 239 EditableText"1"
_root.scoreSymbol 297 EditableText"1"
_root.levelSymbol 298 EditableText"1"




http://swfchan.com/1/2584/info.shtml
Created: 17/6 -2019 14:32:46 Last modified: 17/6 -2019 14:32:46 Server time: 20/04 -2024 13:56:09