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

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

- Alien -.swf

This is the info page for
Flash #74720

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


Text
Help

Start

Newgrounds.com

Newgrounds.com

Newgrounds.com

Land

Level 1

Life:

r

e

v

O

m

a

G

Restart

Main Menu

Use the arrow keys to command your ship and CTRL to fire
lasers. Be careful not to crash into enemy ships or debris.

Menu

Land your ship on Nepture to advance to the next level

Land your ship on Nepture to advance to the next level

Command your alien ship against the onslaught of
enemy ships in defense of your home planet

Level 2

ActionScript [AS1/AS2]

Frame 1
stop();
Instance of Symbol 40 MovieClip "spaceship" in Frame 1
onClipEvent (load) { moveSpeed = 10; _root.laser._visible = false; laserCounter = 1; } onClipEvent (enterFrame) { if (Key.isDown(17)) { laserCounter++; _root.laser.duplicateMovieClip("laser" + laserCounter, laserCounter); _root["laser" + laserCounter]._visible = true; } if (Key.isDown(39)) { this._x = this._x + moveSpeed; } else if (Key.isDown(37)) { this._x = this._x - moveSpeed; } if (Key.isDown(40)) { this._y = this._y + moveSpeed; } else if (Key.isDown(38)) { this._y = this._y - moveSpeed; } } onClipEvent (enterFrame) { if (this.hitTest(_root.topwall)) { _y = (_y + 10); } } onClipEvent (enterFrame) { if (this.hitTest(_root.bottomwall)) { _y = (_y - 10); } } onClipEvent (enterFrame) { if (this.hitTest(_root.leftwall)) { _x = (_x + 10); } } onClipEvent (enterFrame) { if (this.hitTest(_root.rightwall)) { _x = (_x - 10); } }
Frame 2
life = 100; stop(); numEnemy = 3; i = 2; while (i <= numEnemy) { enemy1.duplicateMovieClip("enemy" + i, i + 100); i++; } score = 0; stop();
Instance of Symbol 103 MovieClip "mainStars" in Frame 2
onClipEvent (load) { stars.duplicateMovieClip("stars2", 1000); stars2._x = stars._x + stars._width; starsStartx = this._x; starsSpeed = 3; } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._x = this._x - starsSpeed; if (this._x <= (starsStartx - stars._width)) { this._x = starsStartx - starsSpeed; } } }
Instance of Symbol 126 MovieClip "mainGround" in Frame 2
onClipEvent (load) { ground.duplicateMovieClip("ground2", 100); ground2._x = ground._x + ground._width; groundStartx = this._x; groundSpeed = 10; } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart == true) { this._x = this._x - groundSpeed; if (this._x <= (groundStartx - ground._width)) { this._x = groundStartx - groundSpeed; } } }
Instance of Symbol 129 MovieClip "laser" in Frame 2
onClipEvent (load) { laserMoveSpeed = 20; this._x = _root.spaceship._x + 77; this._y = _root.spaceship._y; } onClipEvent (enterFrame) { if (this._name != "laser") { this._x = this._x + laserMoveSpeed; if (this._x > 600) { _root.spaceship.laserCounter--; this.removeMovieClip(); } i = 1; while (i <= _root.numEnemy) { if (this.hitTest(_root["enemy" + i])) { _root.score = _root.score + 100; _root["enemy" + i].gotoAndPlay(2); } i++; } } }
Instance of Symbol 133 MovieClip "enemy1" in Frame 2
onClipEvent (load) { function reset() { var _local1 = this; _local1._x = 600; _local1._y = random(200) + 100; enemySpeed = random(4) + 1; _local1.gotoAndStop(1); } reset(); } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemySpeed; } if (this._x < -10) { reset(); } }
Instance of Symbol 40 MovieClip "spaceship" in Frame 2
onClipEvent (load) { moveSpeed = 10; _root.laser._visible = false; laserCounter = 1; scrollx = _root.mainGround.ground._width / 3; scrollStart = false; maxLasers = 4; depthCounter = 1; } onClipEvent (enterFrame) { if (Key.isDown(17) and (laserCounter <= maxLasers)) { laserCounter++; _root.laser.duplicateMovieClip("laser" + depthCounter, depthCounter); _root["laser" + depthCounter]._visible = true; depthCounter++; if (depthCounter > maxLasers) { depthCounter = 1; } } if (Key.isDown(39)) { if (this._x < scrollx) { this._x = this._x + moveSpeed; } else { scrollStart = true; } } else if (Key.isDown(37)) { this._x = this._x - moveSpeed; } if (Key.isDown(40)) { this._y = this._y + moveSpeed; } else if (Key.isDown(38)) { this._y = this._y - moveSpeed; } } onClipEvent (keyUp) { if (Key.getCode() == 39) { scrollStart = false; } } onClipEvent (enterFrame) { if (this.hitTest(_root.topwall)) { _y = (_y + 10); } } onClipEvent (enterFrame) { if (this.hitTest(_root.bottomwall)) { _y = (_y - 10); } } onClipEvent (enterFrame) { if (this.hitTest(_root.leftwall)) { _x = (_x + 10); } } onClipEvent (enterFrame) { if (this.hitTest(_root.rightwall)) { _x = (_x - 10); } } onClipEvent (enterFrame) { if (this.hitTest(_root.neptune)) { _root.gotoAndStop("level2"); } } onClipEvent (enterFrame) { i = 1; while (i <= _root.numEnemy) { if (this.hitTest(_root["enemy" + i])) { _root.life = _root.life - 3; if (_root.life <= 0) { _root.gotoAndStop("gameOver"); } _root.score = _root.score + 100; _root["enemy" + i].gotoAndPlay(2); _root.spin.gotoAndPlay(19); } i++; } }
Frame 3
stop();
Frame 4
removeMovieClip(_root["enemy" + i]); stop();
Frame 5
stop(); stop();
Instance of Symbol 40 MovieClip "spaceship" in Frame 5
onClipEvent (load) { moveSpeed = 10; _root.laser._visible = false; laserCounter = 1; } onClipEvent (enterFrame) { if (Key.isDown(17)) { laserCounter++; _root.laser.duplicateMovieClip("laser" + laserCounter, laserCounter); _root["laser" + laserCounter]._visible = true; } if (Key.isDown(39)) { this._x = this._x + moveSpeed; } else if (Key.isDown(37)) { this._x = this._x - moveSpeed; } if (Key.isDown(40)) { this._y = this._y + moveSpeed; } else if (Key.isDown(38)) { this._y = this._y - moveSpeed; } } onClipEvent (enterFrame) { if (this.hitTest(_root.topwall)) { _y = (_y + 10); } } onClipEvent (enterFrame) { if (this.hitTest(_root.bottomwall)) { _y = (_y - 10); } } onClipEvent (enterFrame) { if (this.hitTest(_root.leftwall)) { _x = (_x + 10); } } onClipEvent (enterFrame) { if (this.hitTest(_root.rightwall)) { _x = (_x - 10); } }
Frame 6
life = 100; stop(); numEnemy = 5; i = 2; while (i <= numEnemy) { enemy1.duplicateMovieClip("enemy" + i, i + 100); i++; } score = 0;
Instance of Symbol 103 MovieClip "mainStars" in Frame 6
onClipEvent (load) { stars.duplicateMovieClip("stars2", 1000); stars2._x = stars._x + stars._width; starsStartx = this._x; starsSpeed = 3; } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._x = this._x - starsSpeed; if (this._x <= (starsStartx - stars._width)) { this._x = starsStartx - starsSpeed; } } }
Instance of Symbol 174 MovieClip "mainGround2" in Frame 6
onClipEvent (load) { blueground.duplicateMovieClip("ground3", 100); ground3._x = blueground._x + blueground._width; groundStartx = this._x; groundSpeed = 10; } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart == true) { this._x = this._x - groundSpeed; if (this._x <= (groundStartx - blueground._width)) { this._x = groundStartx - groundSpeed; } } }
Instance of Symbol 129 MovieClip "laser" in Frame 6
onClipEvent (load) { laserMoveSpeed = 20; this._x = _root.spaceship._x + 77; this._y = _root.spaceship._y; } onClipEvent (enterFrame) { if (this._name != "laser") { this._x = this._x + laserMoveSpeed; if (this._x > 600) { _root.spaceship.laserCounter--; this.removeMovieClip(); } i = 1; while (i <= _root.numEnemy) { if (this.hitTest(_root["enemy" + i])) { _root.score = _root.score + 250; _root["enemy" + i].gotoAndPlay(2); } i++; } } }
Instance of Symbol 133 MovieClip "enemy1" in Frame 6
onClipEvent (load) { function reset() { var _local1 = this; _local1._x = 600; _local1._y = random(200) + 100; enemySpeed = random(6) + 1; _local1.gotoAndStop(1); } reset(); } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainGround2.groundSpeed); } else { this._x = this._x - enemySpeed; } if (this._x < -10) { reset(); } }
Instance of Symbol 40 MovieClip "spaceship" in Frame 6
onClipEvent (load) { moveSpeed = 10; _root.laser._visible = false; laserCounter = 1; scrollx = _root.mainGround2.blueground._width / 3; scrollStart = false; maxLasers = 4; depthCounter = 1; } onClipEvent (enterFrame) { if (Key.isDown(17) and (laserCounter <= maxLasers)) { laserCounter++; _root.laser.duplicateMovieClip("laser" + depthCounter, depthCounter); _root["laser" + depthCounter]._visible = true; depthCounter++; if (depthCounter > maxLasers) { depthCounter = 1; } } if (Key.isDown(39)) { if (this._x < scrollx) { this._x = this._x + moveSpeed; } else { scrollStart = true; } } else if (Key.isDown(37)) { this._x = this._x - moveSpeed; } if (Key.isDown(40)) { this._y = this._y + moveSpeed; } else if (Key.isDown(38)) { this._y = this._y - moveSpeed; } } onClipEvent (keyUp) { if (Key.getCode() == 39) { scrollStart = false; } } onClipEvent (enterFrame) { if (this.hitTest(_root.topwall)) { _y = (_y + 10); } } onClipEvent (enterFrame) { if (this.hitTest(_root.bottomwall)) { _y = (_y - 10); } } onClipEvent (enterFrame) { if (this.hitTest(_root.leftwall)) { _x = (_x + 10); } } onClipEvent (enterFrame) { if (this.hitTest(_root.rightwall)) { _x = (_x - 10); } } onClipEvent (enterFrame) { if (this.hitTest(_root.neptune)) { _root.gotoAndStop("level2"); } } onClipEvent (enterFrame) { i = 1; while (i <= _root.numEnemy) { if (this.hitTest(_root["enemy" + i])) { _root.life = _root.life - 5; if (_root.life <= 0) { _root.gotoAndStop("gameover2"); } _root.score = _root.score + 250; _root["enemy" + i].gotoAndPlay(2); _root.spin.gotoAndPlay(19); } i++; } }
Frame 7
Instance of Symbol 103 MovieClip "mainStars" in Frame 7
onClipEvent (load) { stars.duplicateMovieClip("stars2", 1000); stars2._x = stars._x + stars._width; starsStartx = this._x; starsSpeed = 3; } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._x = this._x - starsSpeed; if (this._x <= (starsStartx - stars._width)) { this._x = starsStartx - starsSpeed; } } }
Instance of Symbol 174 MovieClip "mainGround2" in Frame 7
onClipEvent (load) { ground.duplicateMovieClip("ground3", 100); ground3._x = blueground._x + blueground._width; groundStartx = this._x; groundSpeed = 10; } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart == true) { this._x = this._x - groundSpeed; if (this._x <= (groundStartx - blueground._width)) { this._x = groundStartx - groundSpeed; } } }
Symbol 12 Button
on (release) { gotoAndPlay (5); }
Symbol 22 Button
on (release) { gotoAndPlay (2); }
Symbol 32 Button
on (release) { getURL ("http://www.newgrounds.com"); }
Symbol 39 MovieClip Frame 18
gotoAndPlay (1);
Symbol 39 MovieClip Frame 21
stop();
Symbol 68 MovieClip Frame 40
stop();
Symbol 94 Button
on (release) { _root.play(); }
Symbol 95 MovieClip Frame 1
function onEnterFrame() { if (!loaded) { var _local2 = _root.getBytesLoaded() / _root.getBytesTotal(); if (_local2 >= 1) { play(); bar._x = initX; loaded = true; } else { bar._x = initX + ((_local2 - 1) * bar._width); } } var _local3 = getTimer() - time; timeAccum = timeAccum + _local3; while (timeAccum >= FRAME_TIME) { var _local1 = 0; while (_local1 < timeClips.length) { if (timeClips[_local1]._currentframe < timeClips[_local1]._totalframes) { timeClips[_local1].nextFrame(); } else { timeClips[_local1].gotoAndStop(1); } _local1++; } if (loaded && (_currentframe < _totalframes)) { nextFrame(); } timeAccum = timeAccum - FRAME_TIME; } time = time + _local3; } stop(); _root.stop(); var initX = bar._x; var time = getTimer(); var FRAME_TIME = 33.3333333333333; var timeAccum = 0; var loaded = false; timeClips = [bargfx, tank.mc0, tank.mc1, tank.mc2, tank.mc3, tank.mc4, tank.mc4.mc0, tank.mc4.mc1, tank.mc4.mc0.mc0, tank.mc4.mc0.mc0.mc0.mc0, tank.mc4.mc0.mc0.mc0.mc1, tank.mc4.mc0.mc0.mc0.mc2, tank.mc4.mc0.mc0.mc0.mc3, tank.mc4.mc0.mc0.mc1, tank.mc4.mc0.mc0.mc2, tank.mc5.mc0]; var i = 0; while (i < timeClips.length) { timeClips[i].stop(); i++; }
Symbol 95 MovieClip Frame 51
Symbol 110 MovieClip Frame 14
stop();
Symbol 123 MovieClip Frame 29
gotoAndPlay (1);
Symbol 133 MovieClip Frame 1
stop();
Symbol 133 MovieClip Frame 4
stop();
Symbol 148 MovieClip Frame 56
stop();
Symbol 152 Button
on (release) { gotoAndPlay (2); }
Symbol 155 Button
on (release) { gotoAndStop (1); }
Symbol 165 Button
on (release) { gotoAndPlay (1); }
Symbol 170 MovieClip Frame 14
stop();
Symbol 180 Button
on (release) { gotoAndStop (6); score = 0; }

Library Items

Symbol 1 GraphicUsed by:2
Symbol 2 MovieClip [life]Uses:1
Symbol 3 GraphicUsed by:12
Symbol 4 FontUsed by:5 18 135 137 140 141 142 143 144 145 146 147 150 154 157 159 166 167 168 175 176 178 179
Symbol 5 TextUses:4Used by:8 12
Symbol 6 GraphicUsed by:8
Symbol 7 GraphicUsed by:8 21
Symbol 8 MovieClipUses:6 7 5Used by:12
Symbol 9 GraphicUsed by:12
Symbol 10 GraphicUsed by:12 22
Symbol 11 SoundUsed by:12 22 152 155 165 180
Symbol 12 ButtonUses:3 5 8 9 10 11Used by:Timeline
Symbol 13 GraphicUsed by:14
Symbol 14 MovieClipUses:13Used by:15
Symbol 15 MovieClipUses:14Used by:16
Symbol 16 MovieClipUses:15Used by:Timeline
Symbol 17 GraphicUsed by:19
Symbol 18 TextUses:4Used by:19 21 22
Symbol 19 MovieClipUses:17 18Used by:22
Symbol 20 GraphicUsed by:21
Symbol 21 MovieClipUses:20 7 18Used by:22
Symbol 22 ButtonUses:19 21 10 18 11Used by:Timeline
Symbol 23 GraphicUsed by:24
Symbol 24 MovieClipUses:23Used by:Timeline
Symbol 25 BitmapUsed by:26
Symbol 26 GraphicUses:25Used by:Timeline
Symbol 27 FontUsed by:28 29 30
Symbol 28 TextUses:27Used by:32
Symbol 29 TextUses:27Used by:32
Symbol 30 TextUses:27Used by:32
Symbol 31 GraphicUsed by:32
Symbol 32 ButtonUses:28 29 30 31Used by:Timeline
Symbol 33 GraphicUsed by:39
Symbol 34 GraphicUsed by:39
Symbol 35 GraphicUsed by:39
Symbol 36 GraphicUsed by:39
Symbol 37 SoundUsed by:39 133
Symbol 38 GraphicUsed by:39
Symbol 39 MovieClipUses:33 34 35 36 37 38Used by:40
Symbol 40 MovieClipUses:39Used by:Timeline
Symbol 41 GraphicUsed by:42
Symbol 42 MovieClipUses:41Used by:Timeline
Symbol 43 GraphicUsed by:44
Symbol 44 MovieClipUses:43Used by:Timeline
Symbol 45 GraphicUsed by:46
Symbol 46 MovieClipUses:45Used by:Timeline
Symbol 47 GraphicUsed by:48
Symbol 48 MovieClipUses:47Used by:Timeline
Symbol 49 GraphicUsed by:95
Symbol 50 GraphicUsed by:95
Symbol 51 GraphicUsed by:52
Symbol 52 MovieClipUses:51Used by:95
Symbol 53 GraphicUsed by:55
Symbol 54 GraphicUsed by:55
Symbol 55 MovieClipUses:53 54Used by:95
Symbol 56 GraphicUsed by:95
Symbol 57 GraphicUsed by:95
Symbol 58 GraphicUsed by:95
Symbol 59 GraphicUsed by:66 68
Symbol 60 GraphicUsed by:66 68
Symbol 61 GraphicUsed by:66 68
Symbol 62 GraphicUsed by:66 68
Symbol 63 GraphicUsed by:66 68
Symbol 64 GraphicUsed by:66 68
Symbol 65 GraphicUsed by:66 68
Symbol 66 MovieClipUses:59 60 61 62 63 64 65Used by:95
Symbol 67 GraphicUsed by:68
Symbol 68 MovieClipUses:59 60 61 62 63 64 65 67Used by:95
Symbol 69 GraphicUsed by:95
Symbol 70 GraphicUsed by:95
Symbol 71 GraphicUsed by:95
Symbol 72 GraphicUsed by:95
Symbol 73 GraphicUsed by:95
Symbol 74 GraphicUsed by:95
Symbol 75 GraphicUsed by:95
Symbol 76 GraphicUsed by:95
Symbol 77 GraphicUsed by:95
Symbol 78 GraphicUsed by:95
Symbol 79 GraphicUsed by:95
Symbol 80 GraphicUsed by:95
Symbol 81 ShapeTweeningUsed by:95
Symbol 82 GraphicUsed by:95
Symbol 83 ShapeTweeningUsed by:95
Symbol 84 ShapeTweeningUsed by:95
Symbol 85 GraphicUsed by:95
Symbol 86 GraphicUsed by:94
Symbol 87 GraphicUsed by:94
Symbol 88 GraphicUsed by:94
Symbol 89 GraphicUsed by:94
Symbol 90 GraphicUsed by:94
Symbol 91 GraphicUsed by:93
Symbol 92 GraphicUsed by:93
Symbol 93 MovieClipUses:91 92Used by:94
Symbol 94 ButtonUses:86 87 88 89 90 93Used by:95
Symbol 95 MovieClipUses:49 50 52 55 56 57 58 66 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 94Used by:Timeline
Symbol 96 SoundUsed by:Timeline
Symbol 97 GraphicUsed by:102
Symbol 98 GraphicUsed by:101
Symbol 99 GraphicUsed by:100
Symbol 100 MovieClipUses:99Used by:101
Symbol 101 MovieClipUses:98 100Used by:102
Symbol 102 MovieClipUses:97 101Used by:103
Symbol 103 MovieClipUses:102Used by:Timeline
Symbol 104 GraphicUsed by:107
Symbol 105 FontUsed by:106
Symbol 106 TextUses:105Used by:107
Symbol 107 MovieClipUses:104 106Used by:Timeline
Symbol 108 FontUsed by:109 169
Symbol 109 TextUses:108Used by:110
Symbol 110 MovieClipUses:109Used by:Timeline
Symbol 111 GraphicUsed by:125
Symbol 112 GraphicUsed by:124
Symbol 113 GraphicUsed by:123
Symbol 114 GraphicUsed by:123
Symbol 115 GraphicUsed by:123
Symbol 116 GraphicUsed by:123
Symbol 117 GraphicUsed by:123
Symbol 118 GraphicUsed by:123
Symbol 119 GraphicUsed by:123
Symbol 120 GraphicUsed by:123
Symbol 121 GraphicUsed by:123
Symbol 122 GraphicUsed by:123
Symbol 123 MovieClipUses:113 114 115 116 117 118 119 120 121 122Used by:124 171
Symbol 124 MovieClipUses:112 123Used by:125
Symbol 125 MovieClipUses:111 124Used by:126
Symbol 126 MovieClipUses:125Used by:Timeline
Symbol 127 GraphicUsed by:129
Symbol 128 SoundUsed by:129
Symbol 129 MovieClipUses:127 128Used by:Timeline
Symbol 130 GraphicUsed by:133
Symbol 131 GraphicUsed by:133
Symbol 132 GraphicUsed by:133
Symbol 133 MovieClipUses:130 131 37 132Used by:Timeline
Symbol 134 GraphicUsed by:Timeline
Symbol 135 EditableTextUses:4Used by:Timeline
Symbol 136 GraphicUsed by:Timeline
Symbol 137 EditableTextUses:4Used by:Timeline
Symbol 138 FontUsed by:139
Symbol 139 TextUses:138Used by:Timeline
Symbol 140 EditableTextUses:4Used by:Timeline
Symbol 141 TextUses:4Used by:148
Symbol 142 TextUses:4Used by:148
Symbol 143 TextUses:4Used by:148
Symbol 144 TextUses:4Used by:148
Symbol 145 TextUses:4Used by:148
Symbol 146 TextUses:4Used by:148
Symbol 147 TextUses:4Used by:148
Symbol 148 MovieClipUses:141 142 143 144 145 146 147Used by:Timeline
Symbol 149 GraphicUsed by:152 180
Symbol 150 TextUses:4Used by:152 180
Symbol 151 GraphicUsed by:152 180
Symbol 152 ButtonUses:149 150 151 11Used by:Timeline
Symbol 153 GraphicUsed by:155
Symbol 154 TextUses:4Used by:155
Symbol 155 ButtonUses:153 154 11Used by:Timeline
Symbol 156 GraphicUsed by:Timeline
Symbol 157 TextUses:4Used by:Timeline
Symbol 158 GraphicUsed by:165
Symbol 159 TextUses:4Used by:162 165
Symbol 160 GraphicUsed by:162
Symbol 161 GraphicUsed by:162
Symbol 162 MovieClipUses:160 161 159Used by:165
Symbol 163 GraphicUsed by:165
Symbol 164 GraphicUsed by:165
Symbol 165 ButtonUses:158 159 162 163 164 11Used by:Timeline
Symbol 166 TextUses:4Used by:Timeline
Symbol 167 TextUses:4Used by:Timeline
Symbol 168 TextUses:4Used by:Timeline
Symbol 169 TextUses:108Used by:170
Symbol 170 MovieClipUses:169Used by:Timeline
Symbol 171 MovieClipUses:123Used by:173
Symbol 172 GraphicUsed by:173
Symbol 173 MovieClipUses:171 172Used by:174
Symbol 174 MovieClipUses:173Used by:Timeline
Symbol 175 EditableTextUses:4Used by:Timeline
Symbol 176 EditableTextUses:4Used by:Timeline
Symbol 177 SoundUsed by:Timeline
Symbol 178 EditableTextUses:4Used by:Timeline
Symbol 179 EditableTextUses:4Used by:Timeline
Symbol 180 ButtonUses:149 150 151 11Used by:Timeline

Instance Names

"spaceship"Frame 1Symbol 40 MovieClip
"topwall"Frame 1Symbol 42 MovieClip
"leftwall"Frame 1Symbol 44 MovieClip
"rightwall"Frame 1Symbol 46 MovieClip
"bottomwall"Frame 1Symbol 48 MovieClip
"mainStars"Frame 2Symbol 103 MovieClip
"neptune"Frame 2Symbol 107 MovieClip
"mainGround"Frame 2Symbol 126 MovieClip
"laser"Frame 2Symbol 129 MovieClip
"enemy1"Frame 2Symbol 133 MovieClip
"spaceship"Frame 2Symbol 40 MovieClip
"score"Frame 2Symbol 135 EditableText
"score"Frame 4Symbol 140 EditableText
"spaceship"Frame 5Symbol 40 MovieClip
"mainStars"Frame 6Symbol 103 MovieClip
"mainGround2"Frame 6Symbol 174 MovieClip
"laser"Frame 6Symbol 129 MovieClip
"enemy1"Frame 6Symbol 133 MovieClip
"spaceship"Frame 6Symbol 40 MovieClip
"score"Frame 6Symbol 175 EditableText
"mainStars"Frame 7Symbol 103 MovieClip
"mainGround2"Frame 7Symbol 174 MovieClip
"score"Frame 7Symbol 178 EditableText
"startStars"Symbol 16 MovieClip Frame 1Symbol 15 MovieClip
"spin"Symbol 40 MovieClip Frame 1Symbol 39 MovieClip
"bar"Symbol 95 MovieClip Frame 1Symbol 52 MovieClip
"bargfx"Symbol 95 MovieClip Frame 1Symbol 55 MovieClip
"bargfx"Symbol 95 MovieClip Frame 2Symbol 55 MovieClip
"bargfx"Symbol 95 MovieClip Frame 20Symbol 55 MovieClip
"earth"Symbol 102 MovieClip Frame 1Symbol 101 MovieClip
"stars"Symbol 103 MovieClip Frame 1Symbol 102 MovieClip
"alienguy"Symbol 124 MovieClip Frame 32Symbol 123 MovieClip
"ground"Symbol 126 MovieClip Frame 1Symbol 125 MovieClip
"alienguy"Symbol 173 MovieClip Frame 1Symbol 171 MovieClip
"blueground"Symbol 174 MovieClip Frame 1Symbol 173 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 2 as "life"

Labels

"gameOver"Frame 4
"level2"Frame 6
"gameover2"Frame 7
"LOAD"Symbol 95 MovieClip Frame 1
"COMPLETE_STOP"Symbol 95 MovieClip Frame 2

Dynamic Text Variables

scoreSymbol 135 EditableText""
lifeSymbol 137 EditableText""
scoreSymbol 140 EditableText""
scoreSymbol 175 EditableText""
lifeSymbol 176 EditableText""
scoreSymbol 178 EditableText""
lifeSymbol 179 EditableText""




http://swfchan.com/15/74720/info.shtml
Created: 6/4 -2019 21:55:11 Last modified: 6/4 -2019 21:55:11 Server time: 10/05 -2024 02:28:10