STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229672 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2596 · P5191 |
This is the info page for Flash #28908 |
PLAY |
LOADING... |
High Score |
Play Game |
Help |
NEXT |
Operation of the station requires a little know- how to operate it, so let's explain things a bit... There are five different particles out there... Now here's how to you collect them, just move your mouse to extend your laser baem. The beam and the device will follow your mouse. Hit particles with the beam to split the particles and harvest their energy there are, however, some restrictions to the particles you split. Due to the nature of light, you can only split certain colors or the beam will irresonate and damage the station. So, your initial beam can only split green particles. No beam can collect red and grey. Only one special can collect those. |
After your station has created enough energy from splitting particles, you'll be able to change the color of the laser to more powerful frequncies (blue and purple). To change frequency of your laser, press the left and right arrows. The left arrow changes it to purple and the right arrow changes it to blue. You will know when you are allowed this function when you see "Laser Powered" appear where your life meter is: |
N-Tech Statistics |
Quantal Wall: |
100 |
Laser Powered |
With the ability to change the laser color, you can now collect the blue and purple particles; however, there is STILL a stipulation on that! Only the blue laser can collect blue and the purple can collect purple. If your laser is the wrong color when you split the particle, you will take damage! |
There are also special upgrades available to your station that are given at random. These upgrades are: Missle Launcher Cross Beam Catcher Now let's get into more detail on each... |
Missile Launcher This is easy to operate. Left click the mouse and it will shoot a single rocket. This rocket, if it makes contact, will only destroy red and grey particles. Red and grey particles are worth double score though. |
Cross Beam This upgrade creates a device that creates another laser beam that is up and down on the screen. This beam is white though and specially designed to only collect green particles. It will not even touch any other particles. |
Catcher This device eliminates the need for a laser while you have it. Just left click and it will make a small area collection wave. This wave can collect any color particle except for the red and grey ones. |
Combos Combos are a way of increasing your points a lot faster. Just collect as fast as you can and you will get a larger combo! But remember, the collection must happen rapidly to do so. Station Energy There is a meter at the bottom of the screen. If this meter reaches 0, then your station no longer can hold up. To prevent this from happening, just collect particles! |
HIGH SCORE |
N-Tech Statistics |
Quantal Wall: |
Score |
# of Particles: |
Score: |
Current Stage: |
1 |
Enemy Identity |
None |
100 |
GAME OVER |
YOUR SCORE: |
HIGH SCORE: |
MENU |
ActionScript [AS1/AS2]
Frame 1stop(); this.onEnterFrame = function () { Loaded = (getBytesLoaded() / getBytesTotal()) * 100; LoadCounter = Loaded; Special = ""; if ((Loaded == 100) && (PlayButton._currentframe == 1)) { PlayButton.play(); } };Frame 2stop(); Mouse.show(); IntroMusic = new Sound(); IntroMusic.attachSound("MenuBeatID"); IntroMusic.start(0, 99999999);Frame 3stop(); Mouse.show();Frame 12Life = 100; ParticleCounter = 0; ScoreCounter = 0; ComboTimer = 0; ComboMultiplier = 0; BeamColor = "0x00FF00"; BackSpeed = 20; StationEnergy = 200; EnemyMovD = 2000; StageLevel = 1; Special = "None"; SAmmo = 0; TotSAmmo = 10; NextShot = true; PGeneration = true; EGeneration = true; UGeneration = true; _root.attachMovie("DeviceID", "Device", 1002); _root.attachMovie("LaserGraphicID", "LaserGraphic", 1003); _root.attachMovie("LaserBeamOutputID", "LaserBeamOutput", 1004); _root.attachMovie("SubGraphic3ID", "SubGraphic3", 1005); Device._x = 20; Device._y = 126; IntroMusic.stop(); IntroMusic.attachSound("ParticleBlasterID"); IntroMusic.start(0, 999999);Frame 13this.onEnterFrame = function () { BackSpeed = _xmouse / 10; SpecialIdentity = Special; SpecialMeter._xscale = (SAmmo / TotSAmmo) * 100; if ((_ymouse > 126) && (_ymouse < 630)) { Device._y = _ymouse; } if (StationEnergy > 200) { StationEnergy = 200; } if (EnemyMovD >= 2100) { EnemyMovD = 2000; } if (DeviceReady == true) { SubGraphic3._x = Device._x + 16; SubGraphic3._y = Device._y; } else { SubGraphic3._x = HitDevice._x + 16; SubGraphic3._y = HitDevice._y; } if (((_ymouse > 126) && (_xmouse > 126)) && (_ymouse < 630)) { LaserGraphic._x = _xmouse; LaserGraphic._y = _ymouse; LaserGraphic._visible = 1; } else { LaserGraphic._visible = 0; } if (((_ymouse > 126) && (_xmouse > 126)) && (_ymouse < 630)) { LaserBeamOutput._x = 120; LaserBeamOutput._y = Device._y; LaserBeamOutput._y = HitDevice._y; LaserBeamOutput._visible = 1; } else { LaserBeamOutput._visible = 0; } if (Life >= 0) { LifeCounter = Life; } else { LifeCounter = 0; } LifeMeter._xscale = Life; if (LifeMeter._xscale >= 100) { LifeMeter._xscale = 100; } else if (LifeMeter._xscale <= 0) { LifeMeter._xscale = 0; } if (ParticleCounter >= 25) { StageCounter++; StageLevel++; ParticleCounter = 0; } if (StageLevel >= 4) { Messaging = "Laser Powered"; } if (ComboTimer != 0) { ComboTimer--; } else { ComboMultiplier = 1; } ComboShow = ComboMultiplier; }; _root.createEmptyMovieClip("laser", 1001); laser.lineStyle(2, BeamColor, 100); _root.createEmptyMovieClip("Crosslaser", 999); Crosslaser.lineStyle(2, 16777215, 100); if ((((_ymouse > 126) && (_ymouse < 630)) && (_xmouse > 126)) && (Special != "Destroyer")) { laser.moveTo(0, _ymouse); laser.lineTo(_xmouse, _ymouse); } if ((((_ymouse > 126) && (_ymouse < 630)) && (_xmouse > 126)) && (Special == "CrossBeam")) { Crosslaser.moveTo(_xmouse, 126); Crosslaser.lineTo(_xmouse, 630); } play(); if (((_ymouse > 126) && (_xmouse > 126)) && (_ymouse < 630)) { Mouse.hide(); } else { Mouse.show(); } Hit = 0; if (GameOver) { TheScore = ScoreCounter; gotoAndPlay (15); }Frame 14laser.clear(); Crosslaser.clear(); Hit = 1; prevFrame();Frame 15stop(); SaveScore = SharedObject.getLocal("LaserGameScore", "/"); if (TheScore > SaveScore.data.Score) { SaveScore.data.Score = TheScore; SaveScore.flush(); } HighScore = SaveScore.data.Score; YourScore = TheScore; Device.removeMovieClip(); LaserGraphic.removeMovieClip(); LaserBeamOutput.removeMovieClip(); SubGraphic3.removeMovieClip(); laser.removeMovieClip(); Crosslaser.removeMovieClip(); DestroyerDevice.removeMovieClip(); MissileLauncher.removeMovieClip(); Mouse.show(); IntroMusic.stop(); IntroMusic.attachSound("MenuBeatID"); IntroMusic.start(0, 999999); this.onEnterFrame = function () { };Symbol 4 MovieClip Frame 1this._x = (Math.random() * 20) - 10; this.onEnterFrame = function () { this._y = this._y - 4; this._alpha = this._y - -100; if (this._y > 100) { this.unloadMovie(); } };Symbol 10 MovieClip [GoodTargetTopID] Frame 1stop(); Speed = (Math.random() * 4) + 1; this.onEnterFrame = function () { DistY = Math.abs(_y - _root.Device._y); if (DistY <= 12) { if (this.hitTest(_root.laser) || (this.hitTest(_root.WaveBlast))) { play(); _root.Hitter.play(); } } if (_root.Special == "CrossBeam") { if (this.hitTest(_root.Crosslaser)) { play(); _root.Hitter.play(); } } if (this._y > 660) { this.unloadMovie(); } this._y = this._y + Speed; };Symbol 10 MovieClip [GoodTargetTopID] Frame 2_root.ParticleCounter = _root.ParticleCounter + 1; _root.StationEnergy = _root.StationEnergy + 10; _root.ScoreCounter = _root.ScoreCounter + (Math.round(this._x / 100) * _root.ComboMultiplier); _root.ComboTimer = 30; _root.ComboMultiplier++; _root.ComboShowX = _x; _root.ComboShowY = _y; _root.ComboViewer.gotoAndPlay(2); this.onEnterFrame = function () { this._x = this._x + ((_root.Device._x - this._x) / 10); this._y = this._y + ((_root.Device._y - this._y) / 10); if (this.hitTest(_root.Device)) { this.unloadMovie(); } };Symbol 10 MovieClip [GoodTargetTopID] Frame 26this.unloadMovie();Symbol 15 MovieClip [BadTargetTopID] Frame 1stop(); Speed = ((Math.random() * 4) + 1) + (_root.StageLevel / 10); this.onEnterFrame = function () { DistY = Math.abs(_y - _root.Device._y); if (DistY <= 12) { if (this.hitTest(_root.laser) || (this.hitTest(_root.WaveBlast))) { play(); _root.Hitter.play(); _root.Wall.play(); } } if (_root.Special == "Missile") { if (this.hitTest(_root.Missile)) { play(); _root.Missile.nextFrame(); HitbyMissle = true; } } if (this._y > 660) { this.unloadMovie(); } this._y = this._y + Speed; };Symbol 15 MovieClip [BadTargetTopID] Frame 2if (!HitByMissle) { _root.Life = _root.Life - 10; _root.ComboTimer = 0; _root.ComboMultiplier = 1; } else { _root.ParticleCounter = _root.ParticleCounter + 1; _root.StationEnergy = _root.StationEnergy + 10; _root.ScoreCounter = _root.ScoreCounter + (Math.round(this._x / 50) * _root.ComboMultiplier); _root.ComboTimer = 30; _root.ComboMultiplier++; _root.ComboShowX = _x; _root.ComboShowY = _y; _root.ComboViewer.gotoAndPlay(2); }Symbol 15 MovieClip [BadTargetTopID] Frame 21this.unloadMovie();Symbol 19 MovieClip [BadTargetBottomID] Frame 1stop(); Speed = ((Math.random() * 4) + 1) + (_root.StageLevel / 10); this.onEnterFrame = function () { DistY = Math.abs(_y - _root.Device._y); if (DistY <= 12) { if (this.hitTest(_root.laser) || (this.hitTest(_root.WaveBlast))) { play(); _root.Wall.play(); _root.Hitter.play(); } } if (_root.Special == "Missile") { if (this.hitTest(_root.Missile)) { play(); _root.Missile.nextFrame(); HitbyMissle = true; } } if (this._y < 0) { this.unloadMovie(); } this._y = this._y - Speed; };Symbol 19 MovieClip [BadTargetBottomID] Frame 2if (!HitByMissle) { _root.Life = _root.Life - 10; _root.ComboTimer = 0; _root.ComboMultiplier = 1; } else { _root.ParticleCounter = _root.ParticleCounter + 1; _root.StationEnergy = _root.StationEnergy + 10; _root.ScoreCounter = _root.ScoreCounter + (Math.round(this._x / 50) * _root.ComboMultiplier); _root.ComboTimer = 30; _root.ComboMultiplier++; _root.ComboShowX = _x; _root.ComboShowY = _y; _root.ComboViewer.gotoAndPlay(2); }Symbol 19 MovieClip [BadTargetBottomID] Frame 21this.unloadMovie();Symbol 23 MovieClip [GoodTargetBottomID] Frame 1stop(); Speed = (Math.random() * 4) + 1; this.onEnterFrame = function () { DistY = Math.abs(_y - _root.Device._y); if (DistY <= 12) { if (this.hitTest(_root.laser) || (this.hitTest(_root.WaveBlast))) { play(); _root.Hitter.play(); } } if (_root.Special == "CrossBeam") { if (this.hitTest(_root.Crosslaser)) { play(); _root.Hitter.play(); } } if (this._y < 0) { this.unloadMovie(); } this._y = this._y - Speed; };Symbol 23 MovieClip [GoodTargetBottomID] Frame 2_root.ParticleCounter = _root.ParticleCounter + 1; _root.StationEnergy = _root.StationEnergy + 10; _root.ScoreCounter = _root.ScoreCounter + (Math.round(this._x / 100) * _root.ComboMultiplier); _root.ComboTimer = 30; _root.ComboMultiplier++; _root.ComboShowX = _x; _root.ComboShowY = _y; _root.ComboViewer.gotoAndPlay(2); this.onEnterFrame = function () { this._x = this._x + ((_root.Device._x - this._x) / 10); this._y = this._y + ((_root.Device._y - this._y) / 10); if (this.hitTest(_root.Device)) { this.unloadMovie(); } };Symbol 23 MovieClip [GoodTargetBottomID] Frame 26this.unloadMovie();Symbol 30 MovieClip [LaserBeamOutputID] Frame 1this.onEnterFrame = function () { if (_root.Special == "Destroyer") { gotoAndStop (1); } else { play(); } };Symbol 30 MovieClip [LaserBeamOutputID] Frame 11if (_root.BeamColor == "0x00FF00") { gotoAndPlay (1); } else if (_root.BeamColor == "0x9933CC") { gotoAndPlay (12); } else if (_root.BeamColor == "0x0000FF") { gotoAndPlay (23); }Symbol 30 MovieClip [LaserBeamOutputID] Frame 12this.onEnterFrame = function () { if (_root.Special == "Destroyer") { gotoAndStop (12); } else { play(); } };Symbol 30 MovieClip [LaserBeamOutputID] Frame 22if (_root.BeamColor == "0x00FF00") { gotoAndPlay (1); } else if (_root.BeamColor == "0x9933CC") { gotoAndPlay (12); } else if (_root.BeamColor == "0x0000FF") { gotoAndPlay (23); }Symbol 30 MovieClip [LaserBeamOutputID] Frame 23this.onEnterFrame = function () { if (_root.Special == "Destroyer") { gotoAndStop (23); } else { play(); } };Symbol 30 MovieClip [LaserBeamOutputID] Frame 33if (_root.BeamColor == "0x00FF00") { gotoAndPlay (1); } else if (_root.BeamColor == "0x9933CC") { gotoAndPlay (12); } else if (_root.BeamColor == "0x0000FF") { gotoAndPlay (23); }Symbol 35 MovieClip Frame 74gotoAndPlay (1);Symbol 39 MovieClip Frame 1speedY = Math.random() * 4; DirX = Math.abs(Math.random() * 10); if ((DirX >= 0) && (DirX <= 5)) { speedX = Math.random() * 10; } else if ((DirX > 5) && (DirX <= 10)) { speedX = -(Math.random() * 10); } this.onEnterFrame = function () { if (this._y >= 7) { this._visible = 1; } else { this._visible = 0; } speedY = speedY - 1; this._y = this._y - (SpeedY / 7); this._rotation = this._rotation - 60; if ((((this._y >= 400) || (this._y <= -400)) || (this._x >= 400)) || (this._x <= -400)) { this.unloadMovie(); } };Symbol 39 MovieClip Frame 89stop();Symbol 40 MovieClip [LaserSparkerSetupID] Frame 1this._rotation = Math.random() * 360;Symbol 44 MovieClip [MissilePowerUPID] Frame 1Speed = (Math.random() * 4) + 1;Symbol 44 MovieClip [MissilePowerUPID] Frame 2stop(); this.onEnterFrame = function () { this._y = this._y + Speed; Player++; if (this._y > 660) { this.unloadMovie(); } if (Player == 30) { play(); Player = 0; } if (this.hitTest(_root.laser) || (this.hitTest(_root.WaveBlast))) { _root.Special = "Missile"; _root.SAmmo = 20; _root.TotSAmmo = 20; _root.attachMovie("MissileLauncherID", "MissileLauncher", 1006); _root.attachMovie("PowerUpShineID", "PowerUpShine", 100); _root.PowerUpShine._x = this._x; _root.PowerUpShine._y = this._y; this.unloadMovie(); } };Symbol 44 MovieClip [MissilePowerUPID] Frame 3this.onEnterFrame = function () { if (this.hitTest(_root.laser) || (this.hitTest(_root.WaveBlast))) { _root.Special = "Missile"; _root.SAmmo = 20; _root.TotSAmmo = 20; _root.attachMovie("MissileLauncherID", "MissileLauncher", 1006); _root.attachMovie("PowerUpShineID", "PowerUpShine", 100); _root.PowerUpShine._x = this._x; _root.PowerUpShine._y = this._y; this.unloadMovie(); } this._y = this._y + Speed; };Symbol 44 MovieClip [MissilePowerUPID] Frame 81gotoAndPlay (2);Symbol 47 MovieClip [PowerUpShineID] Frame 1this.onEnterFrame = function () { this._x = this._x + ((_root.Device._x - this._x) / 10); this._y = this._y + ((_root.Device._y - this._y) / 10); if (this.hitTest(_root.Device)) { this.unloadMovie(); } };Symbol 61 MovieClip [MissileLauncherID] Frame 1stop(); this.onEnterFrame = function () { this._x = _root.Device._x + 80; if ((_root._ymouse >= 126) && (_root._ymouse <= 630)) { this._y = _root._ymouse; } if (_root.SAmmo <= 0) { _root.Special = "None"; this.unloadMovie(); } if (_root.HitDevice._currentframe >= 1) { this.gotoAndStop("Hit"); } }; this.onMouseDown = function () { if (_root.NextShot == true) { _root.attachMovie("MissileShotID", "Missile", 200); play(); _root.NextShot = false; _root.SAmmo = _root.SAmmo - 1; } };Symbol 61 MovieClip [MissileLauncherID] Frame 2this.onMouseDown = function () { };Symbol 61 MovieClip [MissileLauncherID] Frame 32gotoAndStop (1);Symbol 61 MovieClip [MissileLauncherID] Frame 33stop(); this.onEnterFrame = function () { if ((_root._ymouse >= 126) && (_root._ymouse <= 630)) { this._y = _root._ymouse; } this._x = _root.HitDevice._x + 80; if (_root.Device._currentframe >= 1) { this.gotoAndStop(1); } }; this.onMouseDown = function () { };Symbol 64 MovieClip [MissileShotID] Frame 1A = new Array(); this._x = _root.Device._x + 90; this._y = _root.Device._y; stop(); this.onEnterFrame = function () { Speed++; this._x = this._x + Speed; _root.attachMovie("MissileSmokeID", "MissileSmoke" + MovD, MovD); A[MovD] = _root["MissileSmoke" + MovD]; A[MovD]._x = this._x; A[MovD]._y = this._y; MovD++; if (MovD >= 99) { MovD = 0; } if (this._x >= 660) { _root.NextShot = true; this.unloadMovie(); } };Symbol 64 MovieClip [MissileShotID] Frame 2Growth = 10; stop(); this.onEnterFrame = function () { this._xscale = this._xscale + (Growth * 20); this._yscale = this._yscale + Growth; this._alpha = this._alpha - 2; if (this._xscale >= 10000) { this.unloadMovie(); _root.NextShot = true; } };Symbol 67 MovieClip [MissileSmokeID] Frame 15this.unloadMovie();Symbol 73 MovieClip [LifeUpID] Frame 1Speed = (Math.random() * 4) + 1; this.onEnterFrame = function () { if (this.hitTest(_root.laser) || (this.hitTest(_root.WaveBlast))) { _root.Life = _root.Life + 20; _root.attachMovie("PowerUpShineID", "PowerUpShine", 100); _root.PowerUpShine._x = this._x; _root.PowerUpShine._y = this._y; this.unloadMovie(); } if (this._y > 660) { this.unloadMovie(); } this._y = this._y + Speed; };Symbol 73 MovieClip [LifeUpID] Frame 40gotoAndPlay (2);Symbol 75 MovieClip [CrossPowerUPID] Frame 1Speed = (Math.random() * 4) + 1;Symbol 75 MovieClip [CrossPowerUPID] Frame 2stop(); this.onEnterFrame = function () { this._y = this._y + Speed; if (this._y > 660) { this.unloadMovie(); } if (this.hitTest(_root.laser) || (this.hitTest(_root.WaveBlast))) { _root.Special = "CrossBeam"; _root.SAmmo = 200; _root.TotSAmmo = 200; _root.attachMovie("CrossDeviceID", "CrossDevice", 1006); _root.attachMovie("PowerUpShineID", "PowerUpShine", 100); _root.PowerUpShine._x = this._x; _root.PowerUpShine._y = this._y; this.unloadMovie(); } };Symbol 77 MovieClip [CrossDeviceID] Frame 1this.onEnterFrame = function () { if (_root._xmouse >= 126) { this._x = _root._xmouse; } this._y = 126; _root.SAmmo = _root.SAmmo - 0.1; if (_root.SAmmo <= 0) { _root.Special = "None"; this.unloadMovie(); } };Symbol 83 MovieClip [DestroyerDeviceID] Frame 1stop(); this.onEnterFrame = function () { this._x = _root.Device._x; if ((_root._ymouse >= 126) && (_root._ymouse <= 630)) { this._y = _root._ymouse; } if (_root.SAmmo <= 0) { _root.Special = "None"; this.unloadMovie(); } if (_root.HitDevice._currentframe >= 1) { this.gotoAndStop("Hit"); } }; this.onMouseDown = function () { if (_root.NextShot == true) { _root.attachMovie("WaveBlastID", "WaveBlast", 200); play(); _root.NextShot = false; _root.SAmmo = _root.SAmmo - 1; } };Symbol 83 MovieClip [DestroyerDeviceID] Frame 7gotoAndStop (1);Symbol 83 MovieClip [DestroyerDeviceID] Frame 8stop(); this.onEnterFrame = function () { if ((_root._ymouse >= 126) && (_root._ymouse <= 630)) { this._y = _root._ymouse; } this._x = _root.HitDevice._x; if (_root.Device._currentframe >= 1) { this.gotoAndStop(1); } };Symbol 87 MovieClip [DestroyerPowerUPID] Frame 1Speed = (Math.random() * 4) + 1;Symbol 87 MovieClip [DestroyerPowerUPID] Frame 2this.onEnterFrame = function () { this._y = this._y + Speed; if (this.hitTest(_root.laser) || (this.hitTest(_root.WaveBlast))) { _root.Special = "Destroyer"; _root.SAmmo = 50; _root.TotSAmmo = 50; _root.attachMovie("DestroyerDeviceID", "DestroyerDevice", 1006); _root.attachMovie("PowerUpShineID", "PowerUpShine", 100); _root.PowerUpShine._x = this._x; _root.PowerUpShine._y = this._y; this.unloadMovie(); } };Symbol 87 MovieClip [DestroyerPowerUPID] Frame 40gotoAndPlay (2);Symbol 90 MovieClip [WaveBlastID] Frame 1this._x = _root._xmouse; this._y = _root._ymouse;Symbol 90 MovieClip [WaveBlastID] Frame 8this.unloadMovie(); _root.NextShot = true;Symbol 94 MovieClip [GoodTargetBlueTopID] Frame 1stop(); Speed = (Math.random() * 4) + 1; this.onEnterFrame = function () { DistY = Math.abs(_y - _root.Device._y); if (DistY <= 12) { if ((this.hitTest(_root.laser) && (_root.BeamColor == "0x0000FF")) || (this.hitTest(_root.WaveBlast))) { play(); _root.Hitter.play(); } else if (this.hitTest(_root.laser) && (_root.BeamColor != "0x0000FF")) { play(); _root.Hitter.play(); _root.Wall.play(); HitByWrong = true; } } if (this._y > 660) { this.unloadMovie(); } this._y = this._y + Speed; };Symbol 94 MovieClip [GoodTargetBlueTopID] Frame 2if (HitByWrong) { _root.Life = _root.Life - 10; _root.ComboTimer = 0; _root.ComboMultiplier = 1; } else { _root.ParticleCounter = _root.ParticleCounter + 1; _root.StationEnergy = _root.StationEnergy + 10; _root.ScoreCounter = _root.ScoreCounter + (Math.round(this._x / 100) * _root.ComboMultiplier); _root.ComboTimer = 30; _root.ComboMultiplier++; _root.ComboShowX = _x; _root.ComboShowY = _y; _root.ComboViewer.gotoAndPlay(2); } this.onEnterFrame = function () { this._x = this._x + ((_root.Device._x - this._x) / 10); this._y = this._y + ((_root.Device._y - this._y) / 10); if (this.hitTest(_root.Device)) { this.unloadMovie(); } };Symbol 94 MovieClip [GoodTargetBlueTopID] Frame 26this.unloadMovie();Symbol 97 MovieClip [GoodTargetBlueBottomID] Frame 1stop(); Speed = (Math.random() * 4) + 1; this.onEnterFrame = function () { DistY = Math.abs(_y - _root.Device._y); if (DistY <= 12) { if ((this.hitTest(_root.laser) && (_root.BeamColor == "0x0000FF")) || (this.hitTest(_root.WaveBlast))) { play(); _root.Hitter.play(); } else if (this.hitTest(_root.laser) && (_root.BeamColor != "0x0000FF")) { play(); _root.Hitter.play(); _root.Wall.play(); HitByWrong = true; } } if (this._y < 0) { this.unloadMovie(); } this._y = this._y - Speed; };Symbol 97 MovieClip [GoodTargetBlueBottomID] Frame 2if (HitByWrong) { _root.Life = _root.Life - 10; _root.ComboTimer = 0; _root.ComboMultiplier = 1; } else { _root.ParticleCounter = _root.ParticleCounter + 1; _root.StationEnergy = _root.StationEnergy + 10; _root.ScoreCounter = _root.ScoreCounter + (Math.round(this._x / 100) * _root.ComboMultiplier); _root.ComboTimer = 30; _root.ComboMultiplier++; _root.ComboShowX = _x; _root.ComboShowY = _y; _root.ComboViewer.gotoAndPlay(2); } this.onEnterFrame = function () { this._x = this._x + ((_root.Device._x - this._x) / 10); this._y = this._y + ((_root.Device._y - this._y) / 10); if (this.hitTest(_root.Device)) { this.unloadMovie(); } };Symbol 97 MovieClip [GoodTargetBlueBottomID] Frame 26this.unloadMovie();Symbol 101 MovieClip [GoodTargetPurpleTopID] Frame 1stop(); Speed = (Math.random() * 4) + 1; this.onEnterFrame = function () { DistY = Math.abs(_y - _root.Device._y); if (DistY <= 12) { if ((this.hitTest(_root.laser) && (_root.BeamColor == "0x9933CC")) || (this.hitTest(_root.WaveBlast))) { play(); _root.Hitter.play(); } else if (this.hitTest(_root.laser) && (_root.BeamColor != "0x9933CC")) { play(); _root.Hitter.play(); _root.Wall.play(); HitByWrong = true; } } if (this._y > 660) { this.unloadMovie(); } this._y = this._y + Speed; };Symbol 101 MovieClip [GoodTargetPurpleTopID] Frame 2if (HitByWrong) { _root.Life = _root.Life - 10; _root.ComboTimer = 0; _root.ComboMultiplier = 1; } else { _root.ParticleCounter = _root.ParticleCounter + 1; _root.StationEnergy = _root.StationEnergy + 10; _root.ScoreCounter = _root.ScoreCounter + (Math.round(this._x / 100) * _root.ComboMultiplier); _root.ComboTimer = 30; _root.ComboMultiplier++; _root.ComboShowX = _x; _root.ComboShowY = _y; _root.ComboViewer.gotoAndPlay(2); } this.onEnterFrame = function () { this._x = this._x + ((_root.Device._x - this._x) / 10); this._y = this._y + ((_root.Device._y - this._y) / 10); if (this.hitTest(_root.Device)) { this.unloadMovie(); } };Symbol 101 MovieClip [GoodTargetPurpleTopID] Frame 26this.unloadMovie();Symbol 104 MovieClip [GoodTargetPurpleBottomID] Frame 1stop(); Speed = (Math.random() * 4) + 1; this.onEnterFrame = function () { DistY = Math.abs(_y - _root.Device._y); if (DistY <= 12) { if ((this.hitTest(_root.laser) && (_root.BeamColor == "0x9933CC")) || (this.hitTest(_root.WaveBlast))) { play(); _root.Hitter.play(); } else if (this.hitTest(_root.laser) && (_root.BeamColor != "0x9933CC")) { play(); _root.Hitter.play(); _root.Wall.play(); HitByWrong = true; } } if (this._y < 0) { this.unloadMovie(); } this._y = this._y - Speed; };Symbol 104 MovieClip [GoodTargetPurpleBottomID] Frame 2if (HitByWrong) { _root.Life = _root.Life - 10; _root.ComboTimer = 0; _root.ComboMultiplier = 1; } else { _root.ParticleCounter = _root.ParticleCounter + 1; _root.StationEnergy = _root.StationEnergy + 10; _root.ScoreCounter = _root.ScoreCounter + (Math.round(this._x / 100) * _root.ComboMultiplier); _root.ComboTimer = 30; _root.ComboMultiplier++; _root.ComboShowX = _x; _root.ComboShowY = _y; _root.ComboViewer.gotoAndPlay(2); } this.onEnterFrame = function () { this._x = this._x + ((_root.Device._x - this._x) / 10); this._y = this._y + ((_root.Device._y - this._y) / 10); if (this.hitTest(_root.Device)) { this.unloadMovie(); } };Symbol 104 MovieClip [GoodTargetPurpleBottomID] Frame 26this.unloadMovie();Symbol 115 MovieClip [LaserGraphicID] Frame 10if ((_root.BeamColor == "0x00FF00") && (_root.Special != "Destroyer")) { gotoAndPlay (1); } else if ((_root.BeamColor == "0x9933CC") && (_root.Special != "Destroyer")) { gotoAndPlay (12); } else if ((_root.BeamColor == "0x0000FF") && (_root.Special != "Destroyer")) { gotoAndPlay (22); } else if (_root.Special == "Destroyer") { gotoAndStop (11); }Symbol 115 MovieClip [LaserGraphicID] Frame 11this.onEnterFrame = function () { if (((_root.Special == "None") || (_root.Special == "Missile")) || (_root.Special == "CrossBeam")) { if (_root.BeamColor == "0x00FF00") { gotoAndPlay (1); } else if (_root.BeamColor == "0x9933CC") { gotoAndPlay (12); } else if (_root.BeamColor == "0x0000FF") { gotoAndPlay (22); } } };Symbol 115 MovieClip [LaserGraphicID] Frame 21if ((_root.BeamColor == "0x00FF00") && (_root.Special != "Destroyer")) { gotoAndPlay (1); } else if ((_root.BeamColor == "0x9933CC") && (_root.Special != "Destroyer")) { gotoAndPlay (12); } else if ((_root.BeamColor == "0x0000FF") && (_root.Special != "Destroyer")) { gotoAndPlay (22); } else if (_root.Special == "Destroyer") { gotoAndStop (11); }Symbol 115 MovieClip [LaserGraphicID] Frame 31if ((_root.BeamColor == "0x00FF00") && (_root.Special != "Destroyer")) { gotoAndPlay (1); } else if ((_root.BeamColor == "0x9933CC") && (_root.Special != "Destroyer")) { gotoAndPlay (12); } else if ((_root.BeamColor == "0x0000FF") && (_root.Special != "Destroyer")) { gotoAndPlay (22); } else if (_root.Special == "Destroyer") { gotoAndStop (11); }Symbol 116 MovieClip [SmokingID] Frame 1MovD = 2; this.onEnterFrame = function () { A = new Array(); this.attachMovie("WaterID", "Water" + MovD, MovD); A[MovD] = this["Water" + MovD]; MovD++; if (MovD >= 200) { MovD = 2; } };Symbol 121 MovieClip Frame 1Mov = 2; this.onEnterFrame = function () { Light._x = Light._x + Mov; if (Light._x <= 0) { Mov = 2; } else if (Light._x >= 60) { Mov = -2; } };Symbol 123 MovieClip [DeviceID] Frame 1stop(); this._name = "Device"; _root.DeviceReady = true; this.onEnterFrame = function () { };Symbol 123 MovieClip [DeviceID] Frame 2stop(); this._name = "HitDevice"; _root.DeviceReady = false; this.onEnterFrame = function () { Nexter++; if (Nexter == 60) { prevFrame(); Nexter = 0; } if ((_root._ymouse >= 126) && (_root._ymouse < 630)) { this._y = _root._ymouse; } };Symbol 131 Buttonon (release) { _root.play(); }Symbol 134 MovieClip Frame 1stop(); this.createEmptyMovieClip("Etching", 101);Symbol 134 MovieClip Frame 2Etching.moveTo(LaserBlast._x, LaserBlast._y); Etching.lineStyle(0.5, 16776960, 100); this.onEnterFrame = function () { Etching.lineTo(LaserBlast._x, LaserBlast._y); };Symbol 134 MovieClip Frame 102Etching.clear();Symbol 134 MovieClip Frame 201stop();Symbol 139 MovieClip Frame 1stop(); this.onEnterFrame = function () { if (_root.Loaded == 100) { play(); } };Symbol 139 MovieClip Frame 81gotoAndPlay (2);Symbol 140 MovieClip Frame 1this.lineStyle(2, 65280, 100); this.lineTo(_xmouse, _ymouse); Smoke._x = _xmouse; Smoke._y = _ymouse; play(); Mouse.hide();Symbol 140 MovieClip Frame 2this.clear(); prevFrame();Symbol 149 MovieClip Frame 137stop(); _parent.play();Symbol 159 MovieClip Frame 1this.createEmptyMovieClip("Etching", 101);Symbol 159 MovieClip Frame 2MovD = 0; StartMovie = 0; Another = 0; Etching.moveTo(LaserBlast._x, LaserBlast._y); Etching.lineStyle(0.5, 16776960, 100); stop(); this.onEnterFrame = function () { Etching.lineTo(LaserBlast._x, LaserBlast._y); Another++; if (Another == 3) { A = new Array(); _root.attachMovie("LaserSparkerSetupID", "LaserSparker" + MovD, MovD); A[MovD] = _root["LaserSparker" + MovD]; A[MovD]._x = LaserBlast._x + this._x; A[MovD]._y = LaserBlast._y + this._y; MovD++; Another = 0; } if (MovD == 100) { MovD = 0; } StartMovie++; if (StartMovie == 120) { play(); } };Symbol 159 MovieClip Frame 3MovD = 0; Another = 0; Etching.moveTo(LaserBlast._x, LaserBlast._y); Etching.lineStyle(0.5, 16776960, 100); this.onEnterFrame = function () { Etching.lineTo(LaserBlast._x, LaserBlast._y); Another++; if (Another == 3) { A = new Array(); _root.attachMovie("LaserSparkerSetupID", "LaserSparker" + MovD, MovD); A[MovD] = _root["LaserSparker" + MovD]; A[MovD]._x = LaserBlast._x + this._x; A[MovD]._y = LaserBlast._y + this._y; MovD++; Another = 0; } if (MovD == 100) { MovD = 0; } };Symbol 159 MovieClip Frame 230this.onEnterFrame = function () { Etching.stop(); };Symbol 159 MovieClip Frame 232stop(); Etching.clear();Symbol 159 MovieClip Frame 233this.createEmptyMovieClip("Etching", 101); Etching.moveTo(LaserBlast._x, LaserBlast._y); Etching.lineStyle(0.5, 16776960, 100); this.onEnterFrame = function () { Etching.lineTo(LaserBlast._x, LaserBlast._y); Another++; if (Another == 3) { A = new Array(); _root.attachMovie("LaserSparkerSetupID", "LaserSparker" + MovD, MovD); A[MovD] = _root["LaserSparker" + MovD]; A[MovD]._x = LaserBlast._x + this._x; A[MovD]._y = LaserBlast._y + this._y; MovD++; Another = 0; } if (MovD == 100) { MovD = 0; } };Symbol 159 MovieClip Frame 313this.onEnterFrame = function () { Etching.stop(); };Symbol 159 MovieClip Frame 314Etching.clear();Symbol 159 MovieClip Frame 552stop(); _parent.play();Symbol 165 Buttonon (release) { Details.gotoAndStop("HighScore"); }Symbol 169 Buttonon (release) { _parent.play(); }Symbol 171 Buttonon (release) { Details.gotoAndStop("Explanation"); }Symbol 199 MovieClip Frame 52_parent.nextFrame();Symbol 222 MovieClip Frame 1stop();Symbol 225 Buttonon (release) { nextFrame(); }Symbol 250 MovieClip Frame 1stop();Symbol 250 MovieClip Frame 10SaveScore = SharedObject.getLocal("LaserGameScore", "/"); HighScore = SaveScore.data.Score;Symbol 257 MovieClip Frame 1stop(); this.onEnterFrame = function () { if (_root.StageLevel == 60) { play(); } };Symbol 257 MovieClip Frame 2this.onEnterFrame = function () { Movement._x = Movement._x - _root.BackSpeed; if (Movement._x < 0) { Movement._x = Movement._width / 2; } };Symbol 257 MovieClip Frame 120stop(); _root.PGeneration = false;Symbol 258 MovieClip Frame 1MovD = 200;Symbol 258 MovieClip Frame 2stop(); this.onEnterFrame = function () { CO = Math.random() * 40; CT = Math.round(Math.random() * 1); if (((CO >= 39) && (CO <= 40)) && (_root.PGeneration == true)) { if (CT == 0) { this.attachMovie("GoodTargetTopID", "GoodTargetTop" + MovD, MovD); this["GoodTargetTop" + MovD]._x = (Math.random() * 500) + 150; MovD++; } else if (CT == 1) { this.attachMovie("BadTargetTopID", "BadTargetTop" + MovD, MovD); this["BadTargetTop" + MovD]._x = (Math.random() * 500) + 150; MovD++; } } else if (((CO >= 0) && (CO <= 1)) && (_root.PGeneration == true)) { if (CT == 0) { this.attachMovie("GoodTargetBottomID", "GoodTargetBottom" + MovD, MovD); this["GoodTargetBottom" + MovD]._x = (Math.random() * 500) + 150; this["GoodTargetBottom" + MovD]._y = 650; MovD++; } else if (CT == 1) { this.attachMovie("BadTargetBottomID", "BadTargetBottom" + MovD, MovD); this["BadTargetBottom" + MovD]._x = (Math.random() * 500) + 150; this["BadTargetBottom" + MovD]._y = 650; MovD++; } } else if (((CO >= 5) && (CO <= 6)) && (_root.PGeneration == true)) { if ((CT == 0) && (_root.StageLevel >= 4)) { this.attachMovie("GoodTargetBlueBottomID", "GoodTargetBlueBottom" + MovD, MovD); this["GoodTargetBlueBottom" + MovD]._x = (Math.random() * 500) + 150; this["GoodTargetBlueBottom" + MovD]._y = 650; MovD++; } else if ((CT == 1) && (_root.StageLevel >= 10)) { this.attachMovie("GoodTargetPurpleBottomID", "GoodTargetPurpleBottom" + MovD, MovD); this["GoodTargetPurpleBottom" + MovD]._x = (Math.random() * 500) + 150; this["GoodTargetPurpleBottom" + MovD]._y = 650; MovD++; } } else if (((CO >= 7) && (CO <= 8)) && (_root.PGeneration == true)) { if ((CT == 0) && (_root.StageLevel >= 7)) { this.attachMovie("GoodTargetBlueTopID", "GoodTargetBlueTop" + MovD, MovD); this["GoodTargetBlueTop" + MovD]._x = (Math.random() * 500) + 150; this["GoodTargetBlueTop" + MovD]._y = 650; MovD++; } else if ((CT == 1) && (_root.StageLevel >= 12)) { this.attachMovie("GoodTargetPurpleTopID", "GoodTargetPurpleTop" + MovD, MovD); this["GoodTargetPurpleTop" + MovD]._x = (Math.random() * 500) + 150; this["GoodTargetPurpleTop" + MovD]._y = 650; MovD++; } } if (MovD >= 250) { MovD = 200; } if (_root.StageLevel >= 4) { if (Key.isDown(37)) { _root.BeamColor = "0x9933CC"; } else if (Key.isDown(39)) { _root.BeamColor = "0x0000FF"; } } };Symbol 270 MovieClip Frame 1stop(); this.onEnterFrame = function () { if ((_root.Life <= 0) || (_root.StationEnergy <= 0)) { gotoAndPlay (21); } };Symbol 270 MovieClip Frame 20gotoAndStop (1);Symbol 270 MovieClip Frame 21this.onEnterFrame = function () { };Symbol 270 MovieClip Frame 89this.unloadMovie(); _root.GameOver = true;Symbol 271 MovieClip Frame 1MovD = 4001;Symbol 271 MovieClip Frame 2stop(); this.onEnterFrame = function () { Type = Math.round((Math.random() * 3) + 1); CO = Math.random() * 50; CT = Math.round(Math.random() * 50); A = new Array(); if (((((CO >= 1) && (CO <= 2)) && (CT >= 1)) && (CT <= 2)) && (_root.UGeneration == true)) { if (Type == 1) { this.attachMovie("MissilePowerUPID", "MissilePowerUPID" + MovD, MovD); A[MovD] = this["MissilePowerUPID" + MovD]; A[MovD]._x = (Math.random() * 500) + 150; MovD++; } else if (Type == 2) { this.attachMovie("LifeUpID", "LifeUpID" + MovD, MovD); A[MovD] = this["LifeUpID" + MovD]; A[MovD]._x = (Math.random() * 500) + 150; MovD++; } else if (Type == 3) { this.attachMovie("CrossPowerUPID", "CrossPowerUP" + MovD, MovD); A[MovD] = this["CrossPowerUP" + MovD]; A[MovD]._x = (Math.random() * 500) + 150; MovD++; } else if (Type == 4) { this.attachMovie("DestroyerPowerUPID", "DestroyerPowerUP" + MovD, MovD); A[MovD] = this["DestroyerPowerUP" + MovD]; A[MovD]._x = (Math.random() * 500) + 150; MovD++; } } if (MovD >= 4500) { MovD = 4001; } };Symbol 288 MovieClip Frame 1this.onEnterFrame = function () { if (_root.PGeneration == true) { _root.StationEnergy = _root.StationEnergy - 0.15; } Counter._x = _root.StationEnergy; if (Counter._x <= 0) { Counter._x = 0; } };Symbol 293 MovieClip Frame 1stop(); this.onEnterFrame = function () { if (_root.StageLevel >= 4) { play(); } };Symbol 293 MovieClip Frame 42this.unloadMovie();Symbol 295 MovieClip Frame 1stop(); this.onEnterFrame = function () { _x = _root.ComboShowX; _y = _root.ComboShowY; };Symbol 295 MovieClip Frame 2ComboShow = _root.ComboMultiplier - 1;Symbol 302 Buttonon (release) { gotoAndPlay (12); GameOver = false; }Symbol 304 Buttonon (release) { gotoAndStop (3); }
Library Items
Symbol 1 Sound [ParticleBlasterID] | ||
Symbol 2 Sound [MenuBeatID] | ||
Symbol 3 Graphic | Used by:4 | |
Symbol 4 MovieClip | Uses:3 | Used by:5 |
Symbol 5 MovieClip [WaterID] | Uses:4 | |
Symbol 6 Graphic | Used by:10 | |
Symbol 7 ShapeTweening | Used by:10 | |
Symbol 8 ShapeTweening | Used by:10 | |
Symbol 9 Graphic | Used by:10 23 47 94 97 101 104 | |
Symbol 10 MovieClip [GoodTargetTopID] | Uses:6 7 8 9 | |
Symbol 11 Graphic | Used by:15 | |
Symbol 12 ShapeTweening | Used by:15 | |
Symbol 13 ShapeTweening | Used by:15 | |
Symbol 14 Graphic | Used by:15 19 | |
Symbol 15 MovieClip [BadTargetTopID] | Uses:11 12 13 14 | |
Symbol 16 Graphic | Used by:19 | |
Symbol 17 ShapeTweening | Used by:19 | |
Symbol 18 ShapeTweening | Used by:19 | |
Symbol 19 MovieClip [BadTargetBottomID] | Uses:16 17 18 14 | |
Symbol 20 Graphic | Used by:23 | |
Symbol 21 ShapeTweening | Used by:23 | |
Symbol 22 ShapeTweening | Used by:23 | |
Symbol 23 MovieClip [GoodTargetBottomID] | Uses:20 21 22 9 | |
Symbol 24 ShapeTweening | Used by:30 | |
Symbol 25 Graphic | Used by:30 | |
Symbol 26 ShapeTweening | Used by:30 | |
Symbol 27 Graphic | Used by:30 | |
Symbol 28 ShapeTweening | Used by:30 | |
Symbol 29 Graphic | Used by:30 | |
Symbol 30 MovieClip [LaserBeamOutputID] | Uses:24 25 26 27 28 29 | |
Symbol 31 Graphic | Used by:36 | |
Symbol 32 ShapeTweening | Used by:35 | |
Symbol 33 ShapeTweening | Used by:35 | |
Symbol 34 Graphic | Used by:35 | |
Symbol 35 MovieClip | Uses:32 33 34 | Used by:36 261 |
Symbol 36 MovieClip [SubGraphic3ID] | Uses:31 35 | |
Symbol 37 ShapeTweening | Used by:39 | |
Symbol 38 Graphic | Used by:39 | |
Symbol 39 MovieClip | Uses:37 38 | Used by:40 |
Symbol 40 MovieClip [LaserSparkerSetupID] | Uses:39 | |
Symbol 41 Graphic | Used by:44 | |
Symbol 42 ShapeTweening | Used by:44 | |
Symbol 43 ShapeTweening | Used by:44 | |
Symbol 44 MovieClip [MissilePowerUPID] | Uses:41 42 43 | |
Symbol 45 ShapeTweening | Used by:47 | |
Symbol 46 ShapeTweening | Used by:47 | |
Symbol 47 MovieClip [PowerUpShineID] | Uses:45 46 9 | |
Symbol 48 Graphic | Used by:61 | |
Symbol 49 ShapeTweening | Used by:61 | |
Symbol 50 ShapeTweening | Used by:61 | |
Symbol 51 ShapeTweening | Used by:61 | |
Symbol 52 Graphic | Used by:61 | |
Symbol 53 ShapeTweening | Used by:61 | |
Symbol 54 ShapeTweening | Used by:61 | |
Symbol 55 Graphic | Used by:61 | |
Symbol 56 Graphic | Used by:61 | |
Symbol 57 Graphic | Used by:60 | |
Symbol 58 Graphic | Used by:60 | |
Symbol 59 Graphic | Used by:60 | |
Symbol 60 MovieClip | Uses:57 58 59 | Used by:61 83 123 |
Symbol 61 MovieClip [MissileLauncherID] | Uses:48 49 50 51 52 53 54 55 56 60 | |
Symbol 62 Graphic | Used by:64 | |
Symbol 63 Graphic | Used by:64 | |
Symbol 64 MovieClip [MissileShotID] | Uses:62 63 | |
Symbol 65 ShapeTweening | Used by:67 | |
Symbol 66 Graphic | Used by:67 | |
Symbol 67 MovieClip [MissileSmokeID] | Uses:65 66 | |
Symbol 68 Graphic | Used by:73 | |
Symbol 69 ShapeTweening | Used by:73 | |
Symbol 70 Graphic | Used by:73 | |
Symbol 71 ShapeTweening | Used by:73 | |
Symbol 72 Graphic | Used by:73 | |
Symbol 73 MovieClip [LifeUpID] | Uses:68 69 70 71 72 | |
Symbol 74 Graphic | Used by:75 | |
Symbol 75 MovieClip [CrossPowerUPID] | Uses:74 | |
Symbol 76 Graphic | Used by:77 | |
Symbol 77 MovieClip [CrossDeviceID] | Uses:76 | |
Symbol 78 Graphic | Used by:83 | |
Symbol 79 ShapeTweening | Used by:83 | |
Symbol 80 Graphic | Used by:83 | |
Symbol 81 Graphic | Used by:83 | |
Symbol 82 Graphic | Used by:83 | |
Symbol 83 MovieClip [DestroyerDeviceID] | Uses:78 79 80 81 82 60 | |
Symbol 84 Graphic | Used by:87 | |
Symbol 85 ShapeTweening | Used by:87 | |
Symbol 86 ShapeTweening | Used by:87 | |
Symbol 87 MovieClip [DestroyerPowerUPID] | Uses:84 85 86 | |
Symbol 88 ShapeTweening | Used by:90 | |
Symbol 89 Graphic | Used by:90 | |
Symbol 90 MovieClip [WaveBlastID] | Uses:88 89 | |
Symbol 91 Graphic | Used by:94 97 | |
Symbol 92 ShapeTweening | Used by:94 | |
Symbol 93 ShapeTweening | Used by:94 | |
Symbol 94 MovieClip [GoodTargetBlueTopID] | Uses:91 92 93 9 | |
Symbol 95 ShapeTweening | Used by:97 | |
Symbol 96 ShapeTweening | Used by:97 | |
Symbol 97 MovieClip [GoodTargetBlueBottomID] | Uses:91 95 96 9 | |
Symbol 98 Graphic | Used by:101 104 | |
Symbol 99 ShapeTweening | Used by:101 | |
Symbol 100 ShapeTweening | Used by:101 | |
Symbol 101 MovieClip [GoodTargetPurpleTopID] | Uses:98 99 100 9 | |
Symbol 102 ShapeTweening | Used by:104 | |
Symbol 103 ShapeTweening | Used by:104 | |
Symbol 104 MovieClip [GoodTargetPurpleBottomID] | Uses:98 102 103 9 | |
Symbol 105 ShapeTweening | Used by:115 | |
Symbol 106 ShapeTweening | Used by:115 | |
Symbol 107 Graphic | Used by:115 | |
Symbol 108 Graphic | Used by:115 | |
Symbol 109 ShapeTweening | Used by:115 | |
Symbol 110 ShapeTweening | Used by:115 | |
Symbol 111 Graphic | Used by:115 | |
Symbol 112 ShapeTweening | Used by:115 | |
Symbol 113 ShapeTweening | Used by:115 | |
Symbol 114 Graphic | Used by:115 | |
Symbol 115 MovieClip [LaserGraphicID] | Uses:105 106 107 108 109 110 111 112 113 114 | Used by:288 |
Symbol 116 MovieClip [SmokingID] | Used by:140 Timeline | |
Symbol 117 Graphic | Used by:123 | |
Symbol 118 Graphic | Used by:121 | |
Symbol 119 Graphic | Used by:120 | |
Symbol 120 MovieClip | Uses:119 | Used by:121 |
Symbol 121 MovieClip | Uses:118 120 | Used by:123 |
Symbol 122 Graphic | Used by:123 | |
Symbol 123 MovieClip [DeviceID] | Uses:117 121 122 60 | Used by:Timeline |
Symbol 124 Font | Used by:125 130 135 162 166 170 224 285 286 294 303 | |
Symbol 125 EditableText | Uses:124 | Used by:Timeline |
Symbol 126 ShapeTweening | Used by:128 | |
Symbol 127 Graphic | Used by:128 | |
Symbol 128 MovieClip | Uses:126 127 | Used by:134 |
Symbol 129 Graphic | Used by:131 134 235 | |
Symbol 130 Text | Uses:124 | Used by:131 134 |
Symbol 131 Button | Uses:129 130 | Used by:134 |
Symbol 132 ShapeTweening | Used by:134 | |
Symbol 133 Graphic | Used by:134 | |
Symbol 134 MovieClip | Uses:128 129 130 131 132 133 | Used by:Timeline |
Symbol 135 Text | Uses:124 | Used by:139 |
Symbol 136 ShapeTweening | Used by:139 | |
Symbol 137 ShapeTweening | Used by:139 | |
Symbol 138 Graphic | Used by:139 | |
Symbol 139 MovieClip | Uses:135 136 137 138 | Used by:Timeline |
Symbol 140 MovieClip | Uses:116 | Used by:Timeline |
Symbol 141 ShapeTweening | Used by:143 | |
Symbol 142 Graphic | Used by:143 | |
Symbol 143 MovieClip | Uses:141 142 | Used by:144 |
Symbol 144 MovieClip | Uses:143 | Used by:159 |
Symbol 145 ShapeTweening | Used by:149 | |
Symbol 146 ShapeTweening | Used by:149 | |
Symbol 147 Graphic | Used by:149 | |
Symbol 148 Graphic | Used by:149 | |
Symbol 149 MovieClip | Uses:145 146 147 148 | Used by:159 |
Symbol 150 ShapeTweening | Used by:159 | |
Symbol 151 ShapeTweening | Used by:159 | |
Symbol 152 ShapeTweening | Used by:159 | |
Symbol 153 Graphic | Used by:159 | |
Symbol 154 Graphic | Used by:159 | |
Symbol 155 ShapeTweening | Used by:159 | |
Symbol 156 Graphic | Used by:159 | |
Symbol 157 ShapeTweening | Used by:159 | |
Symbol 158 Graphic | Used by:159 | |
Symbol 159 MovieClip | Uses:144 149 150 151 152 153 154 155 156 157 158 | Used by:Timeline |
Symbol 160 Graphic | Used by:251 | |
Symbol 161 Graphic | Used by:165 169 171 225 302 304 | |
Symbol 162 Text | Uses:124 | Used by:165 |
Symbol 163 Graphic | Used by:165 171 225 304 | |
Symbol 164 Graphic | Used by:165 171 | |
Symbol 165 Button | Uses:161 162 163 164 | Used by:251 |
Symbol 166 Text | Uses:124 | Used by:169 302 |
Symbol 167 Graphic | Used by:169 302 | |
Symbol 168 Graphic | Used by:169 225 302 304 | |
Symbol 169 Button | Uses:161 166 167 168 | Used by:251 |
Symbol 170 Text | Uses:124 | Used by:171 |
Symbol 171 Button | Uses:161 170 163 164 | Used by:251 |
Symbol 172 Graphic | Used by:199 | |
Symbol 173 Graphic | Used by:199 | |
Symbol 174 Graphic | Used by:199 | |
Symbol 175 Graphic | Used by:199 | |
Symbol 176 Graphic | Used by:199 | |
Symbol 177 Graphic | Used by:199 | |
Symbol 178 Graphic | Used by:199 | |
Symbol 179 Graphic | Used by:199 | |
Symbol 180 Graphic | Used by:199 | |
Symbol 181 Graphic | Used by:199 | |
Symbol 182 Graphic | Used by:199 | |
Symbol 183 Graphic | Used by:199 | |
Symbol 184 Graphic | Used by:199 | |
Symbol 185 Graphic | Used by:199 | |
Symbol 186 Graphic | Used by:199 | |
Symbol 187 Graphic | Used by:199 | |
Symbol 188 Graphic | Used by:199 | |
Symbol 189 Graphic | Used by:199 | |
Symbol 190 Graphic | Used by:199 | |
Symbol 191 Graphic | Used by:199 | |
Symbol 192 Graphic | Used by:199 | |
Symbol 193 Graphic | Used by:199 | |
Symbol 194 Graphic | Used by:199 | |
Symbol 195 Graphic | Used by:199 | |
Symbol 196 Graphic | Used by:199 | |
Symbol 197 Graphic | Used by:199 | |
Symbol 198 Graphic | Used by:199 | |
Symbol 199 MovieClip | Uses:172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 | Used by:222 |
Symbol 200 Graphic | Used by:222 | |
Symbol 201 Graphic | Used by:222 | |
Symbol 202 Graphic | Used by:222 | |
Symbol 203 Graphic | Used by:222 | |
Symbol 204 Graphic | Used by:222 | |
Symbol 205 Graphic | Used by:222 | |
Symbol 206 Graphic | Used by:222 | |
Symbol 207 Graphic | Used by:222 | |
Symbol 208 Graphic | Used by:222 | |
Symbol 209 Graphic | Used by:222 | |
Symbol 210 Graphic | Used by:222 | |
Symbol 211 Graphic | Used by:222 | |
Symbol 212 Graphic | Used by:222 | |
Symbol 213 Graphic | Used by:222 | |
Symbol 214 Graphic | Used by:222 | |
Symbol 215 Graphic | Used by:222 | |
Symbol 216 Graphic | Used by:222 | |
Symbol 217 Graphic | Used by:222 | |
Symbol 218 Graphic | Used by:222 | |
Symbol 219 Graphic | Used by:222 | |
Symbol 220 Graphic | Used by:222 | |
Symbol 221 Graphic | Used by:222 | |
Symbol 222 MovieClip | Uses:199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 | Used by:250 |
Symbol 223 Graphic | Used by:250 | |
Symbol 224 Text | Uses:124 | Used by:225 |
Symbol 225 Button | Uses:161 224 163 168 | Used by:250 |
Symbol 226 Graphic | Used by:250 | |
Symbol 227 Font | Used by:228 230 231 232 233 234 236 238 240 242 243 246 247 248 249 273 274 275 276 277 278 279 280 281 282 283 | |
Symbol 228 EditableText | Uses:227 | Used by:250 |
Symbol 229 Graphic | Used by:250 | |
Symbol 230 EditableText | Uses:227 | Used by:250 |
Symbol 231 EditableText | Uses:227 | Used by:250 |
Symbol 232 EditableText | Uses:227 | Used by:250 |
Symbol 233 EditableText | Uses:227 | Used by:250 |
Symbol 234 EditableText | Uses:227 | Used by:250 |
Symbol 235 MovieClip | Uses:129 | Used by:250 Timeline |
Symbol 236 EditableText | Uses:227 | Used by:250 |
Symbol 237 Graphic | Used by:250 | |
Symbol 238 EditableText | Uses:227 | Used by:250 |
Symbol 239 Graphic | Used by:250 | |
Symbol 240 EditableText | Uses:227 | Used by:250 |
Symbol 241 Graphic | Used by:250 | |
Symbol 242 EditableText | Uses:227 | Used by:250 |
Symbol 243 EditableText | Uses:227 | Used by:250 |
Symbol 244 Graphic | Used by:250 | |
Symbol 245 Graphic | Used by:250 | |
Symbol 246 EditableText | Uses:227 | Used by:250 |
Symbol 247 EditableText | Uses:227 | Used by:250 |
Symbol 248 EditableText | Uses:227 | Used by:250 |
Symbol 249 EditableText | Uses:227 | Used by:250 |
Symbol 250 MovieClip | Uses:222 223 225 226 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 | Used by:251 |
Symbol 251 MovieClip | Uses:160 165 169 171 250 | Used by:Timeline |
Symbol 252 Graphic | Used by:257 | |
Symbol 253 Graphic | Used by:254 | |
Symbol 254 MovieClip | Uses:253 | Used by:257 |
Symbol 255 ShapeTweening | Used by:257 | |
Symbol 256 Graphic | Used by:257 | |
Symbol 257 MovieClip | Uses:252 254 255 256 | Used by:Timeline |
Symbol 258 MovieClip | Used by:Timeline | |
Symbol 259 Graphic | Used by:261 | |
Symbol 260 Graphic | Used by:261 | |
Symbol 261 MovieClip | Uses:259 35 260 | Used by:Timeline |
Symbol 262 ShapeTweening | Used by:270 | |
Symbol 263 ShapeTweening | Used by:270 | |
Symbol 264 ShapeTweening | Used by:270 | |
Symbol 265 ShapeTweening | Used by:270 | |
Symbol 266 Graphic | Used by:270 | |
Symbol 267 ShapeTweening | Used by:270 | |
Symbol 268 ShapeTweening | Used by:270 | |
Symbol 269 Graphic | Used by:270 | |
Symbol 270 MovieClip | Uses:262 263 264 265 266 267 268 269 | Used by:Timeline |
Symbol 271 MovieClip | Used by:Timeline | |
Symbol 272 Graphic | Used by:Timeline | |
Symbol 273 EditableText | Uses:227 | Used by:Timeline |
Symbol 274 EditableText | Uses:227 | Used by:Timeline |
Symbol 275 EditableText | Uses:227 | Used by:Timeline |
Symbol 276 EditableText | Uses:227 | Used by:Timeline |
Symbol 277 EditableText | Uses:227 | Used by:Timeline |
Symbol 278 EditableText | Uses:227 | Used by:Timeline |
Symbol 279 EditableText | Uses:227 | Used by:Timeline |
Symbol 280 EditableText | Uses:227 | Used by:Timeline |
Symbol 281 EditableText | Uses:227 | Used by:Timeline |
Symbol 282 EditableText | Uses:227 | Used by:Timeline |
Symbol 283 EditableText | Uses:227 | Used by:Timeline |
Symbol 284 Graphic | Used by:Timeline | |
Symbol 285 EditableText | Uses:124 | Used by:Timeline |
Symbol 286 EditableText | Uses:124 | Used by:Timeline |
Symbol 287 Graphic | Used by:288 | |
Symbol 288 MovieClip | Uses:287 115 | Used by:Timeline |
Symbol 289 ShapeTweening | Used by:293 | |
Symbol 290 ShapeTweening | Used by:293 | |
Symbol 291 ShapeTweening | Used by:293 | |
Symbol 292 Graphic | Used by:293 | |
Symbol 293 MovieClip | Uses:289 290 291 292 | Used by:Timeline |
Symbol 294 EditableText | Uses:124 | Used by:295 |
Symbol 295 MovieClip | Uses:294 | Used by:Timeline |
Symbol 296 Font | Used by:297 298 299 300 301 | |
Symbol 297 Text | Uses:296 | Used by:Timeline |
Symbol 298 Text | Uses:296 | Used by:Timeline |
Symbol 299 Text | Uses:296 | Used by:Timeline |
Symbol 300 EditableText | Uses:296 | Used by:Timeline |
Symbol 301 EditableText | Uses:296 | Used by:Timeline |
Symbol 302 Button | Uses:161 166 167 168 | Used by:Timeline |
Symbol 303 Text | Uses:124 | Used by:304 |
Symbol 304 Button | Uses:161 303 163 168 | Used by:Timeline |
Instance Names
"PlayButton" | Frame 1 | Symbol 134 MovieClip |
"Wall" | Frame 13 | Symbol 270 MovieClip |
"LifeMeter" | Frame 13 | Symbol 235 MovieClip |
"EnemyLife" | Frame 13 | Symbol 235 MovieClip |
"SpecialMeter" | Frame 13 | Symbol 235 MovieClip |
"ComboViewer" | Frame 13 | Symbol 295 MovieClip |
"Light" | Symbol 121 MovieClip Frame 1 | Symbol 120 MovieClip |
"LaserBlast" | Symbol 134 MovieClip Frame 2 | Symbol 128 MovieClip |
"Smoke" | Symbol 140 MovieClip Frame 1 | Symbol 116 MovieClip [SmokingID] |
"LaserBlast" | Symbol 159 MovieClip Frame 2 | Symbol 144 MovieClip |
"LaserBlast" | Symbol 159 MovieClip Frame 233 | Symbol 144 MovieClip |
"LifeMeter" | Symbol 250 MovieClip Frame 3 | Symbol 235 MovieClip |
"Details" | Symbol 251 MovieClip Frame 1 | Symbol 250 MovieClip |
"Movement" | Symbol 257 MovieClip Frame 2 | Symbol 254 MovieClip |
"Counter" | Symbol 288 MovieClip Frame 1 | Symbol 115 MovieClip [LaserGraphicID] |
Special Tags
ExportAssets (56) | Timeline Frame 1 | Symbol 1 as "ParticleBlasterID" |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "MenuBeatID" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "WaterID" |
ExportAssets (56) | Timeline Frame 1 | Symbol 10 as "GoodTargetTopID" |
ExportAssets (56) | Timeline Frame 1 | Symbol 15 as "BadTargetTopID" |
ExportAssets (56) | Timeline Frame 1 | Symbol 19 as "BadTargetBottomID" |
ExportAssets (56) | Timeline Frame 1 | Symbol 23 as "GoodTargetBottomID" |
ExportAssets (56) | Timeline Frame 1 | Symbol 30 as "LaserBeamOutputID" |
ExportAssets (56) | Timeline Frame 1 | Symbol 36 as "SubGraphic3ID" |
ExportAssets (56) | Timeline Frame 1 | Symbol 40 as "LaserSparkerSetupID" |
ExportAssets (56) | Timeline Frame 1 | Symbol 44 as "MissilePowerUPID" |
ExportAssets (56) | Timeline Frame 1 | Symbol 47 as "PowerUpShineID" |
ExportAssets (56) | Timeline Frame 1 | Symbol 61 as "MissileLauncherID" |
ExportAssets (56) | Timeline Frame 1 | Symbol 64 as "MissileShotID" |
ExportAssets (56) | Timeline Frame 1 | Symbol 67 as "MissileSmokeID" |
ExportAssets (56) | Timeline Frame 1 | Symbol 73 as "LifeUpID" |
ExportAssets (56) | Timeline Frame 1 | Symbol 75 as "CrossPowerUPID" |
ExportAssets (56) | Timeline Frame 1 | Symbol 77 as "CrossDeviceID" |
ExportAssets (56) | Timeline Frame 1 | Symbol 83 as "DestroyerDeviceID" |
ExportAssets (56) | Timeline Frame 1 | Symbol 87 as "DestroyerPowerUPID" |
ExportAssets (56) | Timeline Frame 1 | Symbol 90 as "WaveBlastID" |
ExportAssets (56) | Timeline Frame 1 | Symbol 94 as "GoodTargetBlueTopID" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "GoodTargetBlueBottomID" |
ExportAssets (56) | Timeline Frame 1 | Symbol 101 as "GoodTargetPurpleTopID" |
ExportAssets (56) | Timeline Frame 1 | Symbol 104 as "GoodTargetPurpleBottomID" |
ExportAssets (56) | Timeline Frame 1 | Symbol 115 as "LaserGraphicID" |
ExportAssets (56) | Timeline Frame 1 | Symbol 116 as "SmokingID" |
ExportAssets (56) | Timeline Frame 1 | Symbol 123 as "DeviceID" |
ExportAssets (56) | Timeline Frame 1 | Symbol 123 as "DeviceID" |
ExportAssets (56) | Timeline Frame 1 | Symbol 116 as "SmokingID" |
ExportAssets (56) | Timeline Frame 1 | Symbol 116 as "SmokingID" |
ExportAssets (56) | Timeline Frame 13 | Symbol 115 as "LaserGraphicID" |
ExportAssets (56) | Timeline Frame 14 | Symbol 116 as "SmokingID" |
Labels
"MainMenu" | Frame 3 |
"GameArea" | Frame 4 |
"GameStart" | Frame 12 |
"GameOver" | Frame 15 |
"Hit" | Symbol 61 MovieClip [MissileLauncherID] Frame 33 |
"Hit" | Symbol 83 MovieClip [DestroyerDeviceID] Frame 8 |
"Target" | Symbol 115 MovieClip [LaserGraphicID] Frame 11 |
"Explanation" | Symbol 250 MovieClip Frame 2 |
"HighScore" | Symbol 250 MovieClip Frame 10 |
"Destroy" | Symbol 270 MovieClip Frame 21 |
Dynamic Text Variables
LoadCounter | Symbol 125 EditableText | "" |
HighScore | Symbol 249 EditableText | "" |
LifeCounter | Symbol 275 EditableText | "" |
ParticleCounter | Symbol 280 EditableText | "" |
ScoreCounter | Symbol 281 EditableText | "" |
StageCounter | Symbol 282 EditableText | "1" |
Messaging | Symbol 283 EditableText | "" |
EnemyIdentity | Symbol 285 EditableText | "Enemy Identity" |
SpecialIdentity | Symbol 286 EditableText | "None" |
ComboShow | Symbol 294 EditableText | "100" |
YourScore | Symbol 300 EditableText | "" |
HighScore | Symbol 301 EditableText | "" |
|