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

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

Defend Your Computer.swf

This is the info page for
Flash #11402

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


Text
J

NEW MAIL: 50% off spam!

NEW MAIL: 50% off spam!

NEW MAIL: buy our free ipods!

NEW MAIL: buy our free ipods!

00

level

SCORE:

TIME:

000

000

000

000

00

PLDM
studios

lol
free
ipod

lol
free
ipod

hi mom

UPGRADES
buy upgrades to aid in your survival
health: improves your max health
restore health: restores health to max
camera driver: improves the laser
intensity
popup blocker: destroys popups
anti emotion: kills all emotions
dos attack: slows down enemies
POWERUPS
adds 15 to your current health
adds 10 seconds to the time left
ENEMIES
virus
spyware
emotion
junkmail
advertisement1
advertisement2
popup
boss

LOADING!

bytes loaded

percent

PLAY!

The game is exclusive for Games of Gondor, PLDM Studios, SM Stuff,  and Newgrounds.com

CREDITS

LOAD

PLAY

OPTIONS

PLAY MORE
GAMES!

Cheat Activated

BACK

clear all

OPTIONS

QUALITY

DIFFICULTY

INSTRUCTIONS

you must defend your computer at all
costs!
CONTROLS
use your mouse to aim, and leftclick to
fire your webcam laser.
to use dos attack: hold space, but watch
out, it doesn't last for long!

NEXT

MENU

UPGRADES
buy upgrades to aid in your survival
health: improves your max health
restore health: restores health to max
camera driver: improves the laser
intensity
popup blocker: destroys popups
anti emotion: kills all emotions
dos attack: slows down enemies

POWERUPS
adds 15 to your current health
adds 10 seconds to the time left

ENEMIES
virus
spyware
emoticon
junkmail

ENEMIES
advertisement1
advertisement2
popup
boss

SUPERSPAM

when you shoot it,
the superspam
spawns 3 mini
spams.

AOL VIRUS

moves fast and if
it hits you, it
inverts your
cursor for a short
amount of time

OTHER

GOOD EMAIL:
don't shoot or you
lose health

OVERHEAT:
the meter above the health bar indicates the
computer temperature, if it reaches the end
your computer overheats and reboots.

PROGRAMMING
wyatt mcneil
CHARACTER
DESIGN/ART
kenney
LEVEL ART
wyatt mcneil
EFFECTS
wyatt mcneil
MENU ART
wyatt mcneil
CONCEPT
kenney
wyatt mcneil
SOUNDS
halflife2
flashkit
MUSIC
flashkit
ragevi
paragonx9
SPONSERED
BY
games of gondor
DEVELOPED
BY
pldmstudios
lostsolution
SPECIAL
THANKS TO
syko227
inglor
copyright2005
wyatt mcneil and kenney

DEFEND YOUR COMPUTER

NEW GAME

<username>

UPGRADES

<P ALIGN="LEFT"></P>

SAVE AND PLAY!

$500

BUY!

fps : 000

LEVEL COMPLETE!

UPGRADE

NEXT LEVEL

MENU

GAME OVER!

YOU WIN!!!

SECRET
on the menu screen type
GOG for unlimited money

CONTINUE

ActionScript [AS1/AS2]

Frame 1
stop(); _root.onEnterFrame = function () { total_bytes = _root.getBytesTotal(); loaded_bytes = _root.getBytesLoaded(); remaining_bytes = total_bytes - loaded_bytes; percent_done = int((loaded_bytes / total_bytes) * 100); loaderDisplay1 = ("Percent Loaded: " + percent_done) + "%"; loaderDisplay2 = (("KB Loaded: " + Math.round(loaded_bytes / 1000)) + "/") + Math.round(total_bytes / 1000); _root.preloader.preloaderBar._xscale = _root.preloader.preloaderBar._xscale + ((-(_root.preloader.preloaderBar._xscale - percent_done)) / 4); if (percent_done >= 99) { playButton._visible = true; delete _root.onEnterFrame; } else { playButton._visible = false; } }; Stage.showMenu = false;
Instance of Symbol 405 MovieClip in Frame 1
onClipEvent (enterFrame) { this._alpha = random(20); }
Instance of Symbol 432 MovieClip "preloader" in Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root._xmouse, _root._ymouse, true)) { show = true; } else { show = false; } this.loaderDisplay1 = _root.loaderDisplay1; this.loaderDisplay2 = _root.loaderDisplay2; if (show == true) { _alpha = (_alpha + ((-(_alpha - 100)) / 4)); } else { _alpha = (_alpha + ((-(_alpha - 0)) / 4)); } }
Frame 282
stats = {}; upgrades = {}; stats.difficulty = 1; stats.graphics = 2; musicLoop1 = new Sound(); musicLoop1.attachSound("mainMusic"); musicLoop1.setVolume(50); musicLoop1.start(); laserSound = new Sound(); laserSound.attachSound("laserSound"); explosionSound1 = new Sound(); explosionSound1.attachSound("explosionSound1"); explosionSound2 = new Sound(); explosionSound2.attachSound("explosionSound2"); bossLoop = new Sound(); bossLoop.attachSound("bossMusic"); musicLoop2 = new Sound(); musicLoop2.attachSound("mainMusic2"); musicLoop3 = new Sound(); musicLoop3.attachSound("mainMusic3"); musicLoop1.onSoundComplete = function () { musicLoop1.start(0, 1); };
Frame 283
function playSound(sound, volume) { _root["sound" + n] = new Sound(); _root["sound" + n].attachSound(sound); _root["sound" + n].setVolume(volume); _root["sound" + n].start(0, 1); n++; } function saveGame() { trace("saved"); _root["slot" + _root.stats.slot] = SharedObject.getLocal("dfc" + _root.stats.slot); _root["slot" + _root.stats.slot].data.user = _root.stats.username; _root["slot" + _root.stats.slot].data.money = _root.stats.money; _root["slot" + _root.stats.slot].data.health = _root.stats.health; _root["slot" + _root.stats.slot].data.level = _root.stats.level; _root["slot" + _root.stats.slot].data.score = _root.stats.score; _root["slot" + _root.stats.slot].data.casemod = _root.stats.casemod; _root["slot" + _root.stats.slot].data.popupBlocker = _root.upgrades.popupBlocker; _root["slot" + _root.stats.slot].data.dosAttack = _root.upgrades.dosAttack; _root["slot" + _root.stats.slot].data.tomfulp = _root.upgrades.tomfulp; _root["slot" + _root.stats.slot].data.cameraUpgrades = _root.upgrades.camera; _root["slot" + _root.stats.slot].data.healthUpgrades = _root.upgrades.maxhealth; } function loadGame(slot) { loaded = true; _root["slot" + slot] = SharedObject.getLocal("dfc" + slot); _root.stats.username = _root["slot" + slot].data.user; _root.stats.money = _root["slot" + slot].data.money; _root.stats.health = _root["slot" + slot].data.health; _root.stats.level = _root["slot" + slot].data.level; _root.stats.score = _root["slot" + slot].data.score; _root.stats.casemod = _root["slot" + slot].data.casemod; _root.upgrades.tomfulp = _root["slot" + slot].data.tomfulp; _root.upgrades.popupBlocker = _root["slot" + slot].data.popupBlocker; _root.upgrades.dosAttack = _root["slot" + slot].data.dosAttack; _root.upgrades.camera = _root["slot" + slot].data.cameraUpgrades; _root.upgrades.maxhealth = _root["slot" + slot].data.healthUpgrades; } function clearAllSlots() { i = 1; while (i <= 7) { _root["slot" + i] = SharedObject.getLocal("dfc" + i); _root["slot" + i].data.user = "EMPTY SLOT"; _root["slot" + i].data.money = ""; _root["slot" + i].data.health = ""; _root["slot" + i].data.cameraUpgrades = ""; _root["slot" + i].data.healthUpgrades = ""; _root["slot" + i].data.dosAttack = 0; _root["slot" + i].data.popupBlocker = 0; _root["slot" + i].data.tomfulp = 0; _root["slot" + i].data.level = ""; _root["slot" + i].data.score = ""; _root["slot" + i].flush(); i++; } } i = 1; while (i <= 7) { _root["slot" + i] = SharedObject.getLocal("dfc" + i); if (_root["slot" + i].data.user == undefined) { _root["slot" + i].data.user = "EMPTY SLOT"; _root["slot" + i].flush(); } i++; } stop(); Mouse.show(); cheatDisplay = "";
Instance of Symbol 405 MovieClip in Frame 283
onClipEvent (enterFrame) { this._alpha = random(20); }
Instance of Symbol 486 MovieClip in Frame 283
onClipEvent (enterFrame) { if (cheat != true) { if (Key.isDown(71)) { if ((gPressed == true) && (oPressed == true)) { _root.stats.money = _root.stats.money + 999999999999999; _root.cheatDisplay = "cheat activated"; cheat = true; } gPressed = true; } if (Key.isDown(79)) { oPressed = true; } } }
Frame 284
this.onEnterFrame = function () { i = 1; while (i <= 7) { _root["s" + i].slotName = _root["slot" + i].data.user; _root["s" + i].slot = i; i++; } };
Instance of Symbol 493 MovieClip "s1" in Frame 284
on (rollOver) { this.gotoAndStop(2); } on (rollOut) { this.gotoAndStop(1); }
Instance of Symbol 493 MovieClip "s2" in Frame 284
on (rollOver) { this.gotoAndStop(2); } on (rollOut) { this.gotoAndStop(1); }
Instance of Symbol 493 MovieClip "s3" in Frame 284
on (rollOver) { this.gotoAndStop(2); } on (rollOut) { this.gotoAndStop(1); }
Instance of Symbol 493 MovieClip "s4" in Frame 284
on (rollOver) { this.gotoAndStop(2); } on (rollOut) { this.gotoAndStop(1); }
Instance of Symbol 493 MovieClip "s5" in Frame 284
on (rollOver) { this.gotoAndStop(2); } on (rollOut) { this.gotoAndStop(1); }
Instance of Symbol 493 MovieClip "s6" in Frame 284
on (rollOver) { this.gotoAndStop(2); } on (rollOut) { this.gotoAndStop(1); }
Instance of Symbol 493 MovieClip "s7" in Frame 284
on (rollOver) { this.gotoAndStop(2); } on (rollOut) { this.gotoAndStop(1); }
Instance of Symbol 511 MovieClip "lowQuality" in Frame 285
on (release) { _root.lowQuality.gotoAndStop(3); _root.medQuality.gotoAndStop(1); _root.highQuality.gotoAndStop(1); _quality = "LOW"; }
Instance of Symbol 515 MovieClip "medQuality" in Frame 285
on (release) { _root.lowQuality.gotoAndStop(1); _root.medQuality.gotoAndStop(3); _root.highQuality.gotoAndStop(1); _quality = "MEDIUM"; }
Instance of Symbol 519 MovieClip "highQuality" in Frame 285
on (release) { _root.lowQuality.gotoAndStop(1); _root.medQuality.gotoAndStop(1); _root.highQuality.gotoAndStop(3); _quality = "HIGH"; }
Instance of Symbol 511 MovieClip "lowGraphicQuality" in Frame 285
on (release) { _root.lowGraphicQuality.gotoAndStop(3); _root.highGraphicQuality.gotoAndStop(1); _root.stats.graphics = 1; }
Instance of Symbol 519 MovieClip "highGraphicQuality" in Frame 285
on (release) { _root.lowGraphicQuality.gotoAndStop(1); _root.highGraphicQuality.gotoAndStop(3); _root.stats.graphics = 2; }
Frame 1794
function gotomenu() { stopAllSounds(); gotoAndStop (283); } stop();
Frame 1795
frame = "newgame"; i = 1; while (i <= 7) { _root["s" + i].slotName = _root["slot" + i].data.user; i++; } if (loaded != true) { stats.health = 165; stats.score = 0; stats.username = ""; stats.level = 1; stats.casemod = 1; upgrades.maxhealth = 165; upgrades.camera = 1; upgrades.popupBlocker = 0; } Mouse.show();
Instance of Symbol 606 MovieClip "s1" in Frame 1795
on (release) { _root.stats.username = _root.userInput; _root.stats.slot = 1; _root.gotoAndStop("upgrades"); } on (rollOver) { this.gotoAndStop(2); } on (rollOut) { this.gotoAndStop(1); }
Instance of Symbol 606 MovieClip "s2" in Frame 1795
on (release) { _root.stats.username = _root.userInput; _root.stats.slot = 2; _root.gotoAndStop("upgrades"); } on (rollOver) { this.gotoAndStop(2); } on (rollOut) { this.gotoAndStop(1); }
Instance of Symbol 606 MovieClip "s3" in Frame 1795
on (release) { _root.stats.username = _root.userInput; _root.stats.slot = 3; _root.gotoAndStop("upgrades"); } on (rollOver) { this.gotoAndStop(2); } on (rollOut) { this.gotoAndStop(1); }
Instance of Symbol 606 MovieClip "s4" in Frame 1795
on (release) { _root.stats.username = _root.userInput; _root.stats.slot = 4; _root.gotoAndStop("upgrades"); } on (rollOver) { this.gotoAndStop(2); } on (rollOut) { this.gotoAndStop(1); }
Instance of Symbol 606 MovieClip "s5" in Frame 1795
on (release) { _root.stats.username = _root.userInput; _root.stats.slot = 5; _root.gotoAndStop("upgrades"); } on (rollOver) { this.gotoAndStop(2); } on (rollOut) { this.gotoAndStop(1); }
Instance of Symbol 606 MovieClip "s6" in Frame 1795
on (release) { _root.stats.username = _root.userInput; _root.stats.slot = 6; _root.gotoAndStop("upgrades"); } on (rollOver) { this.gotoAndStop(2); } on (rollOut) { this.gotoAndStop(1); }
Instance of Symbol 606 MovieClip "s7" in Frame 1795
on (release) { _root.stats.username = _root.userInput; _root.stats.slot = 7; _root.gotoAndStop("upgrades"); } on (rollOver) { this.gotoAndStop(2); } on (rollOut) { this.gotoAndStop(1); }
Frame 1796
saveGame(); stop(); Mouse.show(); caseDisplay = 1; frame = "upgrades"; musicLoop.setVolume(50); trace(stats.health); this.onEnterFrame = function () { moneyDisplay = "$" + stats.money; };
Instance of Symbol 613 MovieClip in Frame 1796
onClipEvent (load) { display = "Camera Driver Update"; content = "Upgrades beam power and width"; item = "camera"; price = "500"; }
Instance of Symbol 613 MovieClip in Frame 1796
onClipEvent (load) { display = "Health"; content = "Upgrades maximum health"; item = "maxHealth"; price = "250"; }
Instance of Symbol 613 MovieClip in Frame 1796
onClipEvent (load) { display = "Restore Health"; content = "Restores health to maximum"; item = "restoreHealth"; price = "150"; }
Instance of Symbol 613 MovieClip in Frame 1796
onClipEvent (load) { display = "Popup Blocker"; content = "Automatically destroys popups"; item = "popupBlocker"; price = "750"; }
Instance of Symbol 613 MovieClip in Frame 1796
onClipEvent (load) { display = "DOS Attack"; content = "Slows down server for a short amount of time"; item = "dosAttack"; price = "1500"; }
Instance of Symbol 613 MovieClip in Frame 1796
onClipEvent (load) { display = "Anti-Emoticon"; content = "Automatically kills emoticons with the power of \"J\""; item = "tomfulp"; price = "1500"; }
Instance of Symbol 338 MovieClip "case" in Frame 1796
onClipEvent (enterFrame) { if ((_currentframe == 1) || (_root.stats.casemod == _currentframe)) { _root.casePrice = "$0"; _root.currentCasePrice = 0; } else { _root.casePrice = "$500"; _root.currentCasePrice = 500; } this.gotoAndStop(_root.caseDisplay); }
Instance of Symbol 632 MovieClip in Frame 1796
on (release) { if (_root.caseDisplay > 1) { _root.caseDisplay--; } }
Instance of Symbol 632 MovieClip in Frame 1796
on (release) { if (_root.caseDisplay < 6) { _root.caseDisplay++; } }
Frame 1797
function createAol(x, y) { _root.attachMovie("aoldude", "aoldude" + n, n); with (_root["aoldude" + n]) { _x = x; _y = y; } n++; } function createSmoke(x, y) { if (_root.stats.graphics != 1) { _root.attachMovie("smoke", "smoke" + n, n); with (_root["smoke" + n]) { _x = x; _y = y; } n++; } } function fireMissile(x, y) { _root.attachMovie("missile", "missile" + n, n); with (_root["missile" + n]) { _x = x; _y = y; } n++; } function createPowerup(powerup, x, y) { if (frame == "game") { _root.attachMovie(powerup, "powerup" + n, n); with (_root["powerup" + n]) { _x = x; _y = y; } n++; } } function createSP2(x, y) { if (frame == "game") { _root.attachMovie("sp2", "sp2" + n, n); with (_root["sp2" + n]) { _x = x; _y = y; } n++; } } function createSuperSpam(x, y) { if (frame == "game") { _root.attachMovie("superspam", "superspam" + n, n); with (_root["superspam" + n]) { _x = x; _y = y; } n++; } } function createMiniSpam(x, y) { if (frame == "game") { _root.attachMovie("minispam", "minispam" + n, n); with (_root["minispam" + n]) { _x = x; _y = y; } n++; } } function createEmotion(x, y) { if (frame == "game") { _root.attachMovie("emotion", "emotion" + n, n); with (_root["emotion" + n]) { _x = x; _y = y; } n++; } } function createGoodMail(x, y) { if (frame == "game") { _root.attachMovie("goodmail", "goodmail" + n, n); with (_root["goodmail" + n]) { _x = x; _y = y; } n++; } } function createGoodMail(x, y) { if (frame == "game") { _root.attachMovie("goodmail", "goodmail" + n, n); with (_root["goodmail" + n]) { _x = x; _y = y; } n++; } } function createSpyware(x, y) { if (frame == "game") { _root.attachMovie("spyware", "spyware" + n, n); with (_root["spyware" + n]) { _x = x; _y = y; } n++; } } function createVirus(x, y) { if (frame == "game") { _root.attachMovie("virus", "virus" + n, n); with (_root["virus" + n]) { _x = x; _y = y; } n++; } } function createPopup() { if (frame == "game") { _root.attachMovie("popup", "popup" + n, n); w = Stage.width; h = Stage.height; with (_root["popup" + n]) { _x = ((_width / 2) + random(w)) - (_width / 2); _y = ((_height / 2) + random(h)) - (_height / 2); } n++; } } function createMail(x, y, mail) { if (frame == "game") { _root.attachMovie("newmail" + mail, "newmail" + n, n); with (_root["newmail" + n]) { _x = x; _y = y; } n++; } } function createJunkMail(x, y) { if (frame == "game") { _root.attachMovie("mail", "junkmail" + n, n); with (_root["junkmail" + n]) { _x = x; _y = y; } n++; } } function createAdvert(x, y, advert) { if (frame == "game") { _root.attachMovie("advert" + advert, "advert" + n, n); with (_root["advert" + n]) { _x = x; _y = y; } n++; } } function createExplosion(x, y) { if (frame == "game") { _root.attachMovie("explosion", "explosion" + n, n); with (_root["explosion" + n]) { _x = x; _y = y; } n++; } } function createGreenExplosion(x, y) { if (frame == "game") { _root.attachMovie("explosion2", "explosion" + n, n); with (_root["explosion" + n]) { _x = x; _y = y; } n++; } } function fireLaser(x, y, r) { if ((frame == "game") && (stats.graphics != 1)) { if ((_root.stats.laserHeat < 100) && (!_root.reboot)) { _root.attachMovie("laser", "laser" + n, n); with (_root["laser" + n]) { _x = x; _y = y; _rotation = r; } n++; _root.stats.laserHeat = _root.stats.laserHeat + (15 - (_root.upgrades.camera / 5)); } } } function startGame() { trace("started"); _root.attachMovie("computer", "computer", n); with (_root.computer) { _x = 170; _y = 150; } n++; _root.attachMovie("gun", "gun", n); with (_root.gun) { _x = 180; _y = 95; } n++; _root.attachMovie("gamestatdisplay", "gamestatdisplay", n); with (_root.gamestatdisplay) { _x = 90; _y = 60; } n++; _root.attachMovie("accumulatedMoney", "addMoney", n); with (_root.addMoney) { _x = 270; _y = 60; } n++; _root.attachMovie("crosshair", "cursor", n); with (_root.cursor) { _x = 300; _y = 200; } n++; } createBoss = false; stop(); stopAllSounds(); song = 1 + Math.round(Math.random() * 2); _root["musicLoop" + song].start(0, 99); _root["musicLoop" + song].setVolume(100); stats.focus = 100; frame = "game"; if (stats.level < 30) { time = 20 + (stats.level - 1); } n = 1001; if ((stats.level >= 0) && (stats.level <= 9)) { _root.map.gotoAndStop(1); } else if ((stats.level >= 10) && (stats.level <= 19)) { _root.map.gotoAndStop(2); } else if ((stats.level >= 20) && (stats.level <= 30)) { _root.map.gotoAndStop(3); } _root.startGame(); Mouse.hide(); _root.stats.laserHeat = 0; _root.onEnterFrame = function () { if (_root.virusTimer > 0) { _root.virusTimer = _root.virusTimer - 0.0333333333333333; } if (_root.stats.laserHeat > 0) { _root.stats.laserHeat = _root.stats.laserHeat - 1; } if (_root.stats.laserHeat >= 100) { _root.reboot = true; } if ((Key.isDown(32) && (upgrades.dosAttack == 1)) && (stats.focus > 0)) { slowMo = true; stats.focus = stats.focus - 1; } else { slowMo = false; } if (stats.level < 30) { time = time - 0.0333333333333333; if (time <= 0) { stats.money = stats.money + 50; stats.level = stats.level + 1; stats.score = stats.score + 100; saveGame(); gotoAndStop (1798); delete _root.onEnterFrame; } } if (_root.bossdead == true) { gotoAndStop (1800); delete _root.onEnterFrame; } if (stats.health <= 0) { gotoAndStop (1799); delete _root.onEnterFrame; } moneyDisplay = "$" + _root.stats.money; if (stats.level < 30) { if (stats.currentPowerup.length > 0) { if (stats.currentPowerupLength > 0) { stats.currentPowerupLength--; } else { stats.powerup = false; stats.currentPowerup = ""; stats.currentPowerupLength = 0; } } virusF = 50 - (stats.level / 2); spywareF = 200 - (stats.level / 2); junkMailF = 250 - (stats.level / 2); popupF = 400 - (stats.level + stats.difficulty); newMailF1 = 300 - (stats.level + stats.difficulty); newMailF2 = 300 - (stats.level + stats.difficulty); smilieF = 200 - (stats.level / 2); advert1F = 250 - (stats.level / 2); advert2F = 250 - (stats.level / 2); if (random(800) == random(800)) { _root.createAol(600 + random(80), 400 + random(40)); } if (random(800) == random(800)) { _root.createSuperSpam(600 + random(80), 400 + random(40)); } if (random(350) == random(350)) { _root.createSP2(600 + random(80), 400 + random(40)); } if (random(350) == random(350)) { _root.createGoodMail(600 + random(80), 400 + random(40)); } if (random(virusF) == random(virusF)) { _root.createVirus(600 + random(80), 400 + random(40)); } if (random(smilieF) == random(smilieF)) { _root.createEmotion(600 + random(80), 400 + random(40)); } if (random(spywareF) == random(spywareF)) { _root.createSpyware(600 + random(80), 400 + random(40)); } if (random(junkMailF) == random(junkMailF)) { _root.createJunkMail(600 + random(80), 400 + random(40)); } if (stats.level > 10) { if (random(popupF) == random(popupF)) { _root.createPopup(); } } if (stats.level > 20) { if (random(newMailF1) == random(newMailF1)) { _root.createMail(300, 50 + random(350), 1); } if (random(newMailF2) == random(newMailF2)) { _root.createMail(300, 50 + random(350), 2); } } if (stats.level > 20) { if (random(advert1F) == random(advert1F)) { _root.createAdvert(600 + random(80), 400 + random(40), 1); } if (random(advert2F) == random(advert2F)) { _root.createAdvert(600 + random(80), 400 + random(40), 2); } } } else if (createBoss != true) { stopAllSounds(); _root.bossLoop.start(0, 99); _root.attachMovie("bosshealth", "bosshealth", n); with (_root.bosshealth) { _x = 105; _y = 90; } n++; _root.attachMovie("bosshealthoutline", "bosshealthoutline", n); with (_root.bosshealthoutline) { _x = 105; _y = 90; } n++; _root.attachMovie("boss", "boss", n); with (_root.boss) { _x = 555; _y = 355; } n++; createBoss = true; } _root.laserSound.setVolume(25); _root.explosionSound1.setVolume(25); _root.explosionSound2.setVolume(25); _root.musicLoop1.setVolume(100); _root.musicLoop2.setVolume(100); _root.musicLoop3.setVolume(100); trace(explosionSound1.getVolume()); };
Instance of Symbol 642 MovieClip in Frame 1797
onClipEvent (enterFrame) { with (this) { f = Math.round(1000 / (getTimer() - t)); t = getTimer(); this.fps2 = "fps: " + f; } }
Frame 1798
frame = "levelComplete"; stopAllSounds(); _root.musicLoop1.start(0, 99); levelCompleteDisplay = ("LEVEL " + (stats.level - 1)) + " COMPLETE!"; _root.saveGame(); Mouse.show();
Frame 1799
frame = "gameOver"; stopAllSounds(); _root.mainLoop1.start(0, 1); Mouse.show();
Frame 1800
delete _root.onEnterFrame; frame = "gameComplete"; Mouse.show(); stopAllSounds(); _root.mainMusic.start(0, 99);
Symbol 16 MovieClip [aoldude] Frame 1
this.onEnterFrame = function () { if (_root.frame != "game") { this.removeMovieClip(); } this.swapDepths(_y); if (_root.time < 5) { if (_root.slowMo != true) { speed = 7; } else { speed = 0.07; } } else if (_root.slowMo != true) { speed = 4; } else { speed = 0.04; } _y = (_y + ((-speed) / 2)); _x = (_x + (-speed)); if (_root.computer.hitTest(_x, _y, true)) { _root.createExplosion(_x, _y); _root.stats.health = _root.stats.health - (5 + (_root.stats.difficulty * 10)); _root.computer.tint._alpha = 100; _root.virusTimer = 4; this.removeMovieClip(); } }; this.onMouseDown = function () { if (this.hitTest(_root.cursor._x, _root.cursor._y, true) && (!_root.reboot)) { _root.createExplosion(_x, _y); _root.stats.score = _root.stats.score + 5; _root.stats.money = _root.stats.money + 7; if (random(30) == random(30)) { _root.createPowerup("health", _x + (-5 + random(10)), _y + (-5 + random(10))); } if (random(35) == random(35)) { _root.createPowerup("time", _x + (-5 + random(10)), _y + (-5 + random(10))); } this.removeMovieClip(); } };
Symbol 19 MovieClip Frame 1
var component = _parent; component.registerSkinElement(track_mc, "scrollTrack");
Symbol 20 MovieClip [FScrollBarSymbol] Frame 1
#initclip 2 FScrollBarClass = function () { if (this._height == 4) { return(undefined); } this.init(); this.minPos = (this.maxPos = (this.pageSize = (this.largeScroll = 0))); this.smallScroll = 1; this.width = (this.horizontal ? (this._width) : (this._height)); this._xscale = (this._yscale = 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.onPress = (this.downArrow_mc.onRelease = (this.downArrow_mc.onDragOut = null)); this.upArrow_mc.onPress = (this.upArrow_mc.onRelease = (this.upArrow_mc.onDragOut = null)); this.scrollTrack_mc.onPress = (this.scrollTrack_mc.onRelease = null); this.scrollTrack_mc.onDragOut = (this.scrollTrack_mc.onRollOut = null); this.scrollTrack_mc.useHandCursor = false; } else { var tmp = this.getScrollPosition(); this.upArrow_mc.gotoAndStop(1); this.downArrow_mc.gotoAndStop(1); this.upArrow_mc.onPress = (this.upArrow_mc.onDragOver = this.startUpScroller); this.upArrow_mc.onRelease = (this.upArrow_mc.onDragOut = this.stopScrolling); this.downArrow_mc.onPress = (this.downArrow_mc.onDragOver = this.startDownScroller); this.downArrow_mc.onRelease = (this.downArrow_mc.onDragOut = this.stopScrolling); this.scrollTrack_mc.onPress = (this.scrollTrack_mc.onDragOver = this.startTrackScroller); 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.onRelease = (this.scrollThumb_mc.onReleaseOutside = this.stopDragThumb); 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; tmp = Math.min(tmp, this.maxPos); this.setScrollPosition(Math.max(tmp, 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 wasEnabled = this.enable; if (enabledFlag && (!wasEnabled)) { 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) && (wasEnabled)) { 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.downArrow_mc.controller = (this.upArrow_mc.controller = this); this.upArrow_mc.useHandCursor = (this.downArrow_mc.useHandCursor = false); this.upArrow_mc._x = (this.upArrow_mc._y = 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 delt = this.smallScroll; if (inc != "one") { delt = ((this.largeScroll == 0) ? (this.pageSize) : (this.largeScroll)); } var newPos = (this.getScrollPosition() + (mode * delt)); if (newPos > this.maxPos) { newPos = this.maxPos; } else if (newPos < this.minPos) { newPos = this.minPos; } this.setScrollPosition(newPos); }; 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.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 c = this.controller; c.scrollPosition = Math.round(((c.maxPos - c.minPos) * (this._y - c.scrollTop)) / c.trackHeight) + c.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 pos = this.textField.hscroll; this.setScrollProperties(this.textField._width, 0, this.textField.maxhscroll); this.setScrollPosition(Math.min(pos, this.textField.maxhscroll)); } else { var pos = this.textField.scroll; var pageSize = (this.textField.bottomScroll - this.textField.scroll); this.setScrollProperties(pageSize, 1, this.textField.maxscroll); this.setScrollPosition(Math.min(pos, 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
Symbol 24 MovieClip [FBoundingBoxSymbol] Frame 1
var component = _parent; component.registerSkinElement(boundingBox, "background"); stop();
Symbol 24 MovieClip [FBoundingBoxSymbol] Frame 2
component.registerSkinElement(boundingBox2, "backgroundDisabled"); stop();
Symbol 28 MovieClip [FScrollPaneSymbol] Frame 1
#initclip 3 function FScrollPaneClass() { function boolToString(str) { if (str == "false") { return(false); } if (str == "true") { return(true); } return(str); } this.init(); this.width = this._width; this.height = this._height; this._xscale = (this._yscale = 100); this.contentWidth = (this.contentHeight = 0); if (this.hScroll == undefined) { this.hScroll = (this.vScroll = "auto"); this.dragContent = false; } this.offset = new Object(); this.vScroll = boolToString(this.vScroll); this.hScroll = boolToString(this.hScroll); this.attachMovie("FScrollBarSymbol", "hScrollBar_mc", 100, {hostStyle:this.styleTable}); this.hScrollBar_mc.setHorizontal(true); this.hScrollBar_mc.setSmallScroll(5); this.hScrollBar_mc.setChangeHandler("onScroll", this); this.attachMovie("FScrollBarSymbol", "vScrollBar_mc", 99, {hostStyle:this.styleTable}); this.vScrollBar_mc.setSmallScroll(5); this.vScrollBar_mc.setChangeHandler("onScroll", this); this.setSize(this.width, this.height); if (this.scrollContent != "") { this.setScrollContent(this.scrollContent); } this.setDragContent(this.dragContent); } FScrollPaneClass.prototype = new FUIComponentClass(); Object.registerClass("FScrollPaneSymbol", FScrollPaneClass); FScrollPaneClass.prototype.getScrollContent = function () { return(this.content_mc); }; FScrollPaneClass.prototype.getPaneWidth = function () { return(this.width); }; FScrollPaneClass.prototype.getPaneHeight = function () { return(this.height); }; FScrollPaneClass.prototype.getScrollPosition = function () { var xPos = ((this.hScrollBar_mc == undefined) ? 0 : (this.hScrollBar_mc.getScrollPosition())); var yPos = ((this.vScrollBar_mc == undefined) ? 0 : (this.vScrollBar_mc.getScrollPosition())); return({x:xPos, y:yPos}); }; FScrollPaneClass.prototype.setScrollContent = function (target) { this.offset.x = 0; this.offset.y = 0; if (this.content_mc != undefined) { if (target != this.content_mc) { this.content_mc._visible = false; this.content_mc.removeMovieClip(); this.content_mc.unloadMovie(); } } if (typeof(target) == "string") { this.attachMovie(target, "tmp_mc", 3); this.content_mc = this.tmp_mc; } else if (target == undefined) { this.content_mc.unloadMovie(); } else { this.content_mc = target; } this.localToGlobal(this.offset); this.content_mc._parent.globalToLocal(this.offset); this.content_mc._x = this.offset.x; this.content_mc._y = this.offset.y; var contentBounds = this.content_mc.getBounds(this); this.offset.x = -contentBounds.xMin; this.offset.y = -contentBounds.yMin; this.localToGlobal(this.offset); this.content_mc._parent.globalToLocal(this.offset); this.content_mc._x = this.offset.x; this.content_mc._y = this.offset.y; this.contentWidth = this.content_mc._width; this.contentHeight = this.content_mc._height; this.content_mc.setMask(this.mask_mc); this.setSize(this.width, this.height); }; FScrollPaneClass.prototype.setSize = function (w, h) { if (((arguments.length < 2) || (isNaN(w))) || (isNaN(h))) { return(undefined); } super.setSize(w, h); this.width = Math.max(w, 60); this.height = Math.max(h, 60); this.boundingBox_mc._xscale = 100; this.boundingBox_mc._yscale = 100; this.boundingBox_mc._width = this.width; this.boundingBox_mc._height = this.height; this.setHandV(); this.initScrollBars(); if (this.mask_mc == undefined) { this.attachMovie("FBoundingBoxSymbol", "mask_mc", 3000); } this.mask_mc._xscale = 100; this.mask_mc._yscale = 100; this.mask_mc._width = this.hWidth; this.mask_mc._height = this.vHeight; this.mask_mc._alpha = 0; }; FScrollPaneClass.prototype.setScrollPosition = function (x, y) { x = Math.max(this.hScrollBar_mc.minPos, x); x = Math.min(this.hScrollBar_mc.maxPos, x); y = Math.max(this.vScrollBar_mc.minPos, y); y = Math.min(this.vScrollBar_mc.maxPos, y); this.hScrollBar_mc.setScrollPosition(x); this.vScrollBar_mc.setScrollPosition(y); }; FScrollPaneClass.prototype.refreshPane = function () { this.setScrollContent(this.content_mc); }; FScrollPaneClass.prototype.loadScrollContent = function (url, handler, location) { this.content_mc.removeMovieClip(); this.content_mc.unloadMovie(); this.content_mc._visible = 0; this.loadContent.duplicateMovieClip("loadTemp", 3); this.dupeFlag = true; this.contentLoaded = function () { this.loadReady = false; this.content_mc = this.loadTemp; this.refreshPane(); this.executeCallBack(); }; this.setChangeHandler(handler, location); this.loadTemp.loadMovie(url); }; FScrollPaneClass.prototype.setHScroll = function (prop) { this.hScroll = prop; this.setSize(this.width, this.height); }; FScrollPaneClass.prototype.setVScroll = function (prop) { this.vScroll = prop; this.setSize(this.width, this.height); }; FScrollPaneClass.prototype.setDragContent = function (dragFlag) { if (dragFlag) { this.boundingBox_mc.useHandCursor = true; this.boundingBox_mc.onPress = function () { this._parent.startDragLoop(); }; this.boundingBox_mc.tabEnabled = false; this.boundingBox_mc.onRelease = (this.boundingBox_mc.onReleaseOutside = function () { this._parent.pressFocus(); this._parent.onMouseMove = null; }); } else { delete this.boundingBox_mc.onPress; this.boundingBox_mc.useHandCursor = false; } }; FScrollPaneClass.prototype.setSmallScroll = function (x, y) { this.hScrollBar_mc.setSmallScroll(x); this.vScrollBar_mc.setSmallScroll(y); }; FScrollPaneClass.prototype.setHandV = function () { if ((((this.contentHeight - this.height) > 2) && (this.vScroll != false)) || (this.vScroll == true)) { this.hWidth = this.width - this.vScrollBar_mc._width; } else { this.hWidth = this.width; } if ((((this.contentWidth - this.width) > 2) && (this.hScroll != false)) || (this.hScroll == true)) { this.vHeight = this.height - this.hScrollBar_mc._height; } else { this.vHeight = this.height; } }; FScrollPaneClass.prototype.startDragLoop = function () { this.tabFocused = false; this.myOnSetFocus(); this.lastX = this._xmouse; this.lastY = this._ymouse; this.onMouseMove = function () { this.scrollXMove = this.lastX - this._xmouse; this.scrollYMove = this.lastY - this._ymouse; this.scrollXMove = this.scrollXMove + this.hScrollBar_mc.getScrollPosition(); this.scrollYMove = this.scrollYMove + this.vScrollBar_mc.getScrollPosition(); this.setScrollPosition(this.scrollXMove, this.scrollYMove); if ((this.scrollXMove < this.hScrollBar_mc.maxPos) && (this.scrollXMove > this.hScrollBar_mc.minPos)) { this.lastX = this._xmouse; } if ((this.scrollYMove < this.vScrollBar_mc.maxPos) && (this.scrollYMove > this.vScrollBar_mc.minPos)) { this.lastY = this._ymouse; } this.updateAfterEvent(); }; }; FScrollPaneClass.prototype.initScrollBars = function () { this.hScrollBar_mc._y = this.height - this.hScrollBar_mc._height; this.hScrollBar_mc.setSize(this.hWidth); this.hScrollBar_mc.setScrollProperties(this.hWidth, 0, this.contentWidth - this.hWidth); this.vScrollBar_mc._visible = ((this.hWidth == this.width) ? false : true); this.vScrollBar_mc._x = this.width - this.vScrollBar_mc._width; this.vScrollBar_mc.setSize(this.vHeight); this.vScrollBar_mc.setScrollProperties(this.vHeight, 0, this.contentHeight - this.vHeight); this.hScrollBar_mc._visible = ((this.vHeight == this.height) ? false : true); }; FScrollPaneClass.prototype.onScroll = function (component) { var pos = component.getScrollPosition(); var XorY = ((component._name == "hScrollBar_mc") ? "x" : "y"); if (component._name == "hScrollBar_mc") { this.content_mc._x = (-pos) + this.offset.x; } else { this.content_mc._y = (-pos) + this.offset.y; } }; FScrollPaneClass.prototype.myOnKeyDown = function () { var posX = this.hScrollBar_mc.getScrollPosition(); var posY = this.vScrollBar_mc.getScrollPosition(); if (this.hScrollBar_mc.maxPos > this.hScrollBar_mc.minPos) { if (Key.isDown(37)) { this.setScrollPosition(posX - 3, posY); } else if (Key.isDown(39)) { this.setScrollPosition(posX + 3, posY); } } if (this.vScrollBar_mc.maxPos > this.vScrollBar_mc.minPos) { if (Key.isDown(38)) { this.setScrollPosition(posX, posY - 3); } else if (Key.isDown(40)) { this.setScrollPosition(posX, posY + 3); } else if (Key.isDown(34)) { this.setScrollPosition(posX, posY + this.vScrollBar_mc.pageSize); } else if (Key.isDown(33)) { this.setScrollPosition(posX, posY - this.vScrollBar_mc.pageSize); } } }; #endinitclip this.deadPreview._visible = false;
Instance of Symbol 20 MovieClip [FScrollBarSymbol] "scrollBarAsset" in Symbol 28 MovieClip [FScrollPaneSymbol] Frame 1
//component parameters onClipEvent (initialize) { _targetInstanceName = ""; horizontal = false; }
Instance of Symbol 25 MovieClip "loadContent" in Symbol 28 MovieClip [FScrollPaneSymbol] Frame 1
onClipEvent (load) { if (this._parent.loadReady) { this._parent.contentLoaded(); delete this._parent.loadReady; } else if (this._name != "loadContent") { this._parent.loadReady = true; } }
Symbol 29 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 42 MovieClip 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");
Symbol 52 MovieClip 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");
Symbol 61 MovieClip 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");
Symbol 62 MovieClip [UpArrow] Frame 1
stop();
Symbol 62 MovieClip [UpArrow] Frame 2
stop();
Symbol 62 MovieClip [UpArrow] Frame 3
stop();
Symbol 69 MovieClip 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");
Symbol 76 MovieClip 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");
Symbol 81 MovieClip 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");
Symbol 82 MovieClip [ScrollThumb] Frame 1
stop();
Symbol 90 MovieClip 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");
Symbol 98 MovieClip 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");
Symbol 106 MovieClip 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");
Symbol 107 MovieClip [DownArrow] Frame 1
stop();
Symbol 107 MovieClip [DownArrow] Frame 2
stop();
Symbol 107 MovieClip [DownArrow] Frame 3
stop();
Symbol 109 MovieClip [minispam] Frame 1
this.onEnterFrame = function () { if (_root.frame != "game") { this.removeMovieClip(); } this.swapDepths(_y); if (_root.time < 5) { if (_root.slowMo != true) { speed = 4; } else { speed = 0.04; } } else if (_root.slowMo != true) { speed = 2; } else { speed = 0.02; } _y = (_y + ((-speed) / 2)); _x = (_x + (-speed)); if (_root.computer.hitTest(_x, _y, true)) { _root.createExplosion(_x, _y); _root.stats.health = _root.stats.health - (5 + (_root.stats.difficulty * 10)); _root.computer.tint._alpha = 100; this.removeMovieClip(); } }; this.onMouseDown = function () { if (this.hitTest(_root.cursor._x, _root.cursor._y, true) && (!_root.reboot)) { _root.createExplosion(_x, _y); _root.stats.score = _root.stats.score + 5; _root.stats.money = _root.stats.money + 7; if (random(30) == random(30)) { _root.createPowerup("health", _x + (-5 + random(10)), _y + (-5 + random(10))); } if (random(35) == random(35)) { _root.createPowerup("time", _x + (-5 + random(10)), _y + (-5 + random(10))); } this.removeMovieClip(); } };
Symbol 111 MovieClip [superspam] Frame 1
this.onEnterFrame = function () { if (_root.frame != "game") { this.removeMovieClip(); } this.swapDepths(_y); if (_root.time < 5) { if (_root.slowMo != true) { speed = 4; } else { speed = 0.04; } } else if (_root.slowMo != true) { speed = 2; } else { speed = 0.02; } _y = (_y + ((-speed) / 2)); _x = (_x + (-speed)); if (_root.computer.hitTest(_x, _y, true)) { _root.createExplosion(_x, _y); _root.stats.health = _root.stats.health - (5 + (_root.stats.difficulty * 10)); _root.computer.tint._alpha = 100; this.removeMovieClip(); } }; this.onMouseDown = function () { if (this.hitTest(_root.cursor._x, _root.cursor._y, true) && (!_root.reboot)) { _root.createExplosion(_x, _y); _root.stats.score = _root.stats.score + 5; _root.stats.money = _root.stats.money + 7; if (random(30) == random(30)) { _root.createPowerup("health", _x + (-5 + random(10)), _y + (-5 + random(10))); } if (random(35) == random(35)) { _root.createPowerup("time", _x + (-5 + random(10)), _y + (-5 + random(10))); } i = 1; while (i <= 3) { _root.createMiniSpam(_x + (-50 + random(100)), _y + (-50 + random(100))); i++; } this.removeMovieClip(); } };
Symbol 113 MovieClip [mail] Frame 1
this.onEnterFrame = function () { if (_root.frame != "game") { this.removeMovieClip(); } this.swapDepths(_y); if (_root.time < 5) { if (_root.slowMo != true) { speed = 4; } else { speed = 0.04; } } else if (_root.slowMo != true) { speed = 2; } else { speed = 0.02; } _y = (_y + ((-speed) / 2)); _x = (_x + (-speed)); if (_root.computer.hitTest(_x, _y, true)) { _root.createExplosion(_x, _y); _root.stats.health = _root.stats.health - (5 + (_root.stats.difficulty * 10)); _root.computer.tint._alpha = 100; this.removeMovieClip(); } }; this.onMouseDown = function () { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (!_root.reboot)) { _root.createExplosion(_x, _y); _root.stats.score = _root.stats.score + 5; _root.stats.money = _root.stats.money + 7; if (random(30) == random(30)) { _root.createPowerup("health", _x + (-5 + random(10)), _y + (-5 + random(10))); } if (random(35) == random(35)) { _root.createPowerup("time", _x + (-5 + random(10)), _y + (-5 + random(10))); } this.removeMovieClip(); } };
Symbol 124 MovieClip [emotion] Frame 1
this.gotoAndStop(1 + Math.round(Math.random() * 4)); this.onEnterFrame = function () { if (_root.frame != "game") { this.removeMovieClip(); } this.swapDepths(_y); if ((_root.upgrades.tomfulp == 1) && (gone != true)) { this.gotoAndPlay(5); gone = true; } if (_root.time < 5) { if (_root.slowMo != true) { speed = speed + ((-(speed - (3 + (_root.stats.difficulty * 2)))) / 4); } else { speed = speed + ((-(speed - (0.03 + (_root.stats.difficulty * 2)))) / 4); } } else if (_root.slowMo != true) { speed = speed + ((-(speed - (1.5 + (_root.stats.difficulty * 2)))) / 4); } else { speed = speed + ((-(speed - (0.015 + (_root.stats.difficulty * 2)))) / 4); } _y = (_y + ((-speed) / 2)); _x = (_x + (-speed)); if (_root.computer.hitTest(_x, _y, true)) { _root.createExplosion(_x, _y); _root.stats.health = _root.stats.health - (5 + (_root.stats.difficulty * 10)); _root.computer.tint._alpha = 100; this.removeMovieClip(); } }; this.onMouseDown = function () { if ((this.hitTest(_root.cursor._x, _root.cursor._y, true) && (_root.laserHeat < 100)) && (!_root.reboot)) { _root.createExplosion(_x, _y); _root.stats.score = _root.stats.score + 5; _root.stats.money = _root.stats.money + 7; if (random(30) == random(30)) { _root.createPowerup("health", _x + (-5 + random(10)), _y + (-5 + random(10))); } if (random(35) == random(35)) { _root.createPowerup("time", _x + (-5 + random(10)), _y + (-5 + random(10))); } this.removeMovieClip(); } };
Symbol 124 MovieClip [emotion] Frame 60
_root.createExplosion(_x, _y); this.removeMovieClip();
Symbol 126 MovieClip [missile] Frame 1
this.onEnterFrame = function () { this.swapDepths(_y); xSpeed = xSpeed - 1; _x = (_x + xSpeed); _y = (_y + ((-(_y - _root.computer._y)) / 4)); if (_root.computer.hitTest(_x, _y, true)) { _root.stats.health = _root.stats.health - (5 + (_root.bossN * 2)); _root.createExplosion(_x, _y); this.removeMovieClip(); } };
Symbol 138 MovieClip Frame 1
this.onEnterFrame = function () { _alpha = (_alpha + ((-(_alpha - 0)) / 4)); };
Symbol 140 MovieClip Frame 1
this.onEnterFrame = function () { if (_parent.sheildUp == true) { _alpha = (25 + random(10)); } else { _alpha = (_alpha + ((-(_alpha - 0)) / 4)); } };
Symbol 141 MovieClip [boss] Frame 1
sheildUp = true; health = 100; this.onEnterFrame = function () { if (_root.frame != "game") { this.removeMovieClip(); } if (sheildUp == false) { if (sN > 25) { sN = 0; sheildUp = true; } else { sN++; } } this._xscale = 100 + (_root.bossN * 25); this._yscale = 100 + (_root.bossN * 25); this.swapDepths(_y); if (stopWalking != true) { r = 150; _x = (_x - (2 + (bossN * 2))); _y = (_y - (1 + (bossN * 2))); this.legs.play(); } if (n > (100 - (bossN * 2))) { r = 35; stopWalking = true; this.legs.gotoAndStop(1); } else { n++; } if ((random(r) == random(r)) && (exploding != true)) { sheildUp = false; x1 = _x + this.turretone._x; y1 = _y + this.turretone._y; x2 = _x + this.turrettwo._x; y2 = _y + this.turrettwo._y; r2 = 1 + Math.round(Math.random() * 1); if (r2 == 1) { _root.fireMissile(x1, y1); } else { _root.fireMissile(x2, y2); } } if (health <= 0) { if (i > 15) { if (_root.bossN == 3) { _root.bossdead = true; this.removeMovieClip(); } else { _x = 600; _y = 350; stopWalking = false; _root.bossN++; health = 100; n = 0; i = 0; } } if (n > 2) { _root.createExplosion(_x + ((-random(50)) + random(100)), _y + ((-random(75)) + random(150))); _root.createGreenExplosion(_x + ((-random(50)) + random(100)), _y + ((-random(75)) + random(150))); exploding = true; i++; n = 0; } else { n++; exploding = false; } } }; this.onMouseDown = function () { if ((this.hitTest(_root._xmouse, _root._ymouse, true) && (sheildUp == false)) && (!_root.reboot)) { health = health - (5 - _root.bossN); this.damage._alpha = 100; } };
Symbol 143 MovieClip [bosshealthoutline] Frame 1
this.onEnterFrame = function () { if (_root.bossdead == true) { this.removeMovieClip(); } };
Symbol 145 MovieClip [bosshealth] Frame 1
this.onEnterFrame = function () { _xscale = (_xscale + ((-(_xscale - _root.boss.health)) / 4)); if (_xscale < 0) { _xscale = 0; } if (_root.bossdead == true) { this.removeMovieClip(); } };
Symbol 149 MovieClip [newmail2] Frame 1
_xscale = 0; _yscale = 0; _alpha = 0; this.gotoAndStop(1 + random(3)); this.onEnterFrame = function () { if (_root.upgrades.popupBlocker == 1) { if (n > 15) { _root.createExplosion(_x, _y); _root.stats.score = _root.stats.score + 5; this.removeMovieClip(); } else { n++; } } _xscale = (_xscale + ((-(_xscale - 100)) / 4)); _yscale = (_yscale + ((-(_yscale - 100)) / 4)); _alpha = _xscale; if (_parent.frame != "game") { this.removeMovieClip(); } }; this.onMouseDown = function () { if (this.hitTest(_root.cursor._x, _root.cursor._y, true) && (!_root.reboot)) { _root.createExplosion(_x, _y); _root.killCounter++; _root.score = _root.score + 5; this.removeMovieClip(); } };
Symbol 153 MovieClip [newmail1] Frame 1
_xscale = 0; _yscale = 0; _alpha = 0; this.gotoAndStop(1 + random(3)); this.onEnterFrame = function () { if (_root.upgrades.popupBlocker == 1) { if (n > 15) { _root.createExplosion(_x, _y); _root.stats.score = _root.stats.score + 5; this.removeMovieClip(); } else { n++; } } _xscale = (_xscale + ((-(_xscale - 100)) / 4)); _yscale = (_yscale + ((-(_yscale - 100)) / 4)); _alpha = _xscale; if (_parent.frame != "game") { this.removeMovieClip(); } }; this.onMouseDown = function () { if (this.hitTest(_root.cursor._x, _root.cursor._y, true) && (!_root.reboot)) { _root.createExplosion(_x, _y); _root.killCounter++; _root.score = _root.score + 5; this.removeMovieClip(); } };
Symbol 158 MovieClip Frame 1
this.onEnterFrame = function () { _alpha = (_alpha + ((-(_alpha - 0)) / 8)); _xscale = _alpha; _yscale = _alpha; _rotation = (_rotation + 15); };
Symbol 162 MovieClip [advert2] Frame 1
this.onEnterFrame = function () { if (healthAdded != true) { health = 100; healthAdded = true; } if (_root.frame != "game") { this.removeMovieClip(); } this.swapDepths(_y); if (_root.time < 5) { if (_root.slowMo != true) { speed = 1 + (_root.stats.difficulty * 2); } else { speed = 0.01 + (_root.stats.difficulty * 2); } } else if (_root.slowMo != true) { speed = 0.5 + (_root.stats.difficulty * 2); } else { speed = 0.005 + (_root.stats.difficulty * 2); } _y = (_y + ((-speed) / 2)); _x = (_x + (-speed)); if (_root.computer.hitTest(_x, _y, true)) { _root.createExplosion(_x, _y); _root.stats.health = _root.stats.health - (5 + (_root.stats.difficulty * 10)); _root.computer.tint._alpha = 100; _root.stats.money = _root.stats.money - 5; this.removeMovieClip(); } if (health <= 0) { _root.createExplosion(_x, _y); _root.stats.score = _root.stats.score + 5; _root.stats.money = _root.stats.money + 7; if (random(30) == random(30)) { _root.createPowerup("health", _x + (-5 + random(10)), _y + (-5 + random(10))); } if (random(35) == random(35)) { _root.createPowerup("time", _x + (-5 + random(10)), _y + (-5 + random(10))); } this.removeMovieClip(); } }; this.onMouseDown = function () { if ((this.hitTest(_root.cursor._x, _root.cursor._y, true) && (_root.laserHeat < 100)) && (!_root.reboot)) { health = health - 50; this.damage._alpha = 100; } };
Symbol 169 MovieClip [advert1] Frame 1
this.onEnterFrame = function () { if (healthAdded != true) { health = 100; healthAdded = true; } if (_root.frame != "game") { this.removeMovieClip(); } this.swapDepths(_y); if (_root.time < 5) { if (_root.slowMo != true) { speed = 1 + (_root.stats.difficulty * 2); } else { speed = 0.01 + (_root.stats.difficulty * 2); } } else if (_root.slowMo != true) { speed = 0.5 + (_root.stats.difficulty * 2); } else { speed = 0.005 + (_root.stats.difficulty * 2); } _y = (_y + ((-speed) / 2)); _x = (_x + (-speed)); if (_root.computer.hitTest(_x, _y, true)) { _root.createExplosion(_x, _y); _root.stats.health = _root.stats.health - (5 + (_root.stats.difficulty * 10)); _root.computer.tint._alpha = 100; _root.stats.money = _root.stats.money - 5; this.removeMovieClip(); } if (health <= 0) { _root.createExplosion(_x, _y); _root.stats.score = _root.stats.score + 5; _root.stats.money = _root.stats.money + 7; if (random(30) == random(30)) { _root.createPowerup("health", _x + (-5 + random(10)), _y + (-5 + random(10))); } if (random(35) == random(35)) { _root.createPowerup("time", _x + (-5 + random(10)), _y + (-5 + random(10))); } this.removeMovieClip(); } }; this.onMouseDown = function () { if ((this.hitTest(_root.cursor._x, _root.cursor._y, true) && (_root.laserHeat < 100)) && (!_root.reboot)) { health = health - 50; this.damage._alpha = 100; } };
Symbol 184 MovieClip [explosion2] Frame 1
this.swapDepths(_y); _root.createSmoke(_x + (-10 + random(20)), _y + (-10 + random(20))); _root.createSmoke(_x + (-10 + random(20)), _y + (-10 + random(20))); _root.createSmoke(_x + (-10 + random(20)), _y + (-10 + random(20)));
Symbol 184 MovieClip [explosion2] Frame 15
this.removeMovieClip();
Symbol 189 MovieClip [crosshair] Frame 1
this.onEnterFrame = function () { if (_root.reboot != true) { gotoAndStop (1); } else { gotoAndStop (2); } if (_parent.frame != "game") { this.removeMovieClip(); } this.swapDepths(_root.n + 999); if (_root.virusTimer > 0) { xSpeed = (-(_x - (Stage.width - _root._xmouse))) / 1.1; ySpeed = (-(_y - (Stage.height - _root._ymouse))) / 1.1; } else { xSpeed = (-(_x - _root._xmouse)) / 1.1; ySpeed = (-(_y - _root._ymouse)) / 1.1; } lineDistance = Math.abs(xSpeed + ySpeed); this.top._y = -10 + (-lineDistance); this.bottom._y = 10 + lineDistance; this.left._x = -10 + (-lineDistance); this.right._x = 10 + lineDistance; _x = (_x + xSpeed); _y = (_y + ySpeed); }; this.onMouseDown = function () { _root.shootGun(); };
Symbol 209 MovieClip [explosion] Frame 1
this.swapDepths(_y); _root.createSmoke(_x + (-10 + random(20)), _y + (-10 + random(20))); _root.createSmoke(_x + (-10 + random(20)), _y + (-10 + random(20))); _root.createSmoke(_x + (-10 + random(20)), _y + (-10 + random(20)));
Symbol 209 MovieClip [explosion] Frame 20
this.removeMovieClip();
Symbol 213 MovieClip [laser] Frame 1
this._yscale = 100 + (_root.upgrades.camera * 2);
Symbol 213 MovieClip [laser] Frame 10
this.removeMovieClip();
Symbol 315 MovieClip [gun] Frame 1
this.onEnterFrame = function () { if (_parent.frame != "game") { this.removeMovieClip(); } this.swapDepths(_root.n + 998); frame = Math.atan2(this._y - _root.cursor._y, this._x - _root.cursor._x) * 57.2957795130823; r = Math.atan2(_root.cursor._y - _y, _root.cursor._x - _x) * 57.2957795130823; frame = Math.floor((frame + 180) * 0.277777777777778); this.gotoAndStop(Math.round(frame)); this.tint._alpha = this.tint._alpha + ((-this.tint._alpha) / 5); }; this.onMouseDown = function () { this.tint._alpha = 100; x = _x; y = _y; _root.fireLaser(x, y, r); };
Symbol 323 MovieClip [virus] Frame 1
this.onEnterFrame = function () { if (_root.frame != "game") { this.removeMovieClip(); } this.swapDepths(_y); if (_root.time < 5) { if (_root.slowMo != true) { speed = 1 + (_root.stats.difficulty * 2); } else { speed = 0.02 + (_root.stats.difficulty * 2); } } else if (_root.slowMo != true) { speed = 0.5 + (_root.stats.difficulty * 2); } else { speed = 0.005 + (_root.stats.difficulty * 2); } _y = (_y + ((-speed) / 2)); _x = (_x + (-speed)); if (_root.computer.hitTest(_x, _y, true)) { _root.createExplosion(_x, _y); _root.stats.health = _root.stats.health - (5 + (_root.stats.difficulty * 10)); _root.computer.tint._alpha = 100; this.removeMovieClip(); } }; this.onMouseDown = function () { if ((this.hitTest(_root.cursor._x, _root.cursor._y, true) && (_root.laserHeat < 100)) && (!_root.reboot)) { _root.createExplosion(_x, _y); _root.stats.score = _root.stats.score + 5; _root.stats.money = _root.stats.money + 7; if (random(30) == random(30)) { _root.createPowerup("health", _x + (-5 + random(10)), _y + (-5 + random(10))); } if (random(35) == random(35)) { _root.createPowerup("time", _x + (-5 + random(10)), _y + (-5 + random(10))); } this.removeMovieClip(); } };
Symbol 331 MovieClip Frame 1
this.onEnterFrame = function () { if ((_root.reboot == true) && (_currentframe < 40)) { gotoAndPlay (41); } };
Symbol 331 MovieClip Frame 40
gotoAndPlay (1);
Symbol 331 MovieClip Frame 150
_root.reboot = false;
Symbol 338 MovieClip Frame 1
stop();
Symbol 341 MovieClip [computer] Frame 1
this.onEnterFrame = function () { if (_parent.frame != "game") { this.removeMovieClip(); } this.swapDepths(_y); this.tint._alpha = this.tint._alpha + ((-(this.tint._alpha - 0)) / 8); };
Instance of Symbol 338 MovieClip in Symbol 341 MovieClip [computer] Frame 1
onClipEvent (load) { this.gotoAndStop(_root.stats.casemod); }
Symbol 359 MovieClip Frame 1
this.onEnterFrame = function () { if (this._xscale > 100) { this._xscale = 100; } };
Symbol 361 MovieClip [gamestatdisplay] Frame 1
this.healthbaroutline._width = _root.upgrades.maxhealth; this.levelDisplay = "LEVEL " + _root.stats.level; this.onEnterFrame = function () { this.virusTimerDisplay = Math.round(_root.virusTimer); if (_parent.frame != "game") { this.removeMovieClip(); } this.swapDepths(_root.n + 99999); this.score = _root.stats.score; this.time = Math.round(_root.time); this.heatbar._xscale = _root.stats.laserHeat; this.powerupbar._xscale = _root.stats.currentPowerupLength / 2.5; this.focusbar._xscale = this.focusbar._xscale + ((-(this.focusbar._xscale - _root.stats.focus)) / 4); this.healthbar._width = this.healthbar._width + ((-(this.healthbar._width - _root.stats.health)) / 4); if (_root.upgrades.dosAttack != 1) { this.focusbar._visible = false; this.focusoutline._visible = false; } if (_root.stats.powerup == true) { this.powerupbar._visible = true; this.powerupoutline._visible = true; } else { this.powerupbar._visible = false; this.powerupoutline._visible = false; } };
Symbol 365 MovieClip [accumulatedMoney] Frame 1
stop(); this.onEnterFrame = function () { if (_parent.frame != "game") { this.removeMovieClip(); } this.moneytext.money = "$" + amount; if (amount > 0) { play(); } };
Symbol 365 MovieClip [accumulatedMoney] Frame 35
amount = ""; money = ""; gotoAndStop (1);
Symbol 368 MovieClip [spyware] Frame 1
this.onEnterFrame = function () { if (_root.frame != "game") { this.removeMovieClip(); } this.swapDepths(_y); if (_root.time < 5) { if (_root.slowMo != true) { speed = 1 + (_root.stats.difficulty * 2); } else { speed = 0.02 + (_root.stats.difficulty * 2); } } else if (_root.slowMo != true) { speed = 0.5 + (_root.stats.difficulty * 2); } else { speed = 0.005 + (_root.stats.difficulty * 2); } _y = (_y + ((-speed) / 2)); _x = (_x + (-speed)); if (_root.computer.hitTest(_x, _y, true)) { _root.createGreenExplosion(_x, _y); _root.stats.health = _root.stats.health - (5 + (_root.stats.difficulty * 10)); _root.computer.tint._alpha = 100; this.removeMovieClip(); } }; this.onMouseDown = function () { if ((this.hitTest(_root.cursor._x, _root.cursor._y, true) && (_root.laserHeat < 100)) && (!_root.reboot)) { _root.createGreenExplosion(_x, _y); _root.stats.score = _root.stats.score + 5; _root.stats.money = _root.stats.money + 7; if (random(30) == random(30)) { _root.createPowerup("health", _x + (-5 + random(10)), _y + (-5 + random(10))); } if (random(35) == random(35)) { _root.createPowerup("time", _x + (-5 + random(10)), _y + (-5 + random(10))); } this.removeMovieClip(); } };
Symbol 378 MovieClip Frame 1
gotoAndStop(1 + random(4));
Symbol 380 MovieClip Frame 1
this.onEnterFrame = function () { if (_root.upgrades.popupBlocker >= 1) { this._visible = true; this._rotation = this._rotation - 5; } else { this._visible = false; } };
Symbol 383 MovieClip [popup] Frame 1
_xscale = 0; _yscale = 0; this.gotoAndStop(1 + random(3)); this.onEnterFrame = function () { if (_root.upgrades.popupBlocker == 1) { if (n > 15) { _root.createExplosion(_x, _y); _root.stats.score = _root.stats.score + 5; _root.stats.money = _root.stats.money + 5; this.removeMovieClip(); } else { n++; } } _xscale = (_xscale + ((-(_xscale - 100)) / 4)); _yscale = (_yscale + ((-(_yscale - 100)) / 4)); if (_parent.frame != "game") { this.removeMovieClip(); } }; this.onMouseDown = function () { if (this.hitTest(_root.cursor._x, _root.cursor._y, true) && (!_root.reboot)) { _root.createExplosion(_x, _y); _root.score = _root.score + 5; _root.stats.money = _root.stats.money + 5; this.removeMovieClip(); } };
Symbol 385 MovieClip [time] Frame 1
_x = (_x + (-25 + random(50))); _y = (_y + (-25 + random(50))); this.onEnterFrame = function () { if (_root.frame != "game") { this.removeMovieClip(); } }; this.onRelease = function () { _root.time = _root.time - 5; this.removeMovieClip(); };
Symbol 387 MovieClip [health] Frame 1
this.onEnterFrame = function () { if (_root.frame != "game") { this.removeMovieClip(); } }; this.onRelease = function () { if (_root.stats.health < (_root.upgrades.maxhealth - 15)) { _root.stats.health = _root.stats.health + 15; } this.removeMovieClip(); };
Symbol 389 MovieClip [j] Frame 1
this.onRelease = function () { _root.stats.powerup = true; _root.stats.currentPowerup = "tomfulp"; _root.stats.currentPowerupLength = 250; this.removeMovieClip(); };
Symbol 398 MovieClip [goodmail] Frame 1
this.onEnterFrame = function () { if (_root.frame != "game") { this.removeMovieClip(); } this.swapDepths(_y); if (_root.time < 5) { if (_root.slowMo != true) { speed = 4; } else { speed = 0.04; } } else if (_root.slowMo != true) { speed = 2; } else { speed = 0.02; } _y = (_y + ((-speed) / 2)); _x = (_x + (-speed)); if (_root.computer.hitTest(_x, _y, true)) { _root.stats.money = _root.stats.money + 20; this.removeMovieClip(); } }; this.onMouseDown = function () { if (this.hitTest(_root._xmouse, _root._ymouse, true) && (!_root.reboot)) { _root.createExplosion(_x, _y); _root.stats.score = _root.stats.score - 10; _root.stats.health = _root.stats.health - 5; if (random(30) == random(30)) { _root.createPowerup("health", _x + (-5 + random(10)), _y + (-5 + random(10))); } if (random(35) == random(35)) { _root.createPowerup("time", _x + (-5 + random(10)), _y + (-5 + random(10))); } this.removeMovieClip(); } };
Symbol 400 MovieClip [sp2] Frame 1
this.onEnterFrame = function () { if (_root.frame != "game") { this.removeMovieClip(); } this.swapDepths(_y); if (_root.time < 5) { if (_root.slowMo != true) { speed = 4; } else { speed = 0.04; } } else if (_root.slowMo != true) { speed = 2; } else { speed = 0.02; } _y = (_y + ((-speed) / 2)); _x = (_x + (-speed)); if (_root.computer.hitTest(_x, _y, true)) { _root.createExplosion(_x, _y); _root.stats.health = _root.stats.health - (5 + (_root.stats.difficulty * 10)); _root.computer.tint._alpha = 100; this.removeMovieClip(); } }; this.onMouseDown = function () { if (this.hitTest(_root.cursor._x, _root.cursor._y, true) && (!_root.reboot)) { _root.createExplosion(_x, _y); _root.stats.score = _root.stats.score + 5; _root.stats.money = _root.stats.money + 7; if (random(30) == random(30)) { _root.createPowerup("health", _x + (-5 + random(10)), _y + (-5 + random(10))); } if (random(35) == random(35)) { _root.createPowerup("time", _x + (-5 + random(10)), _y + (-5 + random(10))); } this.removeMovieClip(); } };
Symbol 402 MovieClip [smoke] Frame 1
_rotation = (-180 + random(360)); this.onEnterFrame = function () { _xscale = (_xscale + 5); _yscale = (_yscale + 5); _alpha = (_alpha - 5); if (_alpha <= 0) { this.removeMovieClip(); } };
Instance of Symbol 409 MovieClip "paddle1" in Symbol 414 MovieClip Frame 1
onClipEvent (load) { startX = _x; startY = _y; } onClipEvent (enterFrame) { if (Key.isDown(38)) { _y = (_y - 5); } else if (Key.isDown(40)) { _y = (_y + 5); } if (this.hitTest(_parent.ball)) { _parent.ball.xSpeed = -_parent.ball.xSpeed; _parent.ball.ySpeed = (_parent.ball._y - _y) / 4; } }
Instance of Symbol 411 MovieClip "ball" in Symbol 414 MovieClip Frame 1
onClipEvent (load) { xSpeed = -10; ySpeed = 0; startX = _x; startY = _y; } onClipEvent (enterFrame) { _x = (_x + xSpeed); _y = (_y + ySpeed); if (_y > 363) { ySpeed = ySpeed + ((-ySpeed) * 2); } else if (_y < 37) { ySpeed = ySpeed + ((-ySpeed) * 2); } if (_x > 600) { _parent.score1 = _parent.score1 + 1; xSpeed = 10; ySpeed = 0; _parent.paddle1._x = _parent.paddle1.startX; _parent.paddle1._y = _parent.paddle1.starty; _parent.paddle2._x = _parent.paddle2.startX; _parent.paddle2._y = _parent.paddle2.starty; _x = startX; _y = startY; } else if (_x < 0) { _parent.score2 = _parent.score2 + 1; xSpeed = -10; ySpeed = 0; _parent.paddle1._x = _parent.paddle1.startX; _parent.paddle1._y = _parent.paddle1.starty; _parent.paddle2._x = _parent.paddle2.startX; _parent.paddle2._y = _parent.paddle2.starty; _x = startX; _y = startY; } }
Instance of Symbol 409 MovieClip "paddle2" in Symbol 414 MovieClip Frame 1
onClipEvent (load) { startX = _x; startY = _y; } onClipEvent (enterFrame) { if (_parent.ball._y > _y) { _y = (_y + 2); } else if (_parent.ball._y < _y) { _y = (_y - 2); } if (this.hitTest(_parent.ball)) { _parent.ball.xSpeed = -_parent.ball.xSpeed; _parent.ball.ySpeed = (_parent.ball._y - _y) / 4; } }
Symbol 423 MovieClip Frame 1
this.onEnterFrame = function () { _alpha = (70 + random(30)); };
Symbol 425 Button
on (press) { getURL ("http://www.pldmstudios.com"); }
Symbol 428 Button
on (press) { getURL ("http://www.gamesofgondor.com"); }
Symbol 437 Button
on (release) { play(); }
Symbol 456 MovieClip Frame 185
stop();
Instance of Symbol 405 MovieClip in Symbol 459 MovieClip Frame 1
onClipEvent (enterFrame) { this._alpha = random(20); }
Symbol 471 Button
on (release) { stopAllSounds(); gotoAndPlay (294); }
Symbol 474 Button
on (release) { gotoAndStop (284); }
Symbol 477 Button
on (release) { gotoAndStop (1795); }
Symbol 480 Button
on (release) { gotoAndStop (285); }
Symbol 482 Button
on (release) { getURL ("http://www.gamesofgondor.com"); }
Symbol 484 Button
on (release) { gotoAndStop (286); }
Symbol 493 MovieClip Frame 1
this.onEnterFrame = function () { if ((slotName.length > 0) && (slotName != "EMPTY SLOT")) { _alpha = 100; this.enabled = true; } else { slotName = "EMPTY SLOT"; _alpha = 25; this.enabled = false; } }; this.onRelease = function () { _root.stats.slot = slot; _root.loadGame(slot); _root.gotoAndStop("upgrades"); }; stop();
Symbol 498 Button
on (release) { gotoAndStop (283); }
Symbol 500 Button
on (release) { clearAllSlots(); }
Symbol 511 MovieClip Frame 1
stop();
Symbol 515 MovieClip Frame 1
stop();
Symbol 519 MovieClip Frame 1
stop();
Symbol 522 MovieClip Frame 1
this.onEnterFrame = function () { if (_root.stats.difficulty == 1) { this.gotoAndStop(2); } else { this.gotoAndStop(1); } }; this.onRelease = function () { _root.stats.difficulty = 1; };
Symbol 525 MovieClip Frame 1
this.onEnterFrame = function () { if (_root.stats.difficulty == 2) { this.gotoAndStop(2); } else { this.gotoAndStop(1); } }; this.onRelease = function () { _root.stats.difficulty = 2; };
Symbol 528 MovieClip Frame 1
this.onEnterFrame = function () { if (_root.stats.difficulty == 3) { this.gotoAndStop(2); } else { this.gotoAndStop(1); } }; this.onRelease = function () { _root.stats.difficulty = 3; };
Symbol 536 Button
on (release) { gotoAndStop (287); }
Symbol 539 Button
on (release) { gotoAndStop (283); }
Symbol 543 Button
on (release) { gotoAndStop (286); }
Symbol 544 Button
on (release) { gotoAndStop (288); }
Symbol 549 Button
on (release) { gotoAndStop (287); }
Symbol 550 Button
on (release) { gotoAndStop (289); }
Symbol 558 Button
on (release) { gotoAndStop (288); }
Symbol 559 Button
on (release) { gotoAndStop (290); }
Symbol 564 Button
on (release) { gotoAndStop (291); }
Symbol 570 Button
on (release) { gotoAndStop (290); }
Symbol 571 Button
on (release) { gotoAndStop (292); }
Symbol 576 Button
on (release) { gotoAndStop (291); }
Symbol 577 Button
on (release) { gotoAndStop (293); }
Symbol 584 Button
on (release) { gotoAndStop (292); }
Symbol 594 Button
on (release) { _root.musicLoop.setVolume(50); _root.gotomenu(); }
Symbol 606 MovieClip Frame 1
stop();
Symbol 607 Button
on (release) { gotoAndStop (283); }
Symbol 613 MovieClip Frame 1
this.onMouseMove = function () { if (display.length > 0) { if (this.hitTest(_root._xmouse, _root._ymouse)) { _root.tooltip.display = display; _root.tooltip.content = content; _root.tooltip.price = price; tooltip = true; } else if (tooltip == true) { _root.tooltip.display = ""; tooltip = false; } } }; this.onEnterFrame = function () { if (display.length > 0) { if (item == "popupBlocker") { if (_root.upgrades[item] < 1) { currentLevel = "Popup Blocker"; } else { currentLevel = "Purchased"; } } else if (item == "maxHealth") { currentLevel = "Health " + _root.upgrades[item]; } else if (item == "restoreHealth") { currentLevel = "RestoreHealth"; } else if (item == "dosAttack") { if (_root.upgrades[item] < 1) { currentLevel = "DOS Attack"; } else { currentLevel = "Purchased"; } } else if (item == "tomfulp") { if (_root.upgrades[item] < 1) { currentLevel = "Anti-Emotion"; } else { currentLevel = "Purchased"; } } else { currentLevel = "Level " + _root.upgrades[item]; } _alpha = 100; } else { _alpha = 25; } this.tint._alpha = this.tint._alpha + ((-(this.tint._alpha - 0)) / 4); }; this.onMouseDown = function () { if (this.hitTest(_root._xmouse, _root._ymouse, true)) { if (_root.stats.money >= price) { if (item == "popupBlocker") { if (_root.upgrades[item] < 1) { _root.upgrades[item] = _root.upgrades[item] + 1; _root.stats.money = _root.stats.money - price; } } else if (item == "dosAttack") { if (_root.upgrades[item] < 1) { _root.upgrades[item] = _root.upgrades[item] + 1; _root.stats.money = _root.stats.money - price; } } else if (item == "tomfulp") { if (_root.upgrades[item] < 1) { _root.upgrades[item] = _root.upgrades[item] + 1; _root.stats.money = _root.stats.money - price; } } else if (item == "maxHealth") { if (_root.upgrades[item] < 500) { _root.upgrades[item] = _root.upgrades[item] + 5; _root.stats.health = _root.stats.health + 5; _root.stats.money = _root.stats.money - price; } } else if (item == "restoreHealth") { _root.stats.health = _root.upgrades.maxhealth; _root.stats.money = _root.stats.money - price; } else if (_root.upgrades[item] < 50) { _root.upgrades[item] = _root.upgrades[item] + 1; _root.stats.money = _root.stats.money - price; } } this.tint._alpha = 100; } };
Symbol 619 MovieClip Frame 1
_alpha = 0; this.onEnterFrame = function () { if (display.length > 0) { tooltip.htmlText = (((("<u>" + display) + " $") + price) + "</font></u>\n") + content; _alpha = (_alpha + ((-(_alpha - 100)) / 6)); } else { _alpha = (_alpha + ((-(_alpha - 0)) / 6)); } _x = _root._xmouse; _y = _root._ymouse; };
Symbol 621 Button
on (release) { _root.saveGame(); gotoAndStop (1797); }
Symbol 629 MovieClip Frame 1
this.onEnterFrame = function () { _alpha = (70 + random(30)); };
Symbol 630 Button
on (release) { saveGame(); }
Symbol 635 Button
on (release) { if (stats.money >= _root.currentCasePrice) { stats.money = stats.money - _root.currentCasePrice; stats.casemod = _root.caseDisplay; saveGame(); } }
Symbol 642 MovieClip Frame 1
this.onEnterFrame = function () { if (_parent.frame == "game") { _visible = true; } else { _visible = false; } };
Symbol 643 MovieClip Frame 1
this.onEnterFrame = function () { if (_parent.frame != "game") { this.removeMovieClip(); } this.swapDepths(_root.n + 999999); };
Symbol 647 Button
on (release) { gotoAndStop (1796); }
Symbol 649 Button
on (release) { gotoAndStop (1797); }
Symbol 651 MovieClip Frame 1
this.onEnterFrame = function () { _alpha = (50 + random(25)); };
Symbol 652 Button
on (release) { gotoAndStop (284); }
Symbol 654 Button
on (release) { gotoAndStop (283); }
Symbol 661 Button
on (release) { gotoAndPlay (294); }

Library Items

Symbol 1 Sound [mainMusic2]
Symbol 2 Sound [mainMusic3]
Symbol 3 Sound [mainMusic]
Symbol 4 Sound [bossMusic]
Symbol 5 Sound [explosionSound2]Used by:184
Symbol 6 Sound [explosionSound1]Used by:209
Symbol 7 Sound [laserSound]Used by:213
Symbol 8 Sound [creditsMusic]Used by:Timeline
Symbol 9 GraphicUsed by:15
Symbol 10 GraphicUsed by:15
Symbol 11 GraphicUsed by:15
Symbol 12 GraphicUsed by:15
Symbol 13 GraphicUsed by:15
Symbol 14 GraphicUsed by:15
Symbol 15 MovieClipUses:9 10 11 12 13 14Used by:16  Timeline
Symbol 16 MovieClip [aoldude]Uses:15
Symbol 17 GraphicUsed by:18
Symbol 18 MovieClipUses:17Used by:19
Symbol 19 MovieClipUses:18Used by:20
Symbol 20 MovieClip [FScrollBarSymbol]Uses:19Used by:28
Symbol 21 GraphicUsed by:22
Symbol 22 MovieClipUses:21Used by:24
Symbol 23 GraphicUsed by:24
Symbol 24 MovieClip [FBoundingBoxSymbol]Uses:22 23Used by:28
Symbol 25 MovieClipUsed by:28
Symbol 26 GraphicUsed by:27
Symbol 27 MovieClipUses:26Used by:28
Symbol 28 MovieClip [FScrollPaneSymbol]Uses:20 24 25 27
Symbol 29 MovieClip [FUIComponentSymbol]
Symbol 30 GraphicUsed by:31 49 67 68 74 75 77 83 95
Symbol 31 MovieClipUses:30Used by:42
Symbol 32 GraphicUsed by:33
Symbol 33 MovieClipUses:32Used by:42
Symbol 34 GraphicUsed by:35 55 86 101
Symbol 35 MovieClipUses:34Used by:42
Symbol 36 GraphicUsed by:37 56 87 102
Symbol 37 MovieClipUses:36Used by:42
Symbol 38 GraphicUsed by:39 44 54 88 92 100
Symbol 39 MovieClipUses:38Used by:42
Symbol 40 GraphicUsed by:41 43 53 89 91 99
Symbol 41 MovieClipUses:40Used by:42
Symbol 42 MovieClipUses:31 33 35 37 39 41Used by:62
Symbol 43 MovieClipUses:40Used by:52
Symbol 44 MovieClipUses:38Used by:52
Symbol 45 GraphicUsed by:46 93
Symbol 46 MovieClipUses:45Used by:52
Symbol 47 GraphicUsed by:48 94
Symbol 48 MovieClipUses:47Used by:52
Symbol 49 MovieClipUses:30Used by:52
Symbol 50 GraphicUsed by:51
Symbol 51 MovieClipUses:50Used by:52
Symbol 52 MovieClipUses:43 44 46 48 49 51Used by:62
Symbol 53 MovieClipUses:40Used by:61
Symbol 54 MovieClipUses:38Used by:61
Symbol 55 MovieClipUses:34Used by:61
Symbol 56 MovieClipUses:36Used by:61
Symbol 57 GraphicUsed by:58 103
Symbol 58 MovieClipUses:57Used by:61
Symbol 59 GraphicUsed by:60
Symbol 60 MovieClipUses:59Used by:61
Symbol 61 MovieClipUses:53 54 55 56 58 60Used by:62
Symbol 62 MovieClip [UpArrow]Uses:42 52 61
Symbol 63 GraphicUsed by:64
Symbol 64 MovieClipUses:63Used by:69
Symbol 65 GraphicUsed by:66 70 71 80
Symbol 66 MovieClipUses:65Used by:69
Symbol 67 MovieClipUses:30Used by:69
Symbol 68 MovieClipUses:30Used by:69
Symbol 69 MovieClipUses:64 66 67 68Used by:82
Symbol 70 MovieClipUses:65Used by:76
Symbol 71 MovieClipUses:65Used by:76
Symbol 72 GraphicUsed by:73
Symbol 73 MovieClipUses:72Used by:76
Symbol 74 MovieClipUses:30Used by:76
Symbol 75 MovieClipUses:30Used by:76
Symbol 76 MovieClipUses:70 71 73 74 75Used by:82
Symbol 77 MovieClipUses:30Used by:81
Symbol 78 GraphicUsed by:79
Symbol 79 MovieClipUses:78Used by:81
Symbol 80 MovieClipUses:65Used by:81
Symbol 81 MovieClipUses:77 79 80Used by:82
Symbol 82 MovieClip [ScrollThumb]Uses:69 76 81
Symbol 83 MovieClipUses:30Used by:90
Symbol 84 GraphicUsed by:85
Symbol 85 MovieClipUses:84Used by:90
Symbol 86 MovieClipUses:34Used by:90
Symbol 87 MovieClipUses:36Used by:90
Symbol 88 MovieClipUses:38Used by:90
Symbol 89 MovieClipUses:40Used by:90
Symbol 90 MovieClipUses:83 85 86 87 88 89Used by:107
Symbol 91 MovieClipUses:40Used by:98
Symbol 92 MovieClipUses:38Used by:98
Symbol 93 MovieClipUses:45Used by:98
Symbol 94 MovieClipUses:47Used by:98
Symbol 95 MovieClipUses:30Used by:98
Symbol 96 GraphicUsed by:97
Symbol 97 MovieClipUses:96Used by:98
Symbol 98 MovieClipUses:91 92 93 94 95 97Used by:107
Symbol 99 MovieClipUses:40Used by:106
Symbol 100 MovieClipUses:38Used by:106
Symbol 101 MovieClipUses:34Used by:106
Symbol 102 MovieClipUses:36Used by:106
Symbol 103 MovieClipUses:57Used by:106
Symbol 104 GraphicUsed by:105
Symbol 105 MovieClipUses:104Used by:106
Symbol 106 MovieClipUses:99 100 101 102 103 105Used by:107
Symbol 107 MovieClip [DownArrow]Uses:90 98 106
Symbol 108 GraphicUsed by:109
Symbol 109 MovieClip [minispam]Uses:108
Symbol 110 GraphicUsed by:111
Symbol 111 MovieClip [superspam]Uses:110
Symbol 112 GraphicUsed by:113
Symbol 113 MovieClip [mail]Uses:112
Symbol 114 GraphicUsed by:124
Symbol 115 GraphicUsed by:124
Symbol 116 GraphicUsed by:124
Symbol 117 GraphicUsed by:124
Symbol 118 GraphicUsed by:119
Symbol 119 MovieClipUses:118Used by:124
Symbol 120 FontUsed by:121 147 148 151 152 342 344 345 346 347 348 349 350 360 362 363 373 374 375 377 390 406 407 412 413 416 470 473 476 479 481 487 491 492 495 499 503 505 507 532 533 534 537 542 547 553 562 567 568 574 575 580 581 582 592 598 600 602 604 605 616 620 645 646 648 653 656 658 659 660
Symbol 121 TextUses:120Used by:124
Symbol 122 ShapeTweeningUsed by:124
Symbol 123 GraphicUsed by:124
Symbol 124 MovieClip [emotion]Uses:114 115 116 117 119 121 122 123
Symbol 125 GraphicUsed by:126
Symbol 126 MovieClip [missile]Uses:125
Symbol 127 GraphicUsed by:132
Symbol 128 GraphicUsed by:132
Symbol 129 GraphicUsed by:132
Symbol 130 GraphicUsed by:132
Symbol 131 GraphicUsed by:132
Symbol 132 MovieClipUses:127 128 129 130 131Used by:141 323 368 396  Timeline
Symbol 133 GraphicUsed by:141
Symbol 134 GraphicUsed by:135
Symbol 135 MovieClipUses:134Used by:141
Symbol 136 GraphicUsed by:141
Symbol 137 GraphicUsed by:138
Symbol 138 MovieClipUses:137Used by:141
Symbol 139 GraphicUsed by:140
Symbol 140 MovieClipUses:139Used by:141
Symbol 141 MovieClip [boss]Uses:132 133 135 136 138 140
Symbol 142 GraphicUsed by:143
Symbol 143 MovieClip [bosshealthoutline]Uses:142
Symbol 144 GraphicUsed by:145
Symbol 145 MovieClip [bosshealth]Uses:144
Symbol 146 GraphicUsed by:149
Symbol 147 TextUses:120Used by:149
Symbol 148 TextUses:120Used by:149
Symbol 149 MovieClip [newmail2]Uses:146 147 148
Symbol 150 GraphicUsed by:153
Symbol 151 TextUses:120Used by:153
Symbol 152 TextUses:120Used by:153
Symbol 153 MovieClip [newmail1]Uses:150 151 152
Symbol 154 ShapeTweeningUsed by:162
Symbol 155 BitmapUsed by:156 160 161 394 563
Symbol 156 GraphicUses:155Used by:162
Symbol 157 GraphicUsed by:158
Symbol 158 MovieClipUses:157Used by:162 169
Symbol 159 ShapeTweeningUsed by:162
Symbol 160 GraphicUses:155Used by:162
Symbol 161 GraphicUses:155Used by:162
Symbol 162 MovieClip [advert2]Uses:154 156 158 159 160 161
Symbol 163 ShapeTweeningUsed by:169
Symbol 164 BitmapUsed by:165 167 168 394 563
Symbol 165 GraphicUses:164Used by:169
Symbol 166 ShapeTweeningUsed by:169
Symbol 167 GraphicUses:164Used by:169
Symbol 168 GraphicUses:164Used by:169
Symbol 169 MovieClip [advert1]Uses:163 165 158 166 167 168
Symbol 170 GraphicUsed by:184
Symbol 171 GraphicUsed by:184
Symbol 172 GraphicUsed by:184
Symbol 173 GraphicUsed by:184
Symbol 174 GraphicUsed by:184
Symbol 175 GraphicUsed by:184
Symbol 176 GraphicUsed by:184
Symbol 177 GraphicUsed by:184
Symbol 178 GraphicUsed by:184
Symbol 179 GraphicUsed by:184
Symbol 180 GraphicUsed by:184
Symbol 181 GraphicUsed by:184
Symbol 182 GraphicUsed by:184
Symbol 183 GraphicUsed by:184
Symbol 184 MovieClip [explosion2]Uses:170 5 171 172 173 174 175 176 177 178 179 180 181 182 183
Symbol 185 GraphicUsed by:189
Symbol 186 GraphicUsed by:187
Symbol 187 MovieClipUses:186Used by:189
Symbol 188 GraphicUsed by:189
Symbol 189 MovieClip [crosshair]Uses:185 187 188
Symbol 190 GraphicUsed by:209
Symbol 191 GraphicUsed by:209
Symbol 192 GraphicUsed by:209
Symbol 193 GraphicUsed by:209
Symbol 194 GraphicUsed by:209
Symbol 195 GraphicUsed by:209
Symbol 196 GraphicUsed by:209
Symbol 197 GraphicUsed by:209
Symbol 198 GraphicUsed by:209
Symbol 199 GraphicUsed by:209
Symbol 200 GraphicUsed by:209
Symbol 201 GraphicUsed by:209
Symbol 202 GraphicUsed by:209
Symbol 203 GraphicUsed by:209
Symbol 204 GraphicUsed by:209
Symbol 205 GraphicUsed by:209
Symbol 206 GraphicUsed by:209
Symbol 207 GraphicUsed by:209
Symbol 208 GraphicUsed by:209
Symbol 209 MovieClip [explosion]Uses:190 6 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
Symbol 210 GraphicUsed by:211
Symbol 211 MovieClipUses:210Used by:213
Symbol 212 GraphicUsed by:213
Symbol 213 MovieClip [laser]Uses:211 212 7
Symbol 214 GraphicUsed by:315
Symbol 215 GraphicUsed by:315
Symbol 216 GraphicUsed by:315
Symbol 217 GraphicUsed by:315
Symbol 218 GraphicUsed by:315
Symbol 219 GraphicUsed by:315
Symbol 220 GraphicUsed by:315
Symbol 221 GraphicUsed by:315
Symbol 222 GraphicUsed by:315
Symbol 223 GraphicUsed by:315
Symbol 224 GraphicUsed by:315
Symbol 225 GraphicUsed by:315
Symbol 226 GraphicUsed by:315
Symbol 227 GraphicUsed by:315
Symbol 228 GraphicUsed by:315
Symbol 229 GraphicUsed by:315
Symbol 230 GraphicUsed by:315
Symbol 231 GraphicUsed by:315
Symbol 232 GraphicUsed by:315
Symbol 233 GraphicUsed by:315
Symbol 234 GraphicUsed by:315
Symbol 235 GraphicUsed by:315
Symbol 236 GraphicUsed by:315
Symbol 237 GraphicUsed by:315
Symbol 238 GraphicUsed by:315
Symbol 239 GraphicUsed by:315
Symbol 240 GraphicUsed by:315
Symbol 241 GraphicUsed by:315
Symbol 242 GraphicUsed by:315
Symbol 243 GraphicUsed by:315
Symbol 244 GraphicUsed by:315
Symbol 245 GraphicUsed by:315
Symbol 246 GraphicUsed by:315
Symbol 247 GraphicUsed by:315
Symbol 248 GraphicUsed by:315
Symbol 249 GraphicUsed by:315
Symbol 250 GraphicUsed by:315
Symbol 251 GraphicUsed by:315
Symbol 252 GraphicUsed by:315
Symbol 253 GraphicUsed by:315
Symbol 254 GraphicUsed by:315
Symbol 255 GraphicUsed by:315
Symbol 256 GraphicUsed by:315
Symbol 257 GraphicUsed by:315
Symbol 258 GraphicUsed by:315
Symbol 259 GraphicUsed by:315
Symbol 260 GraphicUsed by:315
Symbol 261 GraphicUsed by:315
Symbol 262 GraphicUsed by:315
Symbol 263 GraphicUsed by:315
Symbol 264 GraphicUsed by:315
Symbol 265 GraphicUsed by:315
Symbol 266 GraphicUsed by:315
Symbol 267 GraphicUsed by:315
Symbol 268 GraphicUsed by:315
Symbol 269 GraphicUsed by:315
Symbol 270 GraphicUsed by:315
Symbol 271 GraphicUsed by:315
Symbol 272 GraphicUsed by:315
Symbol 273 GraphicUsed by:315
Symbol 274 GraphicUsed by:315
Symbol 275 GraphicUsed by:315
Symbol 276 GraphicUsed by:315
Symbol 277 GraphicUsed by:315
Symbol 278 GraphicUsed by:315
Symbol 279 GraphicUsed by:315
Symbol 280 GraphicUsed by:315
Symbol 281 GraphicUsed by:315
Symbol 282 GraphicUsed by:315
Symbol 283 GraphicUsed by:315
Symbol 284 GraphicUsed by:315
Symbol 285 GraphicUsed by:315
Symbol 286 GraphicUsed by:315
Symbol 287 GraphicUsed by:315
Symbol 288 GraphicUsed by:315
Symbol 289 GraphicUsed by:315
Symbol 290 GraphicUsed by:315
Symbol 291 GraphicUsed by:315
Symbol 292 GraphicUsed by:315
Symbol 293 GraphicUsed by:315
Symbol 294 GraphicUsed by:315
Symbol 295 GraphicUsed by:315
Symbol 296 GraphicUsed by:315
Symbol 297 GraphicUsed by:315
Symbol 298 GraphicUsed by:315
Symbol 299 GraphicUsed by:315
Symbol 300 GraphicUsed by:315
Symbol 301 GraphicUsed by:315
Symbol 302 GraphicUsed by:315
Symbol 303 GraphicUsed by:315
Symbol 304 GraphicUsed by:315
Symbol 305 GraphicUsed by:315
Symbol 306 GraphicUsed by:315
Symbol 307 GraphicUsed by:315
Symbol 308 GraphicUsed by:315
Symbol 309 GraphicUsed by:315
Symbol 310 GraphicUsed by:315
Symbol 311 GraphicUsed by:315
Symbol 312 GraphicUsed by:315
Symbol 313 GraphicUsed by:315
Symbol 314 GraphicUsed by:315
Symbol 315 MovieClip [gun]Uses:214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314
Symbol 316 GraphicUsed by:323
Symbol 317 GraphicUsed by:323
Symbol 318 GraphicUsed by:322
Symbol 319 GraphicUsed by:322
Symbol 320 GraphicUsed by:322
Symbol 321 GraphicUsed by:322
Symbol 322 MovieClipUses:318 319 320 321Used by:323 396  Timeline
Symbol 323 MovieClip [virus]Uses:316 132 317 322
Symbol 324 GraphicUsed by:341
Symbol 325 GraphicUsed by:331
Symbol 326 GraphicUsed by:331
Symbol 327 GraphicUsed by:331
Symbol 328 GraphicUsed by:331
Symbol 329 GraphicUsed by:331
Symbol 330 GraphicUsed by:331
Symbol 331 MovieClipUses:325 326 327 328 329 330Used by:341
Symbol 332 GraphicUsed by:338
Symbol 333 GraphicUsed by:338
Symbol 334 GraphicUsed by:338
Symbol 335 GraphicUsed by:338
Symbol 336 GraphicUsed by:338
Symbol 337 GraphicUsed by:338
Symbol 338 MovieClipUses:332 333 334 335 336 337Used by:341  Timeline
Symbol 339 GraphicUsed by:340
Symbol 340 MovieClipUses:339Used by:341
Symbol 341 MovieClip [computer]Uses:324 331 338 340
Symbol 342 EditableTextUses:120Used by:361
Symbol 343 GraphicUsed by:361
Symbol 344 EditableTextUses:120Used by:361
Symbol 345 TextUses:120Used by:361
Symbol 346 TextUses:120Used by:361
Symbol 347 EditableTextUses:120Used by:361
Symbol 348 EditableTextUses:120Used by:361
Symbol 349 EditableTextUses:120Used by:361
Symbol 350 EditableTextUses:120Used by:361
Symbol 351 GraphicUsed by:352
Symbol 352 MovieClipUses:351Used by:361
Symbol 353 GraphicUsed by:354 359
Symbol 354 MovieClipUses:353Used by:361
Symbol 355 GraphicUsed by:356
Symbol 356 MovieClipUses:355Used by:361
Symbol 357 GraphicUsed by:358
Symbol 358 MovieClipUses:357Used by:361
Symbol 359 MovieClipUses:353Used by:361
Symbol 360 EditableTextUses:120Used by:361
Symbol 361 MovieClip [gamestatdisplay]Uses:342 343 344 345 346 347 348 349 350 352 354 356 358 359 360
Symbol 362 EditableTextUses:120Used by:364
Symbol 363 EditableTextUses:120Used by:364
Symbol 364 MovieClipUses:362 363Used by:365
Symbol 365 MovieClip [accumulatedMoney]Uses:364
Symbol 366 GraphicUsed by:368
Symbol 367 GraphicUsed by:368
Symbol 368 MovieClip [spyware]Uses:366 132 367
Symbol 369 GraphicUsed by:383
Symbol 370 GraphicUsed by:372
Symbol 371 GraphicUsed by:372
Symbol 372 MovieClipUses:370 371Used by:378
Symbol 373 TextUses:120Used by:378
Symbol 374 TextUses:120Used by:376
Symbol 375 TextUses:120Used by:376
Symbol 376 MovieClipUses:374 375Used by:378
Symbol 377 TextUses:120Used by:378
Symbol 378 MovieClipUses:372 373 376 377Used by:383 396  Timeline
Symbol 379 GraphicUsed by:380
Symbol 380 MovieClipUses:379Used by:383 396  Timeline
Symbol 381 GraphicUsed by:383
Symbol 382 GraphicUsed by:383
Symbol 383 MovieClip [popup]Uses:369 378 380 381 382
Symbol 384 GraphicUsed by:385
Symbol 385 MovieClip [time]Uses:384
Symbol 386 GraphicUsed by:387
Symbol 387 MovieClip [health]Uses:386
Symbol 388 GraphicUsed by:389
Symbol 389 MovieClip [j]Uses:388
Symbol 390 TextUses:120Used by:396
Symbol 391 GraphicUsed by:396
Symbol 392 GraphicUsed by:396
Symbol 393 GraphicUsed by:396
Symbol 394 GraphicUses:155 164Used by:396
Symbol 395 GraphicUsed by:396  Timeline
Symbol 396 MovieClip [instructions]Uses:390 391 132 392 322 393 394 378 380 395
Symbol 397 GraphicUsed by:398
Symbol 398 MovieClip [goodmail]Uses:397
Symbol 399 GraphicUsed by:400
Symbol 400 MovieClip [sp2]Uses:399
Symbol 401 GraphicUsed by:402
Symbol 402 MovieClip [smoke]Uses:401
Symbol 403 GraphicUsed by:Timeline
Symbol 404 GraphicUsed by:405
Symbol 405 MovieClipUses:404Used by:459  Timeline
Symbol 406 EditableTextUses:120Used by:414
Symbol 407 EditableTextUses:120Used by:414
Symbol 408 GraphicUsed by:409
Symbol 409 MovieClipUses:408Used by:414
Symbol 410 GraphicUsed by:411
Symbol 411 MovieClipUses:410Used by:414
Symbol 412 EditableTextUses:120Used by:414
Symbol 413 EditableTextUses:120Used by:414
Symbol 414 MovieClipUses:406 407 409 411 412 413Used by:Timeline
Symbol 415 GraphicUsed by:432
Symbol 416 TextUses:120Used by:432
Symbol 417 FontUsed by:418 420 622 623 624 625 626
Symbol 418 EditableTextUses:417Used by:432
Symbol 419 GraphicUsed by:432
Symbol 420 EditableTextUses:417Used by:432
Symbol 421 GraphicUsed by:425
Symbol 422 GraphicUsed by:423 425 428 480 484 500 594 607 621 647 649 652 654 661
Symbol 423 MovieClipUses:422Used by:425 428 471 474 477 480 482 484 493 500 594 606 607 621 647 649 652 654 661
Symbol 424 GraphicUsed by:425
Symbol 425 ButtonUses:421 423 424 422Used by:432
Symbol 426 GraphicUsed by:428
Symbol 427 GraphicUsed by:428
Symbol 428 ButtonUses:426 423 427 422Used by:432
Symbol 429 GraphicUsed by:430
Symbol 430 MovieClipUses:429Used by:432
Symbol 431 GraphicUsed by:432
Symbol 432 MovieClipUses:415 416 418 419 420 425 428 430 431Used by:Timeline
Symbol 433 FontUsed by:434 592 633 634
Symbol 434 TextUses:433Used by:437
Symbol 435 GraphicUsed by:437
Symbol 436 GraphicUsed by:437
Symbol 437 ButtonUses:434 435 436Used by:Timeline
Symbol 438 GraphicUsed by:439
Symbol 439 MovieClipUses:438Used by:Timeline
Symbol 440 GraphicUsed by:456
Symbol 441 GraphicUsed by:442
Symbol 442 MovieClipUses:441Used by:456
Symbol 443 GraphicUsed by:444
Symbol 444 MovieClipUses:443Used by:456
Symbol 445 GraphicUsed by:446
Symbol 446 MovieClipUses:445Used by:451 456
Symbol 447 GraphicUsed by:448
Symbol 448 MovieClipUses:447Used by:456
Symbol 449 GraphicUsed by:450
Symbol 450 MovieClipUses:449Used by:456
Symbol 451 MovieClipUses:446Used by:456
Symbol 452 GraphicUsed by:453
Symbol 453 MovieClipUses:452Used by:456
Symbol 454 GraphicUsed by:455
Symbol 455 MovieClipUses:454Used by:456
Symbol 456 MovieClipUses:440 442 444 446 448 450 451 453 455 SS1Used by:Timeline
Symbol 457 GraphicUsed by:643  Timeline
Symbol 458 GraphicUsed by:459
Symbol 459 MovieClipUses:458 405Used by:Timeline
Symbol 460 GraphicUsed by:461
Symbol 461 MovieClipUses:460Used by:Timeline
Symbol 462 GraphicUsed by:Timeline
Symbol 463 GraphicUsed by:Timeline
Symbol 464 FontUsed by:465 610 618 641
Symbol 465 TextUses:464Used by:Timeline
Symbol 466 GraphicUsed by:Timeline
Symbol 467 GraphicUsed by:Timeline
Symbol 468 GraphicUsed by:471
Symbol 469 GraphicUsed by:471 474 477 482
Symbol 470 TextUses:120Used by:471 482
Symbol 471 ButtonUses:468 423 469 470Used by:Timeline
Symbol 472 GraphicUsed by:474
Symbol 473 TextUses:120Used by:474 652
Symbol 474 ButtonUses:472 423 469 473Used by:Timeline
Symbol 475 GraphicUsed by:477
Symbol 476 TextUses:120Used by:477
Symbol 477 ButtonUses:475 423 469 476Used by:Timeline
Symbol 478 GraphicUsed by:Timeline
Symbol 479 TextUses:120Used by:480
Symbol 480 ButtonUses:479 423 422Used by:Timeline
Symbol 481 TextUses:120Used by:482
Symbol 482 ButtonUses:481 423 469 470Used by:Timeline
Symbol 483 GraphicUsed by:484
Symbol 484 ButtonUses:483 423 422Used by:Timeline
Symbol 485 GraphicUsed by:486
Symbol 486 MovieClipUses:485Used by:Timeline
Symbol 487 EditableTextUses:120Used by:Timeline
Symbol 488 GraphicUsed by:Timeline
Symbol 489 GraphicUsed by:Timeline
Symbol 490 GraphicUsed by:493 606
Symbol 491 EditableTextUses:120Used by:493
Symbol 492 EditableTextUses:120Used by:493
Symbol 493 MovieClipUses:490 491 423 492Used by:Timeline
Symbol 494 GraphicUsed by:Timeline
Symbol 495 TextUses:120Used by:498 543 549 558 570 576 584 607
Symbol 496 GraphicUsed by:498 543 549 558 570 576 584
Symbol 497 GraphicUsed by:498 536 539 543 544 549 550 558 559 564 570 571 576 577 584
Symbol 498 ButtonUses:495 496 497Used by:Timeline
Symbol 499 TextUses:120Used by:500
Symbol 500 ButtonUses:499 423 422Used by:Timeline
Symbol 501 GraphicUsed by:Timeline
Symbol 502 GraphicUsed by:Timeline
Symbol 503 TextUses:120Used by:Timeline
Symbol 504 GraphicUsed by:Timeline
Symbol 505 TextUses:120Used by:Timeline
Symbol 506 GraphicUsed by:Timeline
Symbol 507 TextUses:120Used by:Timeline
Symbol 508 GraphicUsed by:511
Symbol 509 GraphicUsed by:511
Symbol 510 GraphicUsed by:511
Symbol 511 MovieClipUses:508 509 510Used by:Timeline
Symbol 512 GraphicUsed by:515
Symbol 513 GraphicUsed by:515
Symbol 514 GraphicUsed by:515
Symbol 515 MovieClipUses:512 513 514Used by:Timeline
Symbol 516 GraphicUsed by:519
Symbol 517 GraphicUsed by:519
Symbol 518 GraphicUsed by:519
Symbol 519 MovieClipUses:516 517 518Used by:Timeline
Symbol 520 GraphicUsed by:522
Symbol 521 GraphicUsed by:522
Symbol 522 MovieClipUses:520 521Used by:Timeline
Symbol 523 GraphicUsed by:525
Symbol 524 GraphicUsed by:525
Symbol 525 MovieClipUses:523 524Used by:Timeline
Symbol 526 GraphicUsed by:528
Symbol 527 GraphicUsed by:528
Symbol 528 MovieClipUses:526 527Used by:Timeline
Symbol 529 GraphicUsed by:Timeline
Symbol 530 GraphicUsed by:Timeline
Symbol 531 GraphicUsed by:Timeline
Symbol 532 TextUses:120Used by:Timeline
Symbol 533 TextUses:120Used by:Timeline
Symbol 534 TextUses:120Used by:536 544 550 559 564 571 577
Symbol 535 GraphicUsed by:536 544 550 559 564 571 577
Symbol 536 ButtonUses:534 535 497Used by:Timeline
Symbol 537 TextUses:120Used by:539
Symbol 538 GraphicUsed by:539
Symbol 539 ButtonUses:537 538 497Used by:Timeline
Symbol 540 GraphicUsed by:Timeline
Symbol 541 GraphicUsed by:Timeline
Symbol 542 TextUses:120Used by:Timeline
Symbol 543 ButtonUses:495 496 497Used by:Timeline
Symbol 544 ButtonUses:534 535 497Used by:Timeline
Symbol 545 GraphicUsed by:Timeline
Symbol 546 GraphicUsed by:Timeline
Symbol 547 TextUses:120Used by:Timeline
Symbol 548 GraphicUsed by:Timeline
Symbol 549 ButtonUses:495 496 497Used by:Timeline
Symbol 550 ButtonUses:534 535 497Used by:Timeline
Symbol 551 GraphicUsed by:Timeline
Symbol 552 GraphicUsed by:Timeline
Symbol 553 TextUses:120Used by:Timeline
Symbol 554 GraphicUsed by:Timeline
Symbol 555 GraphicUsed by:Timeline
Symbol 556 GraphicUsed by:Timeline
Symbol 557 GraphicUsed by:Timeline
Symbol 558 ButtonUses:495 496 497Used by:Timeline
Symbol 559 ButtonUses:534 535 497Used by:Timeline
Symbol 560 GraphicUsed by:Timeline
Symbol 561 GraphicUsed by:Timeline
Symbol 562 TextUses:120Used by:Timeline
Symbol 563 GraphicUses:155 164Used by:Timeline
Symbol 564 ButtonUses:534 535 497Used by:Timeline
Symbol 565 GraphicUsed by:Timeline
Symbol 566 GraphicUsed by:Timeline
Symbol 567 TextUses:120Used by:Timeline
Symbol 568 TextUses:120Used by:Timeline
Symbol 569 GraphicUsed by:Timeline
Symbol 570 ButtonUses:495 496 497Used by:Timeline
Symbol 571 ButtonUses:534 535 497Used by:Timeline
Symbol 572 GraphicUsed by:Timeline
Symbol 573 GraphicUsed by:Timeline
Symbol 574 TextUses:120Used by:Timeline
Symbol 575 TextUses:120Used by:Timeline
Symbol 576 ButtonUses:495 496 497Used by:Timeline
Symbol 577 ButtonUses:534 535 497Used by:Timeline
Symbol 578 GraphicUsed by:Timeline
Symbol 579 GraphicUsed by:Timeline
Symbol 580 TextUses:120Used by:Timeline
Symbol 581 TextUses:120Used by:Timeline
Symbol 582 TextUses:120Used by:Timeline
Symbol 583 GraphicUsed by:Timeline
Symbol 584 ButtonUses:495 496 497Used by:Timeline
Symbol 585 GraphicUsed by:Timeline
Symbol 586 GraphicUsed by:587
Symbol 587 MovieClipUses:586Used by:Timeline
Symbol 588 GraphicUsed by:Timeline
Symbol 589 GraphicUsed by:590
Symbol 590 MovieClipUses:589Used by:Timeline
Symbol 591 GraphicUsed by:Timeline
Symbol 592 TextUses:120 433Used by:595
Symbol 593 GraphicUsed by:594
Symbol 594 ButtonUses:593 423 422Used by:595
Symbol 595 MovieClipUses:592 594Used by:Timeline
Symbol 596 GraphicUsed by:Timeline
Symbol 597 GraphicUsed by:Timeline
Symbol 598 TextUses:120Used by:Timeline
Symbol 599 GraphicUsed by:Timeline
Symbol 600 TextUses:120Used by:Timeline
Symbol 601 GraphicUsed by:Timeline
Symbol 602 EditableTextUses:120Used by:Timeline
Symbol 603 GraphicUsed by:Timeline
Symbol 604 EditableTextUses:120Used by:606
Symbol 605 EditableTextUses:120Used by:606
Symbol 606 MovieClipUses:490 604 423 605Used by:Timeline
Symbol 607 ButtonUses:495 423 422Used by:Timeline
Symbol 608 GraphicUsed by:Timeline
Symbol 609 GraphicUsed by:613
Symbol 610 EditableTextUses:464Used by:613
Symbol 611 GraphicUsed by:612
Symbol 612 MovieClipUses:611Used by:613
Symbol 613 MovieClipUses:609 610 612Used by:Timeline
Symbol 614 GraphicUsed by:Timeline
Symbol 615 GraphicUsed by:Timeline
Symbol 616 TextUses:120Used by:Timeline
Symbol 617 GraphicUsed by:619
Symbol 618 EditableTextUses:464Used by:619
Symbol 619 MovieClipUses:617 618Used by:Timeline
Symbol 620 TextUses:120Used by:621
Symbol 621 ButtonUses:620 423 422Used by:Timeline
Symbol 622 EditableTextUses:417Used by:Timeline
Symbol 623 EditableTextUses:417Used by:Timeline
Symbol 624 EditableTextUses:417Used by:Timeline
Symbol 625 EditableTextUses:417Used by:Timeline
Symbol 626 EditableTextUses:417Used by:Timeline
Symbol 627 GraphicUsed by:630
Symbol 628 GraphicUsed by:629 630
Symbol 629 MovieClipUses:628Used by:630
Symbol 630 ButtonUses:627 629 628Used by:Timeline
Symbol 631 GraphicUsed by:632
Symbol 632 MovieClipUses:631Used by:Timeline
Symbol 633 EditableTextUses:433Used by:Timeline
Symbol 634 EditableTextUses:433Used by:635
Symbol 635 ButtonUses:634Used by:Timeline
Symbol 636 GraphicUsed by:Timeline
Symbol 637 GraphicUsed by:640
Symbol 638 GraphicUsed by:640
Symbol 639 GraphicUsed by:640
Symbol 640 MovieClipUses:637 638 639Used by:Timeline
Symbol 641 EditableTextUses:464Used by:642
Symbol 642 MovieClipUses:641Used by:Timeline
Symbol 643 MovieClipUses:457Used by:Timeline
Symbol 644 GraphicUsed by:Timeline
Symbol 645 EditableTextUses:120Used by:Timeline
Symbol 646 TextUses:120Used by:647
Symbol 647 ButtonUses:646 423 422Used by:Timeline
Symbol 648 TextUses:120Used by:649
Symbol 649 ButtonUses:648 423 422Used by:Timeline
Symbol 650 GraphicUsed by:651
Symbol 651 MovieClipUses:650Used by:Timeline
Symbol 652 ButtonUses:473 423 422Used by:Timeline
Symbol 653 TextUses:120Used by:654
Symbol 654 ButtonUses:653 423 422Used by:Timeline
Symbol 655 GraphicUsed by:Timeline
Symbol 656 TextUses:120Used by:Timeline
Symbol 657 GraphicUsed by:Timeline
Symbol 658 TextUses:120Used by:Timeline
Symbol 659 TextUses:120Used by:Timeline
Symbol 660 TextUses:120Used by:661
Symbol 661 ButtonUses:660 423 422Used by:Timeline
Streaming Sound 1Used by:Symbol 456 MovieClip

Instance Names

"preloader"Frame 1Symbol 432 MovieClip
"playButton"Frame 1Symbol 437 Button
"s1"Frame 284Symbol 493 MovieClip
"s2"Frame 284Symbol 493 MovieClip
"s3"Frame 284Symbol 493 MovieClip
"s4"Frame 284Symbol 493 MovieClip
"s5"Frame 284Symbol 493 MovieClip
"s6"Frame 284Symbol 493 MovieClip
"s7"Frame 284Symbol 493 MovieClip
"lowQuality"Frame 285Symbol 511 MovieClip
"medQuality"Frame 285Symbol 515 MovieClip
"highQuality"Frame 285Symbol 519 MovieClip
"lowGraphicQuality"Frame 285Symbol 511 MovieClip
"highGraphicQuality"Frame 285Symbol 519 MovieClip
"s1"Frame 1795Symbol 606 MovieClip
"s2"Frame 1795Symbol 606 MovieClip
"s3"Frame 1795Symbol 606 MovieClip
"s4"Frame 1795Symbol 606 MovieClip
"s5"Frame 1795Symbol 606 MovieClip
"s6"Frame 1795Symbol 606 MovieClip
"s7"Frame 1795Symbol 606 MovieClip
"case"Frame 1796Symbol 338 MovieClip
"tooltip"Frame 1796Symbol 619 MovieClip
"map"Frame 1797Symbol 640 MovieClip
"track_mc"Symbol 19 MovieClip Frame 1Symbol 18 MovieClip
"scrollTrack_mc"Symbol 20 MovieClip [FScrollBarSymbol] Frame 1Symbol 19 MovieClip
"boundingBox"Symbol 24 MovieClip [FBoundingBoxSymbol] Frame 1Symbol 22 MovieClip
"boundingBox2"Symbol 24 MovieClip [FBoundingBoxSymbol] Frame 2Symbol 22 MovieClip
"scrollBarAsset"Symbol 28 MovieClip [FScrollPaneSymbol] Frame 1Symbol 20 MovieClip [FScrollBarSymbol]
"boundingBox_mc"Symbol 28 MovieClip [FScrollPaneSymbol] Frame 1Symbol 24 MovieClip [FBoundingBoxSymbol]
"loadContent"Symbol 28 MovieClip [FScrollPaneSymbol] Frame 1Symbol 25 MovieClip
"deadPreview"Symbol 28 MovieClip [FScrollPaneSymbol] Frame 1Symbol 27 MovieClip
"face_mc"Symbol 42 MovieClip Frame 1Symbol 31 MovieClip
"arrow_mc"Symbol 42 MovieClip Frame 1Symbol 33 MovieClip
"highlight_mc"Symbol 42 MovieClip Frame 1Symbol 35 MovieClip
"shadow_mc"Symbol 42 MovieClip Frame 1Symbol 37 MovieClip
"darkshadow_mc"Symbol 42 MovieClip Frame 1Symbol 39 MovieClip
"highlight3D_mc"Symbol 42 MovieClip Frame 1Symbol 41 MovieClip
"darkshadow_mc"Symbol 52 MovieClip Frame 1Symbol 43 MovieClip
"highlight3D_mc"Symbol 52 MovieClip Frame 1Symbol 44 MovieClip
"highlight_mc"Symbol 52 MovieClip Frame 1Symbol 46 MovieClip
"shadow_mc"Symbol 52 MovieClip Frame 1Symbol 48 MovieClip
"face_mc"Symbol 52 MovieClip Frame 1Symbol 49 MovieClip
"arrow_mc"Symbol 52 MovieClip Frame 1Symbol 51 MovieClip
"highlight3D_mc"Symbol 61 MovieClip Frame 1Symbol 53 MovieClip
"darkshadow_mc"Symbol 61 MovieClip Frame 1Symbol 54 MovieClip
"highlight_mc"Symbol 61 MovieClip Frame 1Symbol 55 MovieClip
"shadow_mc"Symbol 61 MovieClip Frame 1Symbol 56 MovieClip
"face_mc"Symbol 61 MovieClip Frame 1Symbol 58 MovieClip
"arrow_mc"Symbol 61 MovieClip Frame 1Symbol 60 MovieClip
"up"Symbol 62 MovieClip [UpArrow] Frame 1Symbol 42 MovieClip
"down"Symbol 62 MovieClip [UpArrow] Frame 2Symbol 52 MovieClip
"disabled"Symbol 62 MovieClip [UpArrow] Frame 3Symbol 61 MovieClip
"highlight3D_mc"Symbol 69 MovieClip Frame 1Symbol 64 MovieClip
"darkshadow_mc"Symbol 69 MovieClip Frame 1Symbol 66 MovieClip
"highlight_mc"Symbol 69 MovieClip Frame 1Symbol 67 MovieClip
"shadow_mc"Symbol 69 MovieClip Frame 1Symbol 68 MovieClip
"highlight3D_mc"Symbol 76 MovieClip Frame 1Symbol 70 MovieClip
"darkshadow_mc"Symbol 76 MovieClip Frame 1Symbol 71 MovieClip
"shadow_mc"Symbol 76 MovieClip Frame 1Symbol 73 MovieClip
"face_mc"Symbol 76 MovieClip Frame 1Symbol 74 MovieClip
"highlight_mc"Symbol 76 MovieClip Frame 1Symbol 75 MovieClip
"shadow_mc"Symbol 81 MovieClip Frame 1Symbol 77 MovieClip
"darkshadow_mc"Symbol 81 MovieClip Frame 1Symbol 79 MovieClip
"highlight3D_mc"Symbol 81 MovieClip Frame 1Symbol 80 MovieClip
"mc_sliderTop"Symbol 82 MovieClip [ScrollThumb] Frame 1Symbol 69 MovieClip
"mc_sliderMid"Symbol 82 MovieClip [ScrollThumb] Frame 1Symbol 76 MovieClip
"mc_sliderBot"Symbol 82 MovieClip [ScrollThumb] Frame 1Symbol 81 MovieClip
"face_mc"Symbol 90 MovieClip Frame 1Symbol 83 MovieClip
"arrow_mc"Symbol 90 MovieClip Frame 1Symbol 85 MovieClip
"highlight_mc"Symbol 90 MovieClip Frame 1Symbol 86 MovieClip
"shadow_mc"Symbol 90 MovieClip Frame 1Symbol 87 MovieClip
"darkshadow_mc"Symbol 90 MovieClip Frame 1Symbol 88 MovieClip
"highlight3D_mc"Symbol 90 MovieClip Frame 1Symbol 89 MovieClip
"darkshadow_mc"Symbol 98 MovieClip Frame 1Symbol 91 MovieClip
"highlight3D_mc"Symbol 98 MovieClip Frame 1Symbol 92 MovieClip
"highlight_mc"Symbol 98 MovieClip Frame 1Symbol 93 MovieClip
"shadow_mc"Symbol 98 MovieClip Frame 1Symbol 94 MovieClip
"face_mc"Symbol 98 MovieClip Frame 1Symbol 95 MovieClip
"arrow_mc"Symbol 98 MovieClip Frame 1Symbol 97 MovieClip
"highlight3D_mc"Symbol 106 MovieClip Frame 1Symbol 99 MovieClip
"darkshadow_mc"Symbol 106 MovieClip Frame 1Symbol 100 MovieClip
"highlight_mc"Symbol 106 MovieClip Frame 1Symbol 101 MovieClip
"shadow_mc"Symbol 106 MovieClip Frame 1Symbol 102 MovieClip
"face_mc"Symbol 106 MovieClip Frame 1Symbol 103 MovieClip
"arrow_mc"Symbol 106 MovieClip Frame 1Symbol 105 MovieClip
"up"Symbol 107 MovieClip [DownArrow] Frame 1Symbol 90 MovieClip
"down"Symbol 107 MovieClip [DownArrow] Frame 2Symbol 98 MovieClip
"disabled"Symbol 107 MovieClip [DownArrow] Frame 3Symbol 106 MovieClip
"legs"Symbol 141 MovieClip [boss] Frame 1Symbol 132 MovieClip
"turrettwo"Symbol 141 MovieClip [boss] Frame 1Symbol 135 MovieClip
"turretone"Symbol 141 MovieClip [boss] Frame 1Symbol 135 MovieClip
"damage"Symbol 141 MovieClip [boss] Frame 1Symbol 138 MovieClip
"sheild"Symbol 141 MovieClip [boss] Frame 1Symbol 140 MovieClip
"damage"Symbol 162 MovieClip [advert2] Frame 1Symbol 158 MovieClip
"damage"Symbol 169 MovieClip [advert1] Frame 1Symbol 158 MovieClip
"top"Symbol 189 MovieClip [crosshair] Frame 1Symbol 187 MovieClip
"bottom"Symbol 189 MovieClip [crosshair] Frame 1Symbol 187 MovieClip
"right"Symbol 189 MovieClip [crosshair] Frame 1Symbol 187 MovieClip
"left"Symbol 189 MovieClip [crosshair] Frame 1Symbol 187 MovieClip
"tint"Symbol 341 MovieClip [computer] Frame 1Symbol 340 MovieClip
"powerupbar"Symbol 361 MovieClip [gamestatdisplay] Frame 1Symbol 352 MovieClip
"healthbar"Symbol 361 MovieClip [gamestatdisplay] Frame 1Symbol 354 MovieClip
"healthbaroutline"Symbol 361 MovieClip [gamestatdisplay] Frame 1Symbol 356 MovieClip
"focusbar"Symbol 361 MovieClip [gamestatdisplay] Frame 1Symbol 358 MovieClip
"focusoutline"Symbol 361 MovieClip [gamestatdisplay] Frame 1Symbol 356 MovieClip
"powerupoutline"Symbol 361 MovieClip [gamestatdisplay] Frame 1Symbol 356 MovieClip
"heatbar"Symbol 361 MovieClip [gamestatdisplay] Frame 1Symbol 359 MovieClip
"heatbaroutline"Symbol 361 MovieClip [gamestatdisplay] Frame 1Symbol 356 MovieClip
"moneytext"Symbol 365 MovieClip [accumulatedMoney] Frame 1Symbol 364 MovieClip
"paddle1"Symbol 414 MovieClip Frame 1Symbol 409 MovieClip
"ball"Symbol 414 MovieClip Frame 1Symbol 411 MovieClip
"paddle2"Symbol 414 MovieClip Frame 1Symbol 409 MovieClip
"preloaderBar"Symbol 432 MovieClip Frame 1Symbol 430 MovieClip
"tint"Symbol 613 MovieClip Frame 1Symbol 612 MovieClip
"tooltip"Symbol 619 MovieClip Frame 1Symbol 618 EditableText

Special Tags

Protect (24)Timeline Frame 131 bytes "..$1$.5$lZWvy2Ozh1elZI5Tsrryh0."
ExportAssets (56)Timeline Frame 1Symbol 1 as "mainMusic2"
ExportAssets (56)Timeline Frame 1Symbol 2 as "mainMusic3"
ExportAssets (56)Timeline Frame 1Symbol 3 as "mainMusic"
ExportAssets (56)Timeline Frame 1Symbol 4 as "bossMusic"
ExportAssets (56)Timeline Frame 1Symbol 5 as "explosionSound2"
ExportAssets (56)Timeline Frame 1Symbol 6 as "explosionSound1"
ExportAssets (56)Timeline Frame 1Symbol 7 as "laserSound"
ExportAssets (56)Timeline Frame 1Symbol 8 as "creditsMusic"
ExportAssets (56)Timeline Frame 1Symbol 16 as "aoldude"
ExportAssets (56)Timeline Frame 1Symbol 20 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 1Symbol 24 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 28 as "FScrollPaneSymbol"
ExportAssets (56)Timeline Frame 1Symbol 29 as "FUIComponentSymbol"
ExportAssets (56)Timeline Frame 1Symbol 62 as "UpArrow"
ExportAssets (56)Timeline Frame 1Symbol 82 as "ScrollThumb"
ExportAssets (56)Timeline Frame 1Symbol 107 as "DownArrow"
ExportAssets (56)Timeline Frame 1Symbol 20 as "FScrollBarSymbol"
ExportAssets (56)Timeline Frame 1Symbol 109 as "minispam"
ExportAssets (56)Timeline Frame 1Symbol 111 as "superspam"
ExportAssets (56)Timeline Frame 1Symbol 113 as "mail"
ExportAssets (56)Timeline Frame 1Symbol 124 as "emotion"
ExportAssets (56)Timeline Frame 1Symbol 126 as "missile"
ExportAssets (56)Timeline Frame 1Symbol 141 as "boss"
ExportAssets (56)Timeline Frame 1Symbol 143 as "bosshealthoutline"
ExportAssets (56)Timeline Frame 1Symbol 145 as "bosshealth"
ExportAssets (56)Timeline Frame 1Symbol 149 as "newmail2"
ExportAssets (56)Timeline Frame 1Symbol 153 as "newmail1"
ExportAssets (56)Timeline Frame 1Symbol 162 as "advert2"
ExportAssets (56)Timeline Frame 1Symbol 169 as "advert1"
ExportAssets (56)Timeline Frame 1Symbol 5 as "explosionSound2"
ExportAssets (56)Timeline Frame 1Symbol 184 as "explosion2"
ExportAssets (56)Timeline Frame 1Symbol 189 as "crosshair"
ExportAssets (56)Timeline Frame 1Symbol 6 as "explosionSound1"
ExportAssets (56)Timeline Frame 1Symbol 209 as "explosion"
ExportAssets (56)Timeline Frame 1Symbol 7 as "laserSound"
ExportAssets (56)Timeline Frame 1Symbol 213 as "laser"
ExportAssets (56)Timeline Frame 1Symbol 315 as "gun"
ExportAssets (56)Timeline Frame 1Symbol 323 as "virus"
ExportAssets (56)Timeline Frame 1Symbol 341 as "computer"
ExportAssets (56)Timeline Frame 1Symbol 361 as "gamestatdisplay"
ExportAssets (56)Timeline Frame 1Symbol 365 as "accumulatedMoney"
ExportAssets (56)Timeline Frame 1Symbol 368 as "spyware"
ExportAssets (56)Timeline Frame 1Symbol 383 as "popup"
ExportAssets (56)Timeline Frame 1Symbol 385 as "time"
ExportAssets (56)Timeline Frame 1Symbol 387 as "health"
ExportAssets (56)Timeline Frame 1Symbol 389 as "j"
ExportAssets (56)Timeline Frame 1Symbol 396 as "instructions"
ExportAssets (56)Timeline Frame 1Symbol 398 as "goodmail"
ExportAssets (56)Timeline Frame 1Symbol 400 as "sp2"
ExportAssets (56)Timeline Frame 1Symbol 402 as "smoke"
ExportAssets (56)Timeline Frame 294Symbol 8 as "creditsMusic"
ExportAssets (56)Timeline Frame 1794Symbol 8 as "creditsMusic"

Labels

"menu"Frame 283
"load"Frame 284
"options"Frame 285
"instructions"Frame 286
"upgrades"Frame 1796
"enabled"Symbol 24 MovieClip [FBoundingBoxSymbol] Frame 1
"disabled"Symbol 24 MovieClip [FBoundingBoxSymbol] Frame 2
"Symbol_36"Symbol 29 MovieClip [FUIComponentSymbol] Frame 1

Dynamic Text Variables

virusTimerDisplaySymbol 342 EditableText"00"
levelDisplaySymbol 344 EditableText"level"
scoreSymbol 347 EditableText"000"
scoreSymbol 348 EditableText"000"
timeSymbol 349 EditableText"000"
timeSymbol 350 EditableText"000"
virusTimerDisplaySymbol 360 EditableText"00"
moneySymbol 362 EditableText""
moneySymbol 363 EditableText""
score1Symbol 406 EditableText""
score2Symbol 407 EditableText""
score2Symbol 412 EditableText""
score1Symbol 413 EditableText""
loaderDisplay2Symbol 418 EditableText"bytes loaded"
loaderDisplay1Symbol 420 EditableText"percent"
cheatDisplaySymbol 487 EditableText"Cheat Activated"
slotNameSymbol 491 EditableText""
slotNameSymbol 492 EditableText""
userInputSymbol 602 EditableText"<username>"
slotNameSymbol 604 EditableText""
slotNameSymbol 605 EditableText""
currentLevelSymbol 610 EditableText""
moneyDisplaySymbol 622 EditableText""
moneyDisplaySymbol 623 EditableText""
moneyDisplaySymbol 624 EditableText""
moneyDisplaySymbol 625 EditableText""
moneyDisplaySymbol 626 EditableText""
casePriceSymbol 633 EditableText"$500"
fps2Symbol 641 EditableText"fps : 000"
levelCompleteDisplaySymbol 645 EditableText"LEVEL COMPLETE!"




http://swfchan.com/3/11402/info.shtml
Created: 7/6 -2019 08:42:05 Last modified: 7/6 -2019 08:42:05 Server time: 02/05 -2024 10:02:01