Frame 23 (43 B)
ifFrameLoaded (1) {
gotoAndPlay (25);
}
Frame 24 (17 B)
gotoAndPlay (1);
Frame 69 (18 B)
stop();
stop();
Instance of Symbol 21 MovieClip in Frame 69 (346 B)
onClipEvent (load) {
function reset() {
this._x = 750;
this._y = 150;
Speed = random(3) + 1;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -100) {
reset();
}
}
Instance of Symbol 23 MovieClip in Frame 69 (346 B)
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = 220;
Speed = random(3) + 3;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -100) {
reset();
}
}
Instance of Symbol 25 MovieClip in Frame 69 (345 B)
onClipEvent (load) {
function reset() {
this._x = 650;
this._y = 250;
Speed = random(3) + 1;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -90) {
reset();
}
}
Instance of Symbol 26 MovieClip in Frame 69 (346 B)
onClipEvent (load) {
function reset() {
this._x = 850;
this._y = 270;
Speed = random(3) + 2;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -170) {
reset();
}
}
Frame 70 (18 B)
stop();
stop();
Instance of Symbol 84 MovieClip in Frame 71 (345 B)
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = 50;
Speed = random(4) + 2;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -150) {
reset();
}
}
Instance of Symbol 85 MovieClip in Frame 71 (345 B)
onClipEvent (load) {
function reset() {
this._x = 750;
this._y = 90;
Speed = random(4) + 1;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -100) {
reset();
}
}
Instance of Symbol 86 MovieClip in Frame 71 (346 B)
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = 250;
Speed = random(3) + 3;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -100) {
reset();
}
}
Instance of Symbol 88 MovieClip in Frame 71 (346 B)
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = 380;
Speed = random(4) + 3;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -200) {
reset();
}
}
Instance of Symbol 89 MovieClip in Frame 71 (345 B)
onClipEvent (load) {
function reset() {
this._x = 650;
this._y = 310;
Speed = random(6) + 1;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -90) {
reset();
}
}
Instance of Symbol 90 MovieClip in Frame 71 (346 B)
onClipEvent (load) {
function reset() {
this._x = 850;
this._y = 290;
Speed = random(5) + 1;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -170) {
reset();
}
}
Frame 113 (19 B)
gotoAndPlay (114);
Frame 114 (123 B)
numEnemy = 3;
i = 2;
while (numEnemy >= i) {
enemy1.duplicateMovieClip("enemy" + i, i + 100);
i++;
}
score = 0;
Instance of Symbol 103 MovieClip "spaceship" in Frame 114 (1.09 KiB) ●
onClipEvent (enterFrame) {
if (_root.score == 400) {
_root.gotoAndPlay(117);
}
}
onClipEvent (load) {
moveSpeed = 15;
_root.laser._visible = false;
laserCounter = 1;
scrollx = _root.mainGround.ground._width / 3;
scrollStart = false;
maxLasers = 1;
depthCounter = 1;
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.SPACE) and (maxLasers >= laserCounter)) {
laserCounter++;
_root.laser.duplicateMovieClip("laser" + depthCounter, depthCounter);
_root["laser" + depthCounter]._visible = true;
depthCounter++;
if (maxLasers < depthCounter) {
depthCounter = 1;
}
}
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.CONTROL) and (maxLasers >= laserCounter)) {
}
if (Key.isDown(Key.RIGHT) and (_x < 270)) {
this._x = this._x + moveSpeed;
} else if (Key.isDown(Key.LEFT) and (39 < _x)) {
this._x = this._x - moveSpeed;
}
if (Key.isDown(Key.DOWN) and (_y < 360)) {
this._y = this._y + moveSpeed;
} else if (Key.isDown(Key.UP) and (60 < _y)) {
this._y = this._y - moveSpeed;
}
}
onClipEvent (keyUp) {
if (Key.getCode() == Key.RIGHT) {
scrollStart = false;
}
}
Instance of Symbol 106 MovieClip "laser" in Frame 114 (482 B)
onClipEvent (load) {
laserMoveSpeed = 20;
this._x = _root.spaceship._x + 75;
this._y = _root.spaceship._y;
}
onClipEvent (enterFrame) {
if (this._name != "laser") {
this._x = this._x + laserMoveSpeed;
if (600 < this._x) {
_root.spaceship.laserCounter--;
this.removeMovieClip();
}
i = 1;
while (_root.numEnemy >= i) {
if (this.hitTest(_root["enemy" + i])) {
_root.score = _root.score + 10;
_root["enemy" + i].gotoAndPlay(2);
}
i++;
}
}
}
Instance of Symbol 119 MovieClip "enemy1" in Frame 114 (473 B)
onClipEvent (load) {
function reset() {
this._x = 610;
this._y = random(200) + 100;
enemySpeed = random(8) + 5;
this.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();
}
if (this.hitTest(_root.spaceship)) {
_root.gotoAndStop("gameOver");
this._visible = false;
}
}
Frame 115 (8 B)
stop();
Frame 116 (26 B)
stopAllSounds();
stop();
Frame 117 (17 B)
stopAllSounds();
Frame 159 (19 B)
gotoAndPlay (160);
Frame 160 (111 B)
numEnemy = 3;
i = 2;
while (numEnemy >= i) {
enemy1.duplicateMovieClip("enemy" + i, i + 100);
i++;
}
Instance of Symbol 142 MovieClip in Frame 160 (345 B)
onClipEvent (load) {
function reset() {
this._x = 750;
this._y = 50;
Speed = random(4) + 1;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -100) {
reset();
}
}
Instance of Symbol 143 MovieClip in Frame 160 (345 B)
onClipEvent (load) {
function reset() {
this._x = 750;
this._y = 89;
Speed = random(4) + 1;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -100) {
reset();
}
}
Instance of Symbol 144 MovieClip in Frame 160 (346 B)
onClipEvent (load) {
function reset() {
this._x = 750;
this._y = 357;
Speed = random(4) + 1;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -100) {
reset();
}
}
Instance of Symbol 145 MovieClip in Frame 160 (346 B)
onClipEvent (load) {
function reset() {
this._x = 750;
this._y = 323;
Speed = random(4) + 1;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -100) {
reset();
}
}
Instance of Symbol 146 MovieClip in Frame 160 (346 B)
onClipEvent (load) {
function reset() {
this._x = 750;
this._y = 233;
Speed = random(4) + 1;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -100) {
reset();
}
}
Instance of Symbol 147 MovieClip in Frame 160 (346 B)
onClipEvent (load) {
function reset() {
this._x = 750;
this._y = 211;
Speed = random(4) + 1;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -100) {
reset();
}
}
Instance of Symbol 148 MovieClip in Frame 160 (346 B)
onClipEvent (load) {
function reset() {
this._x = 750;
this._y = 110;
Speed = random(4) + 1;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -100) {
reset();
}
}
Instance of Symbol 149 MovieClip "spaceship" in Frame 160 (1.09 KiB) ●
onClipEvent (enterFrame) {
if (_root.score == 870) {
_root.gotoAndPlay(162);
}
}
onClipEvent (load) {
moveSpeed = 15;
_root.laser._visible = false;
laserCounter = 1;
scrollx = _root.mainGround.ground._width / 3;
scrollStart = false;
maxLasers = 1;
depthCounter = 1;
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.SPACE) and (maxLasers >= laserCounter)) {
laserCounter++;
_root.laser.duplicateMovieClip("laser" + depthCounter, depthCounter);
_root["laser" + depthCounter]._visible = true;
depthCounter++;
if (maxLasers < depthCounter) {
depthCounter = 1;
}
}
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.CONTROL) and (maxLasers >= laserCounter)) {
}
if (Key.isDown(Key.RIGHT) and (_x < 270)) {
this._x = this._x + moveSpeed;
} else if (Key.isDown(Key.LEFT) and (39 < _x)) {
this._x = this._x - moveSpeed;
}
if (Key.isDown(Key.DOWN) and (_y < 360)) {
this._y = this._y + moveSpeed;
} else if (Key.isDown(Key.UP) and (60 < _y)) {
this._y = this._y - moveSpeed;
}
}
onClipEvent (keyUp) {
if (Key.getCode() == Key.RIGHT) {
scrollStart = false;
}
}
Instance of Symbol 151 MovieClip in Frame 160 (648 B)
onClipEvent (load) {
moveSpeed = 15;
scrollx = _root.mainGround.ground._width / 3;
scrollStart = false;
depthCounter = 1;
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.CONTROL) and (maxLasers >= laserCounter)) {
}
if (Key.isDown(Key.RIGHT) and (_x < 276)) {
this._x = this._x + moveSpeed;
} else if (Key.isDown(Key.LEFT) and (45 < _x)) {
this._x = this._x - moveSpeed;
}
if (Key.isDown(Key.DOWN) and (_y < 325)) {
this._y = this._y + moveSpeed;
} else if (Key.isDown(Key.UP) and (25 < _y)) {
this._y = this._y - moveSpeed;
}
}
onClipEvent (keyUp) {
if (Key.getCode() == Key.RIGHT) {
scrollStart = false;
}
}
Instance of Symbol 154 MovieClip "laser" in Frame 160 (482 B)
onClipEvent (load) {
laserMoveSpeed = 20;
this._x = _root.spaceship._x + 75;
this._y = _root.spaceship._y;
}
onClipEvent (enterFrame) {
if (this._name != "laser") {
this._x = this._x + laserMoveSpeed;
if (600 < this._x) {
_root.spaceship.laserCounter--;
this.removeMovieClip();
}
i = 1;
while (_root.numEnemy >= i) {
if (this.hitTest(_root["enemy" + i])) {
_root.score = _root.score + 10;
_root["enemy" + i].gotoAndPlay(2);
}
i++;
}
}
}
Instance of Symbol 156 MovieClip in Frame 160 (148 B)
onClipEvent (enterFrame) {
if (_root.score == 800) {
this.gotoAndPlay(2);
}
if (this.hitTest(_root.spaceship)) {
_root.gotoAndPlay(207);
}
}
Instance of Symbol 157 MovieClip "enemy1" in Frame 160 (474 B)
onClipEvent (load) {
function reset() {
this._x = 610;
this._y = random(200) + 100;
enemySpeed = random(10) + 7;
this.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();
}
if (this.hitTest(_root.spaceship)) {
_root.gotoAndStop("gameOver");
this._visible = false;
}
}
Frame 161 (8 B)
stop();
Frame 162 (17 B)
stopAllSounds();
Frame 204 (19 B)
gotoAndPlay (205);
Frame 205 (111 B)
numEnemy = 3;
i = 2;
while (numEnemy >= i) {
enemy1.duplicateMovieClip("enemy" + i, i + 100);
i++;
}
Instance of Symbol 171 MovieClip in Frame 205 (346 B)
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = 315;
Speed = random(4) + 2;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -150) {
reset();
}
}
Instance of Symbol 172 MovieClip in Frame 205 (346 B)
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = 203;
Speed = random(4) + 2;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -150) {
reset();
}
}
Instance of Symbol 173 MovieClip in Frame 205 (346 B)
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = 160;
Speed = random(4) + 2;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -150) {
reset();
}
}
Instance of Symbol 174 MovieClip in Frame 205 (345 B)
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = 68;
Speed = random(4) + 2;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -150) {
reset();
}
}
Instance of Symbol 175 MovieClip in Frame 205 (345 B)
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = 85;
Speed = random(4) + 2;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -150) {
reset();
}
}
Instance of Symbol 176 MovieClip in Frame 205 (346 B)
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = 287;
Speed = random(4) + 2;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -150) {
reset();
}
}
Instance of Symbol 177 MovieClip in Frame 205 (345 B)
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = 15;
Speed = random(4) + 2;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -150) {
reset();
}
}
Instance of Symbol 178 MovieClip in Frame 205 (346 B)
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = 214;
Speed = random(4) + 2;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -150) {
reset();
}
}
Instance of Symbol 179 MovieClip in Frame 205 (345 B)
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = 27;
Speed = random(4) + 2;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -150) {
reset();
}
}
Instance of Symbol 180 MovieClip in Frame 205 (346 B)
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = 270;
Speed = random(4) + 2;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -150) {
reset();
}
}
Instance of Symbol 181 MovieClip in Frame 205 (346 B)
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = 230;
Speed = random(4) + 2;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -150) {
reset();
}
}
Instance of Symbol 182 MovieClip "spaceship" in Frame 205 (1.09 KiB) ●
onClipEvent (enterFrame) {
if (_root.score == 1800) {
_root.gotoAndPlay(253);
}
}
onClipEvent (load) {
moveSpeed = 15;
_root.laser._visible = false;
laserCounter = 1;
scrollx = _root.mainGround.ground._width / 3;
scrollStart = false;
maxLasers = 1;
depthCounter = 1;
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.SPACE) and (maxLasers >= laserCounter)) {
laserCounter++;
_root.laser.duplicateMovieClip("laser" + depthCounter, depthCounter);
_root["laser" + depthCounter]._visible = true;
depthCounter++;
if (maxLasers < depthCounter) {
depthCounter = 1;
}
}
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.CONTROL) and (maxLasers >= laserCounter)) {
}
if (Key.isDown(Key.RIGHT) and (_x < 270)) {
this._x = this._x + moveSpeed;
} else if (Key.isDown(Key.LEFT) and (39 < _x)) {
this._x = this._x - moveSpeed;
}
if (Key.isDown(Key.DOWN) and (_y < 360)) {
this._y = this._y + moveSpeed;
} else if (Key.isDown(Key.UP) and (60 < _y)) {
this._y = this._y - moveSpeed;
}
}
onClipEvent (keyUp) {
if (Key.getCode() == Key.RIGHT) {
scrollStart = false;
}
}
Instance of Symbol 184 MovieClip in Frame 205 (648 B)
onClipEvent (load) {
moveSpeed = 15;
scrollx = _root.mainGround.ground._width / 3;
scrollStart = false;
depthCounter = 1;
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.CONTROL) and (maxLasers >= laserCounter)) {
}
if (Key.isDown(Key.RIGHT) and (_x < 277)) {
this._x = this._x + moveSpeed;
} else if (Key.isDown(Key.LEFT) and (38 < _x)) {
this._x = this._x - moveSpeed;
}
if (Key.isDown(Key.DOWN) and (_y < 341)) {
this._y = this._y + moveSpeed;
} else if (Key.isDown(Key.UP) and (41 < _y)) {
this._y = this._y - moveSpeed;
}
}
onClipEvent (keyUp) {
if (Key.getCode() == Key.RIGHT) {
scrollStart = false;
}
}
Instance of Symbol 187 MovieClip "laser" in Frame 205 (482 B)
onClipEvent (load) {
laserMoveSpeed = 20;
this._x = _root.spaceship._x + 75;
this._y = _root.spaceship._y;
}
onClipEvent (enterFrame) {
if (this._name != "laser") {
this._x = this._x + laserMoveSpeed;
if (600 < this._x) {
_root.spaceship.laserCounter--;
this.removeMovieClip();
}
i = 1;
while (_root.numEnemy >= i) {
if (this.hitTest(_root["enemy" + i])) {
_root.score = _root.score + 10;
_root["enemy" + i].gotoAndPlay(2);
}
i++;
}
}
}
Instance of Symbol 188 MovieClip "enemy1" in Frame 205 (474 B)
onClipEvent (load) {
function reset() {
this._x = 610;
this._y = random(200) + 100;
enemySpeed = random(12) + 8;
this.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();
}
if (this.hitTest(_root.spaceship)) {
_root.gotoAndStop("gameOver");
this._visible = false;
}
}
Frame 206 (8 B)
stop();
Frame 207 (17 B)
stopAllSounds();
Frame 249 (19 B)
gotoAndPlay (250);
Frame 250 (111 B)
numEnemy = 3;
i = 2;
while (numEnemy >= i) {
enemy1.duplicateMovieClip("enemy" + i, i + 100);
i++;
}
Instance of Symbol 201 MovieClip in Frame 250 (345 B)
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = 26;
Speed = random(4) + 2;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -150) {
reset();
}
}
Instance of Symbol 202 MovieClip in Frame 250 (345 B)
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = 67;
Speed = random(4) + 2;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -150) {
reset();
}
}
Instance of Symbol 203 MovieClip in Frame 250 (346 B)
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = 131;
Speed = random(4) + 2;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -150) {
reset();
}
}
Instance of Symbol 204 MovieClip in Frame 250 (346 B)
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = 207;
Speed = random(4) + 2;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -150) {
reset();
}
}
Instance of Symbol 205 MovieClip in Frame 250 (345 B)
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = 52;
Speed = random(4) + 2;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -150) {
reset();
}
}
Instance of Symbol 206 MovieClip in Frame 250 (346 B)
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = 307;
Speed = random(4) + 2;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -150) {
reset();
}
}
Instance of Symbol 207 MovieClip "spaceship" in Frame 250 (1.13 KiB) ●
onClipEvent (enterFrame) {
_root.countDown = _root.countDown - 1;
if (_root.countDown == 0) {
_root.gotoAndPlay(162);
}
}
onClipEvent (load) {
moveSpeed = 15;
_root.laser._visible = false;
laserCounter = 1;
scrollx = _root.mainGround.ground._width / 3;
scrollStart = false;
maxLasers = 1;
depthCounter = 1;
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.SPACE) and (maxLasers >= laserCounter)) {
laserCounter++;
_root.laser.duplicateMovieClip("laser" + depthCounter, depthCounter);
_root["laser" + depthCounter]._visible = true;
depthCounter++;
if (maxLasers < depthCounter) {
depthCounter = 1;
}
}
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.CONTROL) and (maxLasers >= laserCounter)) {
}
if (Key.isDown(Key.RIGHT) and (_x < 270)) {
this._x = this._x + moveSpeed;
} else if (Key.isDown(Key.LEFT) and (39 < _x)) {
this._x = this._x - moveSpeed;
}
if (Key.isDown(Key.DOWN) and (_y < 360)) {
this._y = this._y + moveSpeed;
} else if (Key.isDown(Key.UP) and (60 < _y)) {
this._y = this._y - moveSpeed;
}
}
onClipEvent (keyUp) {
if (Key.getCode() == Key.RIGHT) {
scrollStart = false;
}
}
Instance of Symbol 209 MovieClip in Frame 250 (648 B)
onClipEvent (load) {
moveSpeed = 15;
scrollx = _root.mainGround.ground._width / 3;
scrollStart = false;
depthCounter = 1;
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.CONTROL) and (maxLasers >= laserCounter)) {
}
if (Key.isDown(Key.RIGHT) and (_x < 277)) {
this._x = this._x + moveSpeed;
} else if (Key.isDown(Key.LEFT) and (38 < _x)) {
this._x = this._x - moveSpeed;
}
if (Key.isDown(Key.DOWN) and (_y < 330)) {
this._y = this._y + moveSpeed;
} else if (Key.isDown(Key.UP) and (30 < _y)) {
this._y = this._y - moveSpeed;
}
}
onClipEvent (keyUp) {
if (Key.getCode() == Key.RIGHT) {
scrollStart = false;
}
}
Instance of Symbol 211 MovieClip in Frame 250 (714 B)
onClipEvent (load) {
moveSpeed = 15;
_root.laser._visible = false;
laserCounter = 1;
scrollx = _root.mainGround.ground._width / 3;
scrollStart = false;
maxLasers = 1;
depthCounter = 1;
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.CONTROL) and (maxLasers >= laserCounter)) {
}
if (Key.isDown(Key.RIGHT) and (_x < 270)) {
this._x = this._x + moveSpeed;
} else if (Key.isDown(Key.LEFT) and (39 < _x)) {
this._x = this._x - moveSpeed;
}
if (Key.isDown(Key.DOWN) and (_y < 360)) {
this._y = this._y + moveSpeed;
} else if (Key.isDown(Key.UP) and (60 < _y)) {
this._y = this._y - moveSpeed;
}
}
onClipEvent (keyUp) {
if (Key.getCode() == Key.RIGHT) {
scrollStart = false;
}
}
Instance of Symbol 213 MovieClip "laser" in Frame 250 (482 B)
onClipEvent (load) {
laserMoveSpeed = 20;
this._x = _root.spaceship._x + 75;
this._y = _root.spaceship._y;
}
onClipEvent (enterFrame) {
if (this._name != "laser") {
this._x = this._x + laserMoveSpeed;
if (600 < this._x) {
_root.spaceship.laserCounter--;
this.removeMovieClip();
}
i = 1;
while (_root.numEnemy >= i) {
if (this.hitTest(_root["enemy" + i])) {
_root.score = _root.score + 20;
_root["enemy" + i].gotoAndPlay(2);
}
i++;
}
}
}
Instance of Symbol 214 MovieClip "enemy1" in Frame 250 (375 B)
onClipEvent (load) {
function reset() {
this._x = 610;
this._y = random(200) + 100;
enemySpeed = random(14) + 9;
this.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();
}
}
Frame 251 (8 B)
stop();
Frame 252 (28 B)
stop();
stop();
stop();
Frame 253 (17 B)
stopAllSounds();
Frame 295 (19 B)
gotoAndPlay (296);
Frame 296 (111 B)
numEnemy = 3;
i = 2;
while (numEnemy >= i) {
enemy1.duplicateMovieClip("enemy" + i, i + 100);
i++;
}
Instance of Symbol 249 MovieClip in Frame 296 (345 B)
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = 50;
Speed = random(4) + 2;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -150) {
reset();
}
}
Instance of Symbol 251 MovieClip in Frame 296 (346 B)
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = 200;
Speed = random(4) + 2;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -150) {
reset();
}
}
Instance of Symbol 253 MovieClip in Frame 296 (345 B)
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = 90;
Speed = random(4) + 2;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -150) {
reset();
}
}
Instance of Symbol 254 MovieClip in Frame 296 (346 B)
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = 260;
Speed = random(4) + 2;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -150) {
reset();
}
}
Instance of Symbol 255 MovieClip "spaceship" in Frame 296 (1.09 KiB) ●
onClipEvent (enterFrame) {
if (_root.score == 2200) {
_root.gotoAndPlay(298);
}
}
onClipEvent (load) {
moveSpeed = 15;
_root.laser._visible = false;
laserCounter = 1;
scrollx = _root.mainGround.ground._width / 3;
scrollStart = false;
maxLasers = 1;
depthCounter = 1;
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.SPACE) and (maxLasers >= laserCounter)) {
laserCounter++;
_root.laser.duplicateMovieClip("laser" + depthCounter, depthCounter);
_root["laser" + depthCounter]._visible = true;
depthCounter++;
if (maxLasers < depthCounter) {
depthCounter = 1;
}
}
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.CONTROL) and (maxLasers >= laserCounter)) {
}
if (Key.isDown(Key.RIGHT) and (_x < 270)) {
this._x = this._x + moveSpeed;
} else if (Key.isDown(Key.LEFT) and (39 < _x)) {
this._x = this._x - moveSpeed;
}
if (Key.isDown(Key.DOWN) and (_y < 360)) {
this._y = this._y + moveSpeed;
} else if (Key.isDown(Key.UP) and (60 < _y)) {
this._y = this._y - moveSpeed;
}
}
onClipEvent (keyUp) {
if (Key.getCode() == Key.RIGHT) {
scrollStart = false;
}
}
Instance of Symbol 257 MovieClip in Frame 296 (648 B)
onClipEvent (load) {
moveSpeed = 15;
scrollx = _root.mainGround.ground._width / 3;
scrollStart = false;
depthCounter = 1;
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.CONTROL) and (maxLasers >= laserCounter)) {
}
if (Key.isDown(Key.RIGHT) and (_x < 277)) {
this._x = this._x + moveSpeed;
} else if (Key.isDown(Key.LEFT) and (38 < _x)) {
this._x = this._x - moveSpeed;
}
if (Key.isDown(Key.DOWN) and (_y < 341)) {
this._y = this._y + moveSpeed;
} else if (Key.isDown(Key.UP) and (41 < _y)) {
this._y = this._y - moveSpeed;
}
}
onClipEvent (keyUp) {
if (Key.getCode() == Key.RIGHT) {
scrollStart = false;
}
}
Instance of Symbol 260 MovieClip "laser" in Frame 296 (482 B)
onClipEvent (load) {
laserMoveSpeed = 20;
this._x = _root.spaceship._x + 75;
this._y = _root.spaceship._y;
}
onClipEvent (enterFrame) {
if (this._name != "laser") {
this._x = this._x + laserMoveSpeed;
if (600 < this._x) {
_root.spaceship.laserCounter--;
this.removeMovieClip();
}
i = 1;
while (_root.numEnemy >= i) {
if (this.hitTest(_root["enemy" + i])) {
_root.score = _root.score + 10;
_root["enemy" + i].gotoAndPlay(2);
}
i++;
}
}
}
Instance of Symbol 261 MovieClip "enemy1" in Frame 296 (474 B)
onClipEvent (load) {
function reset() {
this._x = 610;
this._y = random(200) + 100;
enemySpeed = random(14) + 9;
this.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();
}
if (this.hitTest(_root.spaceship)) {
_root.gotoAndStop("gameOver");
this._visible = false;
}
}
Frame 297 (8 B)
stop();
Frame 298 (17 B)
stopAllSounds();
Instance of Symbol 267 MovieClip in Frame 298 (127 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship)) {
_root.gotoAndStop("gameOver");
this._visible = false;
}
}
Frame 340 (19 B)
gotoAndPlay (341);
Frame 341 (111 B)
numEnemy = 3;
i = 2;
while (numEnemy >= i) {
enemy1.duplicateMovieClip("enemy" + i, i + 100);
i++;
}
Instance of Symbol 142 MovieClip in Frame 341 (345 B)
onClipEvent (load) {
function reset() {
this._x = 750;
this._y = 50;
Speed = random(4) + 1;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -100) {
reset();
}
}
Instance of Symbol 143 MovieClip in Frame 341 (345 B)
onClipEvent (load) {
function reset() {
this._x = 750;
this._y = 89;
Speed = random(4) + 1;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -100) {
reset();
}
}
Instance of Symbol 144 MovieClip in Frame 341 (346 B)
onClipEvent (load) {
function reset() {
this._x = 750;
this._y = 357;
Speed = random(4) + 1;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -100) {
reset();
}
}
Instance of Symbol 145 MovieClip in Frame 341 (346 B)
onClipEvent (load) {
function reset() {
this._x = 750;
this._y = 323;
Speed = random(4) + 1;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -100) {
reset();
}
}
Instance of Symbol 146 MovieClip in Frame 341 (346 B)
onClipEvent (load) {
function reset() {
this._x = 750;
this._y = 233;
Speed = random(4) + 1;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -100) {
reset();
}
}
Instance of Symbol 147 MovieClip in Frame 341 (346 B)
onClipEvent (load) {
function reset() {
this._x = 750;
this._y = 211;
Speed = random(4) + 1;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -100) {
reset();
}
}
Instance of Symbol 148 MovieClip in Frame 341 (346 B)
onClipEvent (load) {
function reset() {
this._x = 750;
this._y = 110;
Speed = random(4) + 1;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -100) {
reset();
}
}
Instance of Symbol 281 MovieClip "spaceship" in Frame 341 (1.09 KiB) ●
onClipEvent (enterFrame) {
if (_root.score == 3000) {
_root.gotoAndPlay(343);
}
}
onClipEvent (load) {
moveSpeed = 15;
_root.laser._visible = false;
laserCounter = 1;
scrollx = _root.mainGround.ground._width / 3;
scrollStart = false;
maxLasers = 1;
depthCounter = 1;
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.SPACE) and (maxLasers >= laserCounter)) {
laserCounter++;
_root.laser.duplicateMovieClip("laser" + depthCounter, depthCounter);
_root["laser" + depthCounter]._visible = true;
depthCounter++;
if (maxLasers < depthCounter) {
depthCounter = 1;
}
}
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.CONTROL) and (maxLasers >= laserCounter)) {
}
if (Key.isDown(Key.RIGHT) and (_x < 270)) {
this._x = this._x + moveSpeed;
} else if (Key.isDown(Key.LEFT) and (39 < _x)) {
this._x = this._x - moveSpeed;
}
if (Key.isDown(Key.DOWN) and (_y < 360)) {
this._y = this._y + moveSpeed;
} else if (Key.isDown(Key.UP) and (60 < _y)) {
this._y = this._y - moveSpeed;
}
}
onClipEvent (keyUp) {
if (Key.getCode() == Key.RIGHT) {
scrollStart = false;
}
}
Instance of Symbol 283 MovieClip in Frame 341 (648 B)
onClipEvent (load) {
moveSpeed = 15;
scrollx = _root.mainGround.ground._width / 3;
scrollStart = false;
depthCounter = 1;
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.CONTROL) and (maxLasers >= laserCounter)) {
}
if (Key.isDown(Key.RIGHT) and (_x < 276)) {
this._x = this._x + moveSpeed;
} else if (Key.isDown(Key.LEFT) and (35 < _x)) {
this._x = this._x - moveSpeed;
}
if (Key.isDown(Key.DOWN) and (_y < 325)) {
this._y = this._y + moveSpeed;
} else if (Key.isDown(Key.UP) and (25 < _y)) {
this._y = this._y - moveSpeed;
}
}
onClipEvent (keyUp) {
if (Key.getCode() == Key.RIGHT) {
scrollStart = false;
}
}
Instance of Symbol 286 MovieClip "laser" in Frame 341 (482 B)
onClipEvent (load) {
laserMoveSpeed = 20;
this._x = _root.spaceship._x + 75;
this._y = _root.spaceship._y;
}
onClipEvent (enterFrame) {
if (this._name != "laser") {
this._x = this._x + laserMoveSpeed;
if (600 < this._x) {
_root.spaceship.laserCounter--;
this.removeMovieClip();
}
i = 1;
while (_root.numEnemy >= i) {
if (this.hitTest(_root["enemy" + i])) {
_root.score = _root.score + 10;
_root["enemy" + i].gotoAndPlay(2);
}
i++;
}
}
}
Instance of Symbol 287 MovieClip "enemy1" in Frame 341 (475 B)
onClipEvent (load) {
function reset() {
this._x = 610;
this._y = random(200) + 100;
enemySpeed = random(15) + 10;
this.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();
}
if (this.hitTest(_root.spaceship)) {
_root.gotoAndStop("gameOver");
this._visible = false;
}
}
Frame 342 (8 B)
stop();
Frame 343 (8 B)
stop();
Frame 344 (18 B)
stop();
stop();
Instance of Symbol 21 MovieClip in Frame 344 (346 B)
onClipEvent (load) {
function reset() {
this._x = 750;
this._y = 150;
Speed = random(3) + 1;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -100) {
reset();
}
}
Instance of Symbol 23 MovieClip in Frame 344 (346 B)
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = 220;
Speed = random(3) + 3;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -100) {
reset();
}
}
Instance of Symbol 25 MovieClip in Frame 344 (345 B)
onClipEvent (load) {
function reset() {
this._x = 650;
this._y = 250;
Speed = random(3) + 1;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -90) {
reset();
}
}
Instance of Symbol 26 MovieClip in Frame 344 (346 B)
onClipEvent (load) {
function reset() {
this._x = 850;
this._y = 270;
Speed = random(3) + 2;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (Speed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - Speed;
}
if (this._x < -170) {
reset();
}
}
Symbol 28 MovieClip Frame 73 (18 B)
gotoAndPlay (33);
Symbol 42 Button (35 B)
on (release) {
gotoAndPlay (71);
}
Symbol 50 Button (35 B)
on (release) {
gotoAndStop (70);
}
Symbol 58 Button (36 B)
on (release) {
gotoAndStop (252);
}
Symbol 61 MovieClip Frame 1 (26 B)
stop();
gotoAndStop (2);
Symbol 61 MovieClip Frame 2 (8 B)
stop();
Symbol 63 Button (35 B)
on (release) {
gotoAndPlay (71);
}
Symbol 68 Button (53 B)
on (release) {
gotoAndStop (69);
stopAllSounds();
}
Symbol 119 MovieClip Frame 1 (8 B)
stop();
Symbol 119 MovieClip Frame 3 (8 B)
stop();
Symbol 131 Button (35 B)
on (release) {
gotoAndPlay (71);
}
Symbol 156 MovieClip Frame 1 (8 B)
stop();
Symbol 156 MovieClip Frame 66 (8 B)
stop();
Symbol 157 MovieClip Frame 1 (8 B)
stop();
Symbol 157 MovieClip Frame 3 (8 B)
stop();
Symbol 188 MovieClip Frame 1 (8 B)
stop();
Symbol 188 MovieClip Frame 3 (8 B)
stop();
Symbol 214 MovieClip Frame 1 (8 B)
stop();
Symbol 214 MovieClip Frame 3 (8 B)
stop();
Symbol 216 MovieClip Frame 1 (26 B)
stop();
gotoAndStop (2);
Symbol 216 MovieClip Frame 2 (8 B)
stop();
Symbol 218 MovieClip Frame 1 (8 B)
stop();
Symbol 218 MovieClip Frame 3 (8 B)
stop();
Symbol 261 MovieClip Frame 1 (8 B)
stop();
Symbol 261 MovieClip Frame 3 (8 B)
stop();
Instance of Symbol 270 MovieClip in Symbol 271 MovieClip Frame 120 (127 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship)) {
_root.gotoAndStop("gameOver");
this._visible = false;
}
}
Instance of Symbol 273 MovieClip in Symbol 274 MovieClip Frame 120 (127 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship)) {
_root.gotoAndStop("gameOver");
this._visible = false;
}
}
Symbol 287 MovieClip Frame 1 (8 B)
stop();
Symbol 287 MovieClip Frame 3 (8 B)
stop();
Symbol 290 Button (54 B)
on (release) {
gotoAndStop (344);
stopAllSounds();
}