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

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

OSVEclipse Director's Cut.swf

This is the info page for
Flash #62611

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


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

OSV: Eclipse
Director's cut

Loading

of Ca: 1.5 Megs

Clearing Canopy Monitor...

OSV: Eclipse
(Director's Cut)

Created by Raven Clock
aka OmegaDragon3000

How to Play:
Arrow Keys: Movement
Z - Fighter Mode (when in Hovermode)
X - Hover Mode (When in Fightermode)
C - Fire weapon

Play Game | View Site | Community

Music by
Edgen

Skip

Mankind had many cold wars with Dragonis

They started to become us...
Hateful and aggressive

We tried to evacuate our people from Dragonis.
But our communications were jammed, our rescue ships stolen
and our most important moon base deserted.

They won…
But there were some of them who stood up
and helped us regain a truth.

Their government crumbled
Man’s influence was felt everywhere on Dragonis

We needed a restart on our relationship

In the end we discovered that there is more
To life than war and tension

We look back at the story of those
who tried to build peace between our species
Not through weapons. But through trust, cooperation
And friendship.
~Rick Kramer, Royal Dragonian Fighter Pilot,
"The Drakojan Knights"

Mission: 01

Objective: Destroy as many royal Dragonian fighters as possible.

Additional Support: Weapons upgrade. ETA: mid-mission

Start Mission

Lieutenant Acryl

Target Destroyed! Man I kick ass...

Nice sight there, Bravo 2! hehehe

Lieutenant Shinda

Laser ADD-ON

5000 Points!!!

5000 Points!!!

2nd laser activated

WARNING

Again?

Well done. Entering next mission...

Mission: 02

The end. Thank you for playing.
Original OSV: Eclipse by Raven Clock
All graphics and original story by Raven Clock
Programming help: Flashkit.com
Music by Edgen

ActionScript [AS1/AS2]

Frame 1
loadpercent = "0%"; loadBytes = ("0 of " + (Math.round((_root.getBytesTotal() / 1024) * 1000) / 1000)) + " Kb";
Frame 2
loadPercent = Math.floor((_root.getBytesLoaded() / _root.getBytesTotal()) * 100) + "%"; loadBytes = (((Math.round((_root.getBytesLoaded() / 1024) * 1000) / 1000) + " Kb of ") + (Math.round((_root.getBytesTotal() / 1024) * 1000) / 1000)) + " Kb total Loaded."; if (_root.getBytesLoaded() == _root.getBytesTotal()) { loadPercent = "100%"; loadBytes = (((Math.round((_root.getBytesLoaded() / 1024) * 1000) / 1000) + " Kb of ") + (Math.round((_root.getBytesTotal() / 1024) * 1000) / 1000)) + " Kb total Loaded."; gotoAndPlay (5); }
Frame 3
gotoAndPlay (2);
Frame 4
stop();
Frame 83
stop();
Frame 135
gotoAndPlay (136);
Frame 1794
stop();
Frame 1796
numEnemy = 10; numdropship = 2; numEnemy2 = 2; i = 2; while (i <= numEnemy) { enemy1.duplicateMovieClip("enemy" + i, i + 100); i++; } o = 2; while (o <= numEnemy2) { enemy2.duplicateMovieClip("enemy2" + o, o + 100); o++; } n = 2; while (n <= numdropship) { dropship.duplicateMovieClip("dropship" + n, n + 100); n++; } score = 0; _root.gotoAndPlay("bglevel1, 1"); stop();
Instance of Symbol 103 MovieClip "mainStars" in Frame 1796
onClipEvent (load) { stars.duplicateMovieClip("stars2", 1000); stars2._x = stars._x + stars._width; starsStartx = this._x; starsSpeed = 4; } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._x = this._x - starsSpeed; if (this._x <= (starsStartx - stars._width)) { this._x = starsStartx - starsSpeed; } } }
Instance of Symbol 258 MovieClip "spaceship" in Frame 1796
onClipEvent (load) { moveSpeed = 7; _root.laser._visible = false; _root.enemylaser._visible = false; laserCounter = 0; scrollx = _root.mainGround.ground._width / 1; scrollStart = false; maxLasers = 6; depthCounter = 0; } onClipEvent (enterFrame) { if (_root.spaceship._currentframe < 180) { if (Key.isDown(67) and (laserCounter <= maxLasers)) { laserCounter++; _root.laser.duplicateMovieClip("laser" - depthCounter, depthCounter); _root["laser" + depthCounter]._visible = true; depthCounter++; if (depthCounter > maxLasers) { depthCounter = 0; } } } 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; } if (_root.spaceship._currentframe < 80) { if (Key.isDown(88)) { if (_root.spaceship._currentframe < 50) { if (_root.spaceship._currentframe < 2) { _root.spaceship.gotoAndPlay(2); } } moveSpeed = 5; } if (Key.isDown(90)) { if (_root.spaceship._currentframe < 50) { if (_root.spaceship._currentframe > 17) { _root.spaceship.gotoAndPlay(19); moveSpeed = 7; } } } } }
Instance of Symbol 266 MovieClip "laser" in Frame 1796
onClipEvent (load) { laserMoveSpeed = 45; this._x = _root.spaceship._x + 30; this._y = _root.spaceship._y + 20; } 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])) { if (_root["enemy" + i]._currentframe < 2) { _root["enemy" + i].gotoAndPlay(2); _root.spaceship.laserCounter--; _root.score = _root.score + 100; this.removeMovieClip(); } } i++; } o = 1; while (o <= _root.numEnemy2) { if (this.hitTest(_root["enemy2" + o])) { if (_root["enemy2" + o]._currentframe < 2) { _root["enemy2" + o].gotoAndPlay(2); _root.spaceship.laserCounter--; _root.score = _root.score + 200; this.removeMovieClip(); } } n = 1; while (n <= _root.numdropship) { if (this.hitTest(_root["dropship" + n])) { if (_root["dropship" + n]._currentframe < 47) { _root["dropship" + n].play(); _root.spaceship.laserCounter--; _root.score = _root.score + 150; this.removeMovieClip(); } } n++; } o++; } } }
Instance of Symbol 293 MovieClip "enemy1" in Frame 1796
onClipEvent (load) { function reset() { this._x = 1000; this._y = random(100) + 50; enemySpeed = random(10) + 7; this.gotoAndStop(1); } reset(); if (_root.cont._currentframe < 2) { reset(); } if ((_root.game1._currentframe = 1)) { this.removeMovieClip(); } } 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 (_currentframe < 2) { if (_root.spaceship._currentframe < 55) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(55); } } } if (_currentframe < 2) { if (_root.spaceship._currentframe == 110) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(111); } } } if (_currentframe < 2) { if (_root.spaceship._currentframe == 177) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(178); } } } }
Instance of Symbol 300 MovieClip "dropship2" in Frame 1796
onClipEvent (load) { this._x = 1000; this._y = random(100) + 50; dropshipSpeed = random(2) + 3; this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.bglevel1._currentframe > 800) { if (_root.spaceship.scrollStart) { this._x = this._x - (dropshipSpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - dropshipSpeed; } } if (_currentframe < 2) { if (_root.spaceship._currentframe < 55) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(55); } } } if (_currentframe < 2) { if (_root.spaceship._currentframe == 110) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(111); } } } if (_currentframe < 2) { if (_root.spaceship._currentframe == 177) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(178); } } } }
Instance of Symbol 293 MovieClip "enemy6" in Frame 1796
onClipEvent (load) { function reset() { this._x = 1000; this._y = random(100) + 50; enemySpeed = random(11) + 6; this.gotoAndStop(1); } reset(); if (_root.cont._currentframe < 2) { reset(); } if ((_root.game1._currentframe = 1)) { this.removeMovieClip(); } } onClipEvent (enterFrame) { if (_root.bglevel1._currentframe > 400) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemySpeed; } } if (this._x < -10) { reset(); } if (_currentframe < 2) { if (_root.spaceship._currentframe < 55) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(55); } } } if (_currentframe < 2) { if (_root.spaceship._currentframe == 110) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(111); } } } if (_currentframe < 2) { if (_root.spaceship._currentframe == 177) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(178); } } } }
Instance of Symbol 342 MovieClip "enemy5" in Frame 1796
onClipEvent (load) { function reset() { this._x = 1000; this._y = random(100) + 50; enemySpeed = random(10) + 6; this.gotoAndStop(1); } reset(); if (_root.cont._currentframe < 2) { reset(); } if ((_root.game1._currentframe = 1)) { this.removeMovieClip(); } } onClipEvent (enterFrame) { if (_root.bglevel1._currentframe > 550) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemySpeed; } } if (this._x < -10) { reset(); } if (_currentframe < 2) { if (_root.spaceship._currentframe < 55) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(55); } } } if (_currentframe < 2) { if (_root.spaceship._currentframe == 110) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(111); } } } if (_currentframe < 2) { if (_root.spaceship._currentframe == 177) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(178); } } } }
Instance of Symbol 342 MovieClip "enemy4" in Frame 1796
onClipEvent (load) { function reset() { this._x = 1000; this._y = random(100) + 50; enemySpeed = random(8) + 6; this.gotoAndStop(1); } reset(); if (_root.cont._currentframe < 2) { reset(); } if ((_root.game1._currentframe = 1)) { this.removeMovieClip(); } } 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 (_currentframe < 2) { if (_root.spaceship._currentframe < 55) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(55); } } } if (_currentframe < 2) { if (_root.spaceship._currentframe == 110) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(111); } } } if (_currentframe < 2) { if (_root.spaceship._currentframe == 177) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(178); } } } }
Instance of Symbol 370 MovieClip "enemy3" in Frame 1796
onClipEvent (load) { function reset() { this._x = 1100; this._y = random(100) + 50; enemy2Speed = random(5) + 2; this.gotoAndStop(1); } if (_root.cont._currentframe < 2) { reset(); } if ((_root.game1._currentframe = 1)) { this.removeMovieClip(); } } onClipEvent (enterFrame) { if (_root.bglevel1._currentframe > 400) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemy2Speed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemy2Speed; } } if (this._x < -10) { reset(); } if (_currentframe < 2) { if (_root.spaceship._currentframe < 55) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(55); } } } if (_currentframe < 2) { if (_root.spaceship._currentframe == 110) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(111); } } } if (_currentframe < 2) { if (_root.spaceship._currentframe == 177) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(178); } } } }
Instance of Symbol 397 MovieClip "enemy2" in Frame 1796
onClipEvent (load) { function reset() { this._x = 1000; this._y = random(100) + 50; enemy2Speed = random(5) + 2; this.gotoAndStop(1); } if (_root.cont._currentframe < 2) { reset(); } if ((_root.game1._currentframe = 1)) { this.removeMovieClip(); } } onClipEvent (enterFrame) { if (_root.bglevel1._currentframe > 400) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemy2Speed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemy2Speed; } } if (this._x < -10) { reset(); } if (_currentframe < 2) { if (_root.spaceship._currentframe < 55) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(55); } } } if (_currentframe < 2) { if (_root.spaceship._currentframe == 110) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(111); } } } if (_currentframe < 2) { if (_root.spaceship._currentframe == 177) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(178); } } } }
Instance of Symbol 304 MovieClip "enemylaser" in Frame 1796
/* no clip actions */
Instance of Symbol 399 MovieClip in Frame 1796
onClipEvent (load) { pipeSpeed = random(2) + 3; this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.bglevel1._currentframe > 1000) { play(); if (_root.spaceship.scrollStart) { this._x = this._x - (pipeSpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - pipeSpeed; } } }
Instance of Symbol 416 MovieClip "powerup" in Frame 1796
onClipEvent (load) { this._x = 800; this._y = random(100) + 50; powerupSpeed = random(2) + 2; this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.bglevel1._currentframe > 800) { if (_root.spaceship.scrollStart) { this._x = this._x - (powerupSpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - powerupSpeed; } } if (_currentframe < 2) { if (this.hitTest(_root.spaceship)) { nextFrame(); play(); powerupSpeed = 0; this._x = 150; this._y = 100; _root.score = _root.score + 5000; } } if (_root.spaceship._currentframe > 178) { _root.powerup.gotoAndStop(135); } }
Instance of Symbol 155 MovieClip in Frame 1796
onClipEvent (load) { this._y = random(100) + 50; flakSpeed = random(10) + 10; this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.bglevel1._currentframe > 800) { play(); if (_root.spaceship.scrollStart) { this._x = this._x - (flakSpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - flakSpeed; } } if (_currentframe > 35) { stop(); } }
Instance of Symbol 155 MovieClip in Frame 1796
onClipEvent (load) { this._y = random(100) + 50; flakSpeed = random(10) + 10; this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.bglevel1._currentframe > 815) { play(); if (_root.spaceship.scrollStart) { this._x = this._x - (flakSpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - flakSpeed; } } if (_currentframe > 35) { stop(); } }
Instance of Symbol 155 MovieClip in Frame 1796
onClipEvent (load) { this._y = random(100) + 50; flakSpeed = random(10) + 10; this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.bglevel1._currentframe > 805) { play(); if (_root.spaceship.scrollStart) { this._x = this._x - (flakSpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - flakSpeed; } } if (_currentframe > 35) { stop(); } }
Instance of Symbol 155 MovieClip in Frame 1796
onClipEvent (load) { this._y = random(100) + 50; flakSpeed = random(10) + 10; this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.bglevel1._currentframe > 810) { play(); if (_root.spaceship.scrollStart) { this._x = this._x - (flakSpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - flakSpeed; } } if (_currentframe > 35) { stop(); } }
Instance of Symbol 418 MovieClip in Frame 1796
onClipEvent (load) { stop(); } onClipEvent (enterFrame) { if (_root.bglevel1._currentframe > 1768) { nextFrame(); } }
Instance of Symbol 419 MovieClip in Frame 1796
onClipEvent (load) { friendSpeed = random(20) + 10; this.gotoAndPlay(1); } onClipEvent (enterFrame) { if (_root.bglevel1._currentframe > 50) { if (_root.spaceship.scrollStart) { this._x = this._x + (friendSpeed + _root.mainGround.groundSpeed); } else { this._x = this._x + friendSpeed; } } if (_root.bglevel1._currentframe > 500) { this.removeMovieClip(); } }
Instance of Symbol 428 MovieClip "health" in Frame 1796
onClipEvent (load) { this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.spaceship._currentframe == 109) { _root.health.gotoAndPlay(3); } if (_root.spaceship._currentframe == 110) { _root.health.gotoAndPlay(27); } }
Frame 1799
stop();
Frame 1801
_root.bglevel1.gotoAndStop(1);
Frame 1802
gotoAndPlay (1803);
Frame 2118
stop();
Frame 2120
numEnemy = 10; numEnemy2 = 2; numEnemy5 = 4; i = 2; while (i <= numEnemy) { enemy1.duplicateMovieClip("enemy" + i, i + 100); i++; } o = 2; while (o <= numEnemy2) { enemy2.duplicateMovieClip("enemy2" + o, o + 100); o++; } j = 2; while (j <= numEnemy5) { enemy5.duplicateMovieClip("enemy5" + j, j + 100); j++; } score = 0; _root.gotoAndPlay("bglevel2, 1"); stop();
Instance of Symbol 103 MovieClip "mainStars" in Frame 2120
onClipEvent (load) { stars.duplicateMovieClip("stars2", 1000); stars2._x = stars._x + stars._width; starsStartx = this._x; starsSpeed = 4; } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._x = this._x - starsSpeed; if (this._x <= (starsStartx - stars._width)) { this._x = starsStartx - starsSpeed; } } }
Instance of Symbol 447 MovieClip "spaceship" in Frame 2120
onClipEvent (load) { moveSpeed = 6; _root.laser._visible = false; _root.enemylaser._visible = false; laserCounter = 0; scrollx = _root.mainGround.ground._width / 1; scrollStart = false; maxLasers = 6; depthCounter = 0; } onClipEvent (enterFrame) { if (_root.spaceship._currentframe < 180) { if (Key.isDown(67) and (laserCounter <= maxLasers)) { laserCounter++; _root.laser.duplicateMovieClip("laser" - depthCounter, depthCounter); _root["laser" + depthCounter]._visible = true; depthCounter++; if (depthCounter > maxLasers) { depthCounter = 0; } } } 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; } if (_root.spaceship._currentframe < 80) { if (Key.isDown(88)) { if (_root.spaceship._currentframe < 50) { if (_root.spaceship._currentframe < 2) { _root.spaceship.gotoAndPlay(2); } } moveSpeed = 7; } if (Key.isDown(90)) { if (_root.spaceship._currentframe < 50) { if (_root.spaceship._currentframe > 17) { _root.spaceship.gotoAndPlay(19); moveSpeed = 4; } } } } }
Instance of Symbol 451 MovieClip "laser" in Frame 2120
onClipEvent (load) { laserMoveSpeed = 35; this._x = _root.spaceship._x + 30; this._y = _root.spaceship._y + 20; } 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])) { if (_root["enemy" + i]._currentframe < 2) { _root["enemy" + i].gotoAndPlay(2); _root.spaceship.laserCounter--; _root.score = _root.score + 100; this.removeMovieClip(); } } i++; } o = 1; while (o <= _root.numEnemy2) { if (this.hitTest(_root["enemy2" + o])) { if (_root["enemy2" + o]._currentframe < 2) { _root["enemy2" + o].gotoAndPlay(2); _root.spaceship.laserCounter--; _root.score = _root.score + 200; this.removeMovieClip(); } } o++; } } j = 1; while (j <= _root.numEnemy5) { if (this.hitTest(_root["enemy5" + j])) { if (_root["enemy5" + j]._currentframe < 2) { _root["enemy5" + j].gotoAndPlay(2); _root.spaceship.laserCounter--; _root.score = _root.score + 250; this.removeMovieClip(); } } j++; } }
Instance of Symbol 397 MovieClip "enemy4" in Frame 2120
onClipEvent (load) { function reset() { this._x = 1000; this._y = random(100) + 50; enemySpeed = random(8) + 6; this.gotoAndStop(1); } reset(); if (_root.cont2._currentframe < 2) { reset(); } if ((_root.game2._currentframe = 1)) { this.removeMovieClip(); } } onClipEvent (enterFrame) { if (_root.bglevel2._currentframe > 800) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemySpeed; } } if (this._x < -10) { reset(); } if (_currentframe < 2) { if (_root.spaceship._currentframe < 55) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(55); } } } if (_currentframe < 2) { if (_root.spaceship._currentframe == 110) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(111); } } } if (_currentframe < 2) { if (_root.spaceship._currentframe == 177) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(178); } } } }
Instance of Symbol 458 MovieClip "enemy5" in Frame 2120
onClipEvent (load) { function reset() { this._x = 1000; this._y = random(100) + 50; enemy05Speed = random(10) + 5; this.gotoAndStop(1); } if (_root.cont2._currentframe < 2) { reset(); } if ((_root.game2._currentframe = 1)) { this.removeMovieClip(); } } onClipEvent (enterFrame) { if (_root.bglevel2._currentframe > 200) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemy05Speed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemy05Speed; } } if (this._x < -10) { reset(); } if (_currentframe < 2) { if (_root.spaceship._currentframe < 55) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(55); } } } if (_currentframe < 2) { if (_root.spaceship._currentframe == 110) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(111); } } } if (_currentframe < 2) { if (_root.spaceship._currentframe == 177) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(178); } } } }
Instance of Symbol 293 MovieClip "enemy1" in Frame 2120
onClipEvent (load) { function reset() { this._x = 1000; this._y = random(100) + 50; enemySpeed = random(8) + 6; this.gotoAndStop(1); } reset(); if (_root.cont2._currentframe < 2) { reset(); } if ((_root.game2._currentframe = 1)) { this.removeMovieClip(); } } onClipEvent (enterFrame) { if (_root.bglevel2._currentframe > 200) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemySpeed; } } if (this._x < -10) { reset(); } if (_currentframe < 2) { if (_root.spaceship._currentframe < 55) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(55); } } } if (_currentframe < 2) { if (_root.spaceship._currentframe == 110) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(111); } } } if (_currentframe < 2) { if (_root.spaceship._currentframe == 177) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(178); } } } }
Instance of Symbol 342 MovieClip "enemy3" in Frame 2120
onClipEvent (load) { function reset() { this._x = 1000; this._y = random(100) + 50; enemySpeed = random(8) + 6; this.gotoAndStop(1); } reset(); if (_root.cont2._currentframe < 2) { reset(); } if ((_root.game2._currentframe = 1)) { this.removeMovieClip(); } } onClipEvent (enterFrame) { if (_root.bglevel2._currentframe > 800) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemySpeed; } } if (this._x < -10) { reset(); } if (_currentframe < 2) { if (_root.spaceship._currentframe < 55) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(55); } } } if (_currentframe < 2) { if (_root.spaceship._currentframe == 110) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(111); } } } if (_currentframe < 2) { if (_root.spaceship._currentframe == 177) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(178); } } } }
Instance of Symbol 458 MovieClip "enemy7" in Frame 2120
onClipEvent (load) { function reset() { this._x = 1000; this._y = random(100) + 50; enemy05Speed = random(10) + 5; this.gotoAndStop(1); } if (_root.cont2._currentframe < 2) { reset(); } if ((_root.game2._currentframe = 1)) { this.removeMovieClip(); } } onClipEvent (enterFrame) { if (_root.bglevel2._currentframe > 200) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemy05Speed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemy05Speed; } } if (this._x < -10) { reset(); } if (_currentframe < 2) { if (_root.spaceship._currentframe < 55) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(55); } } } if (_currentframe < 2) { if (_root.spaceship._currentframe == 110) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(111); } } } if (_currentframe < 2) { if (_root.spaceship._currentframe == 177) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(178); } } } }
Instance of Symbol 293 MovieClip "enemy2" in Frame 2120
onClipEvent (load) { function reset() { this._x = 1000; this._y = random(100) + 50; enemySpeed = random(8) + 6; this.gotoAndStop(1); } reset(); if (_root.cont2._currentframe < 2) { reset(); } if ((_root.game2._currentframe = 1)) { this.removeMovieClip(); } } onClipEvent (enterFrame) { if (_root.bglevel2._currentframe > 150) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemySpeed; } } if (this._x < -10) { reset(); } if (_currentframe < 2) { if (_root.spaceship._currentframe < 55) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(55); } } } if (_currentframe < 2) { if (_root.spaceship._currentframe == 110) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(111); } } } if (_currentframe < 2) { if (_root.spaceship._currentframe == 177) { if (this.hitTest(_root.spaceship)) { _root.spaceship.gotoAndPlay(178); } } } }
Instance of Symbol 416 MovieClip "powerup" in Frame 2120
onClipEvent (load) { this._x = 800; this._y = random(100) + 50; powerupSpeed = random(2) + 2; this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.bglevel2._currentframe > 900) { if (_root.spaceship.scrollStart) { this._x = this._x - (powerupSpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - powerupSpeed; } } if (_currentframe < 2) { if (this.hitTest(_root.spaceship)) { nextFrame(); play(); powerupSpeed = 0; this._x = 150; this._y = 100; _root.score = _root.score + 5000; } } }
Instance of Symbol 428 MovieClip "health" in Frame 2120
onClipEvent (load) { this.gotoAndStop(1); } onClipEvent (enterFrame) { if (_root.spaceship._currentframe == 109) { _root.health.gotoAndPlay(3); } if (_root.spaceship._currentframe == 110) { _root.health.gotoAndPlay(27); } }
Instance of Symbol 418 MovieClip in Frame 2120
onClipEvent (load) { stop(); } onClipEvent (enterFrame) { if (_root.bglevel2._currentframe > 2144) { nextFrame(); } }
Instance of Symbol 466 MovieClip in Frame 2120
onClipEvent (load) { stop(); } onClipEvent (enterFrame) { if (_root.bglevel2._currentframe > 1336) { nextFrame(); } }
Frame 2123
stop();
Frame 2125
_root.bglevel2.gotoAndStop(1);
Frame 2126
gotoAndPlay (2127);
Frame 2344
gotoAndPlay (5);
Symbol 5 MovieClip [FLabelSymbol] Frame 1
#initclip 2 _global.FLabelClass = function () { if (this.hostComponent == undefined) { this.hostComponent = ((this._parent.controller == undefined) ? (this._parent) : (this._parent.controller)); } if (this.customTextStyle == undefined) { if (this.hostComponent.textStyle == undefined) { this.hostComponent.textStyle = new TextFormat(); } this.textStyle = this.hostComponent.textStyle; this.enable = true; } }; FLabelClass.prototype = new MovieClip(); Object.registerClass("FLabelSymbol", FLabelClass); FLabelClass.prototype.setLabel = function (label) { var val = this.hostComponent.styleTable.embedFonts.value; if (val != undefined) { this.labelField.embedFonts = val; } this.labelField.setNewTextFormat(this.textStyle); this.labelField.text = label; this.labelField._height = this.labelField.textHeight + 2; }; FLabelClass.prototype.setSize = function (width) { this.labelField._width = width; }; FLabelClass.prototype.setEnabled = function (enable) { this.enable = enable; var tmpColor = this.hostComponent.styleTable[(enable ? "textColor" : "textDisabled")].value; if (tmpColor == undefined) { tmpColor = (enable ? 0 : 8947848); } this.setColor(tmpColor); }; FLabelClass.prototype.getLabel = function () { return(this.labelField.text); }; FLabelClass.prototype.setColor = function (col) { this.labelField.textColor = col; }; #endinitclip
Symbol 14 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");
Symbol 17 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "background");
Symbol 20 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 22 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(background_mc, "backgroundDisabled");
Symbol 25 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(disabled_mc, "foregroundDisabled");
Symbol 28 MovieClip Frame 1
var component = _parent._parent; component.registerSkinElement(dot_mc, "radioDot");
Symbol 29 MovieClip [frb_states] Frame 1
stop();
Symbol 29 MovieClip [frb_states] Frame 2
stop();
Symbol 29 MovieClip [frb_states] Frame 3
stop();
Symbol 29 MovieClip [frb_states] Frame 4
stop();
Symbol 29 MovieClip [frb_states] Frame 5
stop();
Symbol 30 MovieClip [FUIComponentSymbol] Frame 1
#initclip 1 function FUIComponentClass() { this.init(); } FUIComponentClass.prototype = new MovieClip(); FUIComponentClass.prototype.init = function () { this.enable = true; this.focused = false; this.useHandCursor = false; this._accImpl = new Object(); this._accImpl.stub = true; this.styleTable = new Array(); if (_global.globalStyleFormat == undefined) { _global.globalStyleFormat = new FStyleFormat(); globalStyleFormat.isGlobal = true; _global._focusControl = new Object(); _global._focusControl.onSetFocus = function (oldFocus, newFocus) { oldFocus.myOnKillFocus(); newFocus.myOnSetFocus(); }; Selection.addListener(_global._focusControl); } if (this._name != undefined) { this._focusrect = false; this.tabEnabled = true; this.focusEnabled = true; this.tabChildren = false; this.tabFocused = true; if (this.hostStyle == undefined) { globalStyleFormat.addListener(this); } else { this.styleTable = this.hostStyle; } this.deadPreview._visible = false; this.deadPreview._width = (this.deadPreview._height = 1); this.methodTable = new Object(); this.keyListener = new Object(); this.keyListener.controller = this; this.keyListener.onKeyDown = function () { this.controller.myOnKeyDown(); }; this.keyListener.onKeyUp = function () { this.controller.myOnKeyUp(); }; for (var i in this.styleFormat_prm) { this.setStyleProperty(i, this.styleFormat_prm[i]); } } }; FUIComponentClass.prototype.setEnabled = function (enabledFlag) { this.enable = ((arguments.length > 0) ? (enabledFlag) : true); this.tabEnabled = (this.focusEnabled = enabledFlag); if ((!this.enable) && (this.focused)) { Selection.setFocus(undefined); } }; FUIComponentClass.prototype.getEnabled = function () { return(this.enable); }; FUIComponentClass.prototype.setSize = function (w, h) { this.width = w; this.height = h; this.focusRect.removeMovieClip(); }; FUIComponentClass.prototype.setChangeHandler = function (chng, obj) { this.handlerObj = ((obj == undefined) ? (this._parent) : (obj)); this.changeHandler = chng; }; FUIComponentClass.prototype.invalidate = function (methodName) { this.methodTable[methodName] = true; this.onEnterFrame = this.cleanUI; }; FUIComponentClass.prototype.cleanUI = function () { if (this.methodTable.setSize) { this.setSize(this.width, this.height); } else { this.cleanUINotSize(); } this.methodTable = new Object(); delete this.onEnterFrame; }; FUIComponentClass.prototype.cleanUINotSize = function () { for (var funct in this.methodTable) { this[funct](); } }; FUIComponentClass.prototype.drawRect = function (x, y, w, h) { var inner = this.styleTable.focusRectInner.value; var outer = this.styleTable.focusRectOuter.value; if (inner == undefined) { inner = 16777215 /* 0xFFFFFF */; } if (outer == undefined) { outer = 0; } this.createEmptyMovieClip("focusRect", 1000); this.focusRect.controller = this; this.focusRect.lineStyle(1, outer); this.focusRect.moveTo(x, y); this.focusRect.lineTo(x + w, y); this.focusRect.lineTo(x + w, y + h); this.focusRect.lineTo(x, y + h); this.focusRect.lineTo(x, y); this.focusRect.lineStyle(1, inner); this.focusRect.moveTo(x + 1, y + 1); this.focusRect.lineTo((x + w) - 1, y + 1); this.focusRect.lineTo((x + w) - 1, (y + h) - 1); this.focusRect.lineTo(x + 1, (y + h) - 1); this.focusRect.lineTo(x + 1, y + 1); }; FUIComponentClass.prototype.pressFocus = function () { this.tabFocused = false; this.focusRect.removeMovieClip(); Selection.setFocus(this); }; FUIComponentClass.prototype.drawFocusRect = function () { this.drawRect(-2, -2, this.width + 4, this.height + 4); }; FUIComponentClass.prototype.myOnSetFocus = function () { this.focused = true; Key.addListener(this.keyListener); if (this.tabFocused) { this.drawFocusRect(); } }; FUIComponentClass.prototype.myOnKillFocus = function () { this.tabFocused = true; this.focused = false; this.focusRect.removeMovieClip(); Key.removeListener(this.keyListener); }; FUIComponentClass.prototype.executeCallBack = function () { this.handlerObj[this.changeHandler](this); }; FUIComponentClass.prototype.updateStyleProperty = function (styleFormat, propName) { this.setStyleProperty(propName, styleFormat[propName], styleFormat.isGlobal); }; FUIComponentClass.prototype.setStyleProperty = function (propName, value, isGlobal) { if (value == "") { return(undefined); } var tmpValue = parseInt(value); if (!isNaN(tmpValue)) { value = tmpValue; } var global = ((arguments.length > 2) ? (isGlobal) : false); if (this.styleTable[propName] == undefined) { this.styleTable[propName] = new Object(); this.styleTable[propName].useGlobal = true; } if (this.styleTable[propName].useGlobal || (!global)) { this.styleTable[propName].value = value; if (this.setCustomStyleProperty(propName, value)) { } else if (propName == "embedFonts") { this.invalidate("setSize"); } else if (propName.subString(0, 4) == "text") { if (this.textStyle == undefined) { this.textStyle = new TextFormat(); } var textProp = propName.subString(4, propName.length); this.textStyle[textProp] = value; this.invalidate("setSize"); } else { for (var j in this.styleTable[propName].coloredMCs) { var myColor = new Color(this.styleTable[propName].coloredMCs[j]); if (this.styleTable[propName].value == undefined) { var myTObj = {ra:"100", rb:"0", ga:"100", gb:"0", ba:"100", bb:"0", aa:"100", ab:"0"}; myColor.setTransform(myTObj); } else { myColor.setRGB(value); } } } this.styleTable[propName].useGlobal = global; } }; FUIComponentClass.prototype.registerSkinElement = function (skinMCRef, propName) { if (this.styleTable[propName] == undefined) { this.styleTable[propName] = new Object(); this.styleTable[propName].useGlobal = true; } if (this.styleTable[propName].coloredMCs == undefined) { this.styleTable[propName].coloredMCs = new Object(); } this.styleTable[propName].coloredMCs[skinMCRef] = skinMCRef; if (this.styleTable[propName].value != undefined) { var myColor = new Color(skinMCRef); myColor.setRGB(this.styleTable[propName].value); } }; _global.FStyleFormat = function () { this.nonStyles = {listeners:true, isGlobal:true, isAStyle:true, addListener:true, removeListener:true, nonStyles:true, applyChanges:true}; this.listeners = new Object(); this.isGlobal = false; if (arguments.length > 0) { for (var i in arguments[0]) { this[i] = arguments[0][i]; } } }; _global.FStyleFormat.prototype = new Object(); FStyleFormat.prototype.addListener = function () { var arg = 0; while (arg < arguments.length) { var mcRef = arguments[arg]; this.listeners[arguments[arg]] = mcRef; for (var i in this) { if (this.isAStyle(i)) { mcRef.updateStyleProperty(this, i.toString()); } } arg++; } }; FStyleFormat.prototype.removeListener = function (component) { this.listeners[component] = undefined; for (var prop in this) { if (this.isAStyle(prop)) { if (component.styleTable[prop].useGlobal == this.isGlobal) { component.styleTable[prop].useGlobal = true; var value = (this.isGlobal ? undefined : (globalStyleFormat[prop])); component.setStyleProperty(prop, value, true); } } } }; FStyleFormat.prototype.applyChanges = function () { var count = 0; for (var i in this.listeners) { var component = this.listeners[i]; if (arguments.length > 0) { var j = 0; while (j < arguments.length) { if (this.isAStyle(arguments[j])) { component.updateStyleProperty(this, arguments[j]); } j++; } } else { for (var j in this) { if (this.isAStyle(j)) { component.updateStyleProperty(this, j.toString()); } } } } }; FStyleFormat.prototype.isAStyle = function (name) { return((this.nonStyles[name] ? false : true)); }; #endinitclip
Symbol 34 MovieClip [FBoundingBoxSymbol] Frame 1
var component = _parent; component.registerSkinElement(boundingBox, "background"); stop();
Symbol 34 MovieClip [FBoundingBoxSymbol] Frame 2
component.registerSkinElement(boundingBox2, "backgroundDisabled"); stop();
Symbol 37 MovieClip [FRadioButtonSymbol] Frame 1
#initclip 3 function FRadioButtonClass() { this.init(); } function FRadioButtonGroupClass() { this.radioInstances = new Array(); } FRadioButtonClass.prototype = new FUIComponentClass(); FRadioButtonGroupClass.prototype = new FUIComponentClass(); Object.registerClass("FRadioButtonSymbol", FRadioButtonClass); FRadioButtonClass.prototype.init = function () { if (this.initialState == undefined) { this.selected = false; } else { this.selected = this.initialState; } super.setSize(this._width, this._height); this.boundingBox_mc.unloadMovie(); this.boundingBox_mc._width = 0; this.boundingBox_mc._height = 0; this.attachMovie("frb_hitArea", "frb_hitArea_mc", 1); this.attachMovie("frb_states", "frb_states_mc", 2); this.attachMovie("FLabelSymbol", "fLabel_mc", 3); super.init(); this._xscale = 100; this._yscale = 100; this.setSize(this.width, this.height); this.setChangeHandler(this.changeHandler); if (this.label != undefined) { this.setLabel(this.label); } if (this.initialState == undefined) { this.setValue(false); } else { this.setValue(this.initialState); } if (this.data == "") { this.data = undefined; } else { this.setData(this.data); } this.addToRadioGroup(); this.ROLE_SYSTEM_RADIOBUTTON = 45; this.STATE_SYSTEM_SELECTED = 16; this.EVENT_OBJECT_STATECHANGE = 32778; this.EVENT_OBJECT_NAMECHANGE = 32780; this._accImpl.master = this; this._accImpl.stub = false; this._accImpl.get_accRole = this.get_accRole; this._accImpl.get_accName = this.get_accName; this._accImpl.get_accState = this.get_accState; this._accImpl.get_accDefaultAction = this.get_accDefaultAction; this._accImpl.accDoDefaultAction = this.accDoDefaultAction; }; FRadioButtonClass.prototype.setHitArea = function (w, h) { var hit = this.frb_hitArea_mc; this.hitArea = hit; if (this.frb_states_mc._width > w) { hit._width = this.frb_states_mc._width; } else { hit._width = w; } hit._visible = false; if (arguments.length > 1) { hit._height = h; } }; FRadioButtonClass.prototype.txtFormat = function (pos) { var txtS = this.textStyle; var sTbl = this.styleTable; txtS.align = ((sTbl.textAlign.value == undefined) ? ((txtS.align = pos)) : undefined); txtS.leftMargin = ((sTbl.textLeftMargin.value == undefined) ? ((txtS.leftMargin = 0)) : undefined); txtS.rightMargin = ((sTbl.textRightMargin.value == undefined) ? ((txtS.rightMargin = 0)) : undefined); if (this.flabel_mc._height > this.height) { super.setSize(this.width, this.flabel_mc._height); } else { super.setSize(this.width, this.height); } this.setEnabled(this.enable); }; FRadioButtonClass.prototype.setSize = function (w, h) { this.setLabel(this.getLabel()); this.setLabelPlacement(this.labelPlacement); if (this.frb_states_mc._height < this.flabel_mc.labelField._height) { super.setSize(w, this.flabel_mc.labelField._height); } this.setHitArea(this.width, this.height); this.setLabelPlacement(this.labelPlacement); }; FRadioButtonClass.prototype.setLabelPlacement = function (pos) { this.setLabel(this.getLabel()); this.txtFormat(pos); var halfLabelH = (this.fLabel_mc._height / 2); var halfFrameH = (this.frb_states_mc._height / 2); var vertCenter = (halfFrameH - halfLabelH); var radioWidth = this.frb_states_mc._width; var frame = this.frb_states_mc; var label = this.fLabel_mc; var w = (this.width - frame._width); if (frame._width > this.width) { w = 0; } else { w = this.width - frame._width; } this.fLabel_mc.setSize(w); if ((pos == "right") || (pos == undefined)) { this.labelPlacement = "right"; this.frb_states_mc._x = 0; this.fLabel_mc._x = radioWidth; this.txtFormat("left"); } else if (pos == "left") { this.labelPlacement = "left"; this.fLabel_mc._x = 0; this.frb_states_mc._x = this.width - radioWidth; this.txtFormat("right"); } this.fLabel_mc._y = vertCenter; this.frb_hitArea_mc._y = vertCenter; this.setLabel(this.getLabel()); }; FRadioButtonClass.prototype.setData = function (dataValue) { this.data = dataValue; }; FRadioButtonClass.prototype.getData = function () { return(this.data); }; FRadioButtonClass.prototype.getState = function () { return(this.selected); }; FRadioButtonClass.prototype.getSize = function () { return(this.width); }; FRadioButtonClass.prototype.getGroupName = function () { return(this.groupName); }; FRadioButtonClass.prototype.setGroupName = function (groupName) { var i = 0; while (i < this._parent[this.groupName].radioInstances.length) { if (this._parent[this.groupName].radioInstances[i] == this) { delete this._parent[this.groupName].radioInstances[i]; } i++; } this.groupName = groupName; this.addToRadioGroup(); }; FRadioButtonClass.prototype.addToRadioGroup = function () { if (this._parent[this.groupName] == undefined) { this._parent[this.groupName] = new FRadioButtonGroupClass(); } this._parent[this.groupName].addRadioInstance(this); }; FRadioButtonClass.prototype.setValue = function (selected) { if (selected || (selected == undefined)) { this.setState(true); this.focusRect.removeMovieClip(); this.executeCallBack(); } else if (selected == false) { this.setState(false); } }; FRadioButtonClass.prototype.setTabState = function (selected) { Selection.setFocus(this); this.setState(selected); this.drawFocusRect(); this.executeCallBack(); }; FRadioButtonClass.prototype.setState = function (selected) { if (selected || (selected == undefined)) { this.tabEnabled = true; for (var i in this._parent) { if ((this != this._parent[i]) && (this._parent[i].groupName == this.groupName)) { this._parent[i].setState(false); this._parent[i].tabEnabled = false; } } } if (this.enable) { this.flabel_mc.setEnabled(true); if (selected || (selected == undefined)) { this.frb_states_mc.gotoAndStop("selectedEnabled"); this.enabled = false; this.selected = true; this.tabEnabled = true; this.tabFocused = true; } else { this.frb_states_mc.gotoAndStop("unselectedEnabled"); this.enabled = true; this.selected = false; this.tabEnabled = false; var enabTrue = this._parent[this.groupName].getEnabled(); var noneSelect = (this._parent[this.groupName].getValue() == undefined); if (enabTrue && (noneSelect)) { this._parent[this.groupName].radioInstances[0].tabEnabled = true; } } } else { this.flabel_mc.setEnabled(false); if (selected || (selected == undefined)) { this.frb_states_mc.gotoAndStop("selectedDisabled"); this.enabled = false; this.selected = true; this.tabEnabled = false; } else { this.frb_states_mc.gotoAndStop("unselectedDisabled"); this.enabled = false; this.selected = false; this.tabEnabled = false; } } if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_STATECHANGE, true); } }; FRadioButtonClass.prototype.getValue = function () { if (this.selected) { if ((this.data == "") || (this.data == undefined)) { return(this.getLabel()); } return(this.data); } }; FRadioButtonClass.prototype.setEnabled = function (enable) { if ((enable == true) || (enable == undefined)) { this.enable = true; super.setEnabled(true); } else { this.enable = false; super.setEnabled(false); } this.setState(this.selected); var cgn = (this._parent[this.groupName].getEnabled() == undefined); var cgnez = (this._parent[this.groupName].radioInstances[0].getEnabled() == false); if (cgn && (cgnez)) { var i = 0; while (i < this._parent[this.groupName].radioInstances.length) { if (this._parent[this.groupName].radioInstances[i].getEnabled() == true) { this._parent[this.groupName].radioInstances[i].tabEnabled = true; return(undefined); } i++; } } }; FRadioButtonClass.prototype.getEnabled = function () { return(this.enable); }; FRadioButtonClass.prototype.setLabel = function (label) { this.fLabel_mc.setLabel(label); this.txtFormat(); if (Accessibility.isActive()) { Accessibility.sendEvent(this, 0, this.EVENT_OBJECT_NAMECHANGE); } }; FRadioButtonClass.prototype.getLabel = function () { return(this.fLabel_mc.getLabel()); }; FRadioButtonClass.prototype.onPress = function () { this.pressFocus(); this.frb_states_mc.gotoAndStop("press"); }; FRadioButtonClass.prototype.onRelease = function () { this.frb_states_mc.gotoAndStop("unselectedDisabled"); this.setValue(!this.selected); }; FRadioButtonClass.prototype.onReleaseOutside = function () { this.frb_states_mc.gotoAndStop("unselectedEnabled"); }; FRadioButtonClass.prototype.onDragOut = function () { this.frb_states_mc.gotoAndStop("unselectedEnabled"); }; FRadioButtonClass.prototype.onDragOver = function () { this.frb_states_mc.gotoAndStop("press"); }; FRadioButtonClass.prototype.executeCallBack = function () { this.handlerObj[this.changeHandler](this._parent[this.groupName]); }; FRadioButtonGroupClass.prototype.addRadioInstance = function (instance) { this.radioInstances.push(instance); this.radioInstances[0].tabEnabled = true; }; FRadioButtonGroupClass.prototype.setEnabled = function (enableFlag) { var i = 0; while (i < this.radioInstances.length) { this.radioInstances[i].setEnabled(enableFlag); i++; } }; FRadioButtonGroupClass.prototype.getEnabled = function () { var i = 0; while (i < this.radioInstances.length) { if (this.radioInstances[i].getEnabled() != this.radioInstances[0].getEnabled()) { return(undefined); } i++; } return(this.radioInstances[0].getEnabled()); }; FRadioButtonGroupClass.prototype.setChangeHandler = function (changeHandler, obj) { var i = 0; while (i < this.radioInstances.length) { this.radioInstances[i].setChangeHandler(changeHandler, obj); i++; } }; FRadioButtonGroupClass.prototype.getValue = function () { var i = 0; while (i < this.radioInstances.length) { if (this.radioInstances[i].selected == true) { if ((this.radioInstances[i].data == "") || (this.radioInstances[i].data == undefined)) { return(this.radioInstances[i].getLabel()); } return(this.radioInstances[i].data); } i++; } }; FRadioButtonGroupClass.prototype.getData = function () { var i = 0; while (i < this.radioInstances.length) { if (this.radioInstances[i].selected) { return(this.radioInstances[i].getData()); } i++; } }; FRadioButtonGroupClass.prototype.getInstance = function () { var i = 0; while (i < this.radioInstances.length) { if (this.radioInstances[i].selected == true) { return(i); } i++; } }; FRadioButtonGroupClass.prototype.setValue = function (dataValue) { var i = 0; while (i < this.radioInstances.length) { if (this.radioInstances[i].data == dataValue) { this.radioInstances[i].setValue(true); return(undefined); } i++; } var i = 0; while (i < this.radioInstances.length) { if (this.radioInstances[i].getLabel() == dataValue) { this.radioInstances[i].setValue(true); } i++; } }; FRadioButtonGroupClass.prototype.setSize = function (w) { var i = 0; while (i < this.radioInstances.length) { this.radioInstances[i].setSize(w); i++; } }; FRadioButtonGroupClass.prototype.getSize = function () { var widestRadio = 0; var i = 0; while (i < this.radioInstances.length) { if (this.radioInstances[i].width >= widestRadio) { widestRadio = this.radioInstances[i].width; } i++; } return(widestRadio); }; FRadioButtonGroupClass.prototype.setGroupName = function (groupName) { this.oldGroupName = this.radioInstances[0].groupName; var i = 0; while (i < this.radioInstances.length) { this.radioInstances[i].groupName = groupName; this.radioInstances[i].addToRadioGroup(); i++; } delete this._parent[this.oldGroupName]; }; FRadioButtonGroupClass.prototype.getGroupName = function () { return(this.radioInstances[0].groupName); }; FRadioButtonGroupClass.prototype.setLabelPlacement = function (pos) { var i = 0; while (i < this.radioInstances.length) { this.radioInstances[i].setLabelPlacement(pos); i++; } }; FRadioButtonGroupClass.prototype.setStyleProperty = function (propName, value, isGlobal) { var i = 0; while (i < this.radioInstances.length) { this.radioInstances[i].setStyleProperty(propName, value, isGlobal); i++; } }; FRadioButtonGroupClass.prototype.addListener = function () { var i = 0; while (i < this.radioInstances.length) { this.radioInstances[i].addListener(); i++; } }; FRadioButtonGroupClass.prototype.applyChanges = function () { var i = 0; while (i < this.radioInstances.length) { this.radioInstances[i].applyChanges(); i++; } }; FRadioButtonGroupClass.prototype.removeListener = function (component) { var i = 0; while (i < this.radioInstances.length) { this.radioInstances[i].removeListener(component); i++; } }; FRadioButtonClass.prototype.drawFocusRect = function () { this.drawRect(-2, -2, this._width + 6, this._height - 3); }; FRadioButtonClass.prototype.myOnKillFocus = function () { Key.removeListener(this.keyListener); this.focused = false; this.focusRect.removeMovieClip(); this._parent[this.groupName].foobar = 0; }; FRadioButtonClass.prototype.myOnKeyDown = function () { if ((Key.getCode() == 32) && (this._parent[this.groupName].getValue() == undefined)) { if (this._parent[this.groupName].radioInstances[0] == this) { this.setTabState(true); } } if ((Key.getCode() == 40) && (this.pressOnce == undefined)) { this.foobar = this._parent[this.groupName].getInstance(); var i = this.foobar; while (i < this._parent[this.groupName].radioInstances.length) { var inc = (i + 1); if (this._parent[this.groupName].radioInstances[inc].getEnabled()) { this._parent[this.groupName].radioInstances[inc].setTabState(true); return(undefined); } i++; } } if ((Key.getCode() == 38) && (this.pressOnce == undefined)) { this.foobar = this._parent[this.groupName].getInstance(); var i = this.foobar; while (i >= 0) { var inc = (i - 1); if (this._parent[this.groupName].radioInstances[inc].getEnabled()) { this._parent[this.groupName].radioInstances[inc].setTabState(true); return(undefined); } i--; } } }; FRadioButtonClass.prototype.get_accRole = function (childId) { return(this.master.ROLE_SYSTEM_RADIOBUTTON); }; FRadioButtonClass.prototype.get_accName = function (childId) { return(this.master.getLabel()); }; FRadioButtonClass.prototype.get_accState = function (childId) { if (this.master.getState()) { return(this.master.STATE_SYSTEM_SELECTED); } return(0); }; FRadioButtonClass.prototype.get_accDefaultAction = function (childId) { if (this.master.getState()) { return("UnCheck"); } return("Check"); }; FRadioButtonClass.prototype.accDoDefaultAction = function (childId) { this.master.setValue(!this.master.getValue()); }; #endinitclip boundingBox_mc._visible = false; deadPreview._visible = false;
Symbol 48 MovieClip Frame 1
this._xscale = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
Symbol 48 MovieClip Frame 2
gotoAndPlay (1);
Symbol 59 MovieClip Frame 785
gotoAndPlay (1);
Symbol 60 Button
on (press, release) { _root.gotoAndPlay("play_game"); gotoAndPlay (20); } on (rollOut) { gotoAndPlay (39); }
Symbol 76 MovieClip Frame 6
stop();
Symbol 78 Button
on (release) { nextFrame(); play(); }
Symbol 79 Button
on (release) { getURL ("http://www.adragonsdestiny.tk", "_blank"); }
Symbol 80 Button
on (release) { getURL ("http://invisionfree.com/forums/The_Drakoja_Universe", "_blank"); }
Symbol 83 Button
on (release) { getURL ("http://www.edgen.com", "_blank"); }
Symbol 85 Button
on (release) { gotoAndPlay (1675); }
Symbol 100 Button
on (release) { nextFrame(); play(); }
Symbol 137 MovieClip Frame 103
stop();
Symbol 155 MovieClip Frame 37
stop();
Symbol 170 MovieClip Frame 1798
_root.gotoAndPlay("cred"); _root.gotoAndStop("bglevel1");
Symbol 204 MovieClip Frame 18
stop();
Symbol 258 MovieClip Frame 1
stop();
Symbol 258 MovieClip Frame 18
stop();
Symbol 258 MovieClip Frame 50
gotoAndStop (1);
Symbol 258 MovieClip Frame 110
stop();
Symbol 258 MovieClip Frame 111
nextFrame(); play();
Symbol 258 MovieClip Frame 177
stop();
Symbol 258 MovieClip Frame 178
nextFrame(); play();
Symbol 258 MovieClip Frame 291
_root.bglevel1.gotoAndStop(1); _root.gotoAndStop("gameOver"); gotoAndStop (1);
Symbol 266 MovieClip Frame 1
if (_root.powerup._currentframe > 2) { gotoAndPlay (5); } if (_root.powerup._currentframe > 2) { if (_root.spaceship._currentframe > 2) { gotoAndPlay (7); } } if (_root.spaceship._currentframe > 2) { gotoAndStop (3); }
Symbol 266 MovieClip Frame 2
stop();
Symbol 266 MovieClip Frame 3
if (_root.spaceship._currentframe < 2) { gotoAndStop (1); }
Symbol 266 MovieClip Frame 4
stop();
Symbol 266 MovieClip Frame 5
if (_root.spaceship._currentframe > 2) { gotoAndStop (7); }
Symbol 266 MovieClip Frame 6
stop();
Symbol 266 MovieClip Frame 7
if (_root.powerup._currentframe > 2) { if (_root.spaceship._currentframe < 2) { gotoAndStop (5); } }
Symbol 266 MovieClip Frame 8
stop();
Symbol 293 MovieClip Frame 1
stop();
Symbol 293 MovieClip Frame 2
if (_root.powerup._currentframe > 2) { gotoAndPlay (70); } if (_root.spaceship._currentframe > 2) { gotoAndPlay (35); }
Symbol 293 MovieClip Frame 28
stop();
Symbol 293 MovieClip Frame 66
stop();
Symbol 293 MovieClip Frame 70
if (_root.spaceship._currentframe > 2) { gotoAndPlay (100); }
Symbol 293 MovieClip Frame 93
stop();
Symbol 293 MovieClip Frame 130
stop();
Symbol 300 MovieClip Frame 1
stop();
Symbol 300 MovieClip Frame 2
play(); if (_root.dropship._currentframe == 46) { gotoAndPlay (47); } if (_root.dropship._currentframe == 41) { gotoAndPlay (42); } if (_root.dropship._currentframe == 36) { gotoAndPlay (35); } if (_root.dropship._currentframe == 31) { gotoAndPlay (32); } if (_root.dropship._currentframe == 26) { gotoAndPlay (27); } if (_root.dropship._currentframe == 21) { gotoAndPlay (22); } if (_root.dropship._currentframe == 16) { gotoAndPlay (17); } if (_root.dropship._currentframe == 6) { gotoAndPlay (7); } if (_root.dropship._currentframe == 11) { gotoAndPlay (12); } play();
Symbol 300 MovieClip Frame 6
stop();
Symbol 300 MovieClip Frame 11
stop();
Symbol 300 MovieClip Frame 16
stop();
Symbol 300 MovieClip Frame 21
stop();
Symbol 300 MovieClip Frame 26
stop();
Symbol 300 MovieClip Frame 31
stop();
Symbol 300 MovieClip Frame 36
stop();
Symbol 300 MovieClip Frame 41
stop();
Symbol 300 MovieClip Frame 46
play();
Symbol 300 MovieClip Frame 59
stop();
Instance of Symbol 304 MovieClip "enemylaser" in Symbol 306 MovieClip Frame 62
/* no clip actions */
Symbol 342 MovieClip Frame 1
stop();
Symbol 342 MovieClip Frame 2
if (_root.powerup._currentframe > 2) { gotoAndPlay (56); } if (_root.spaceship._currentframe > 2) { gotoAndPlay (25); }
Symbol 342 MovieClip Frame 14
stop();
Symbol 342 MovieClip Frame 48
stop();
Symbol 342 MovieClip Frame 54
Symbol 342 MovieClip Frame 56
if (_root.spaceship._currentframe > 2) { gotoAndPlay (74); }
Symbol 342 MovieClip Frame 73
stop();
Symbol 342 MovieClip Frame 113
stop();
Symbol 370 MovieClip Frame 1
stop();
Symbol 370 MovieClip Frame 2
if (_root.powerup._currentframe > 2) { gotoAndPlay (65); } if (_root.spaceship._currentframe > 2) { gotoAndPlay (30); }
Symbol 370 MovieClip Frame 22
stop();
Symbol 370 MovieClip Frame 57
stop();
Symbol 370 MovieClip Frame 65
if (_root.spaceship._currentframe > 2) { gotoAndPlay (110); }
Symbol 370 MovieClip Frame 103
stop();
Symbol 370 MovieClip Frame 152
stop();
Symbol 397 MovieClip Frame 1
stop();
Symbol 397 MovieClip Frame 2
if (_root.powerup._currentframe > 2) { gotoAndPlay (80); } if (_root.spaceship._currentframe > 2) { gotoAndPlay (25); }
Symbol 397 MovieClip Frame 21
stop();
Symbol 397 MovieClip Frame 77
stop();
Symbol 397 MovieClip Frame 80
if (_root.spaceship._currentframe > 2) { gotoAndPlay (122); }
Symbol 397 MovieClip Frame 116
stop();
Symbol 397 MovieClip Frame 156
stop();
Symbol 416 MovieClip Frame 1
stop();
Symbol 416 MovieClip Frame 128
stop();
Symbol 418 MovieClip Frame 21
stop();
Symbol 419 MovieClip Frame 78
stop();
Symbol 422 MovieClip Frame 24
stop();
Symbol 428 MovieClip Frame 1
stop();
Symbol 428 MovieClip Frame 26
stop();
Symbol 428 MovieClip Frame 86
stop();
Symbol 430 MovieClip Frame 25
stop(); _root.bglevel1.gotoAndStop();
Symbol 434 Button
on (release) { gotoAndPlay (1796); _root.bglevel1.gotoAndPlay(1); }
Symbol 437 MovieClip Frame 30
stop();
Symbol 445 MovieClip Frame 2204
_root.gotoAndPlay("cred2"); _root.gotoAndStop("bglevel2");
Symbol 447 MovieClip Frame 1
stop();
Symbol 447 MovieClip Frame 18
stop();
Symbol 447 MovieClip Frame 50
gotoAndStop (1);
Symbol 447 MovieClip Frame 110
stop();
Symbol 447 MovieClip Frame 111
nextFrame(); play();
Symbol 447 MovieClip Frame 177
stop();
Symbol 447 MovieClip Frame 178
nextFrame(); play();
Symbol 447 MovieClip Frame 291
_root.bglevel2.gotoAndStop(1); _root.gotoAndStop("gameOver2"); gotoAndStop (1);
Symbol 451 MovieClip Frame 1
if (_root.powerup._currentframe > 2) { gotoAndPlay (5); } if (_root.powerup._currentframe > 2) { if (_root.spaceship._currentframe > 2) { gotoAndPlay (7); } } if (_root.spaceship._currentframe > 2) { gotoAndStop (3); }
Symbol 451 MovieClip Frame 2
stop();
Symbol 451 MovieClip Frame 3
if (_root.spaceship._currentframe < 2) { gotoAndStop (1); }
Symbol 451 MovieClip Frame 4
stop();
Symbol 451 MovieClip Frame 5
if (_root.spaceship._currentframe > 2) { gotoAndStop (7); }
Symbol 451 MovieClip Frame 6
stop();
Symbol 451 MovieClip Frame 7
if (_root.powerup._currentframe > 2) { if (_root.spaceship._currentframe < 2) { gotoAndStop (5); } }
Symbol 451 MovieClip Frame 8
stop();
Symbol 458 MovieClip Frame 1
stop();
Symbol 458 MovieClip Frame 2
if (_root.powerup._currentframe > 2) { gotoAndPlay (80); } if (_root.spaceship._currentframe > 2) { gotoAndPlay (45); }
Symbol 458 MovieClip Frame 40
stop();
Symbol 458 MovieClip Frame 74
stop();
Symbol 458 MovieClip Frame 80
if (_root.spaceship._currentframe > 2) { gotoAndPlay (125); }
Symbol 458 MovieClip Frame 118
stop();
Symbol 458 MovieClip Frame 156
stop();
Symbol 460 MovieClip Frame 105
stop();
Symbol 466 MovieClip Frame 318
stop();
Symbol 467 Button
on (release) { gotoAndPlay (2120); _root.bglevel2.gotoAndPlay(1); }

Library Items

Symbol 1 GraphicUsed by:2
Symbol 2 MovieClip [frb_hitArea]Uses:1
Symbol 3 FontUsed by:4
Symbol 4 EditableTextUses:3Used by:5
Symbol 5 MovieClip [FLabelSymbol]Uses:4
Symbol 6 GraphicUsed by:7
Symbol 7 MovieClipUses:6Used by:14
Symbol 8 GraphicUsed by:9
Symbol 9 MovieClipUses:8Used by:14
Symbol 10 GraphicUsed by:11
Symbol 11 MovieClipUses:10Used by:14
Symbol 12 GraphicUsed by:13
Symbol 13 MovieClipUses:12Used by:14
Symbol 14 MovieClipUses:7 9 11 13Used by:29
Symbol 15 GraphicUsed by:16
Symbol 16 MovieClipUses:15Used by:17
Symbol 17 MovieClipUses:16Used by:29
Symbol 18 GraphicUsed by:19 21
Symbol 19 MovieClipUses:18Used by:20
Symbol 20 MovieClipUses:19Used by:29
Symbol 21 MovieClipUses:18Used by:22
Symbol 22 MovieClipUses:21Used by:29
Symbol 23 GraphicUsed by:24
Symbol 24 MovieClipUses:23Used by:25
Symbol 25 MovieClipUses:24Used by:29
Symbol 26 GraphicUsed by:27
Symbol 27 MovieClipUses:26Used by:28
Symbol 28 MovieClipUses:27Used by:29
Symbol 29 MovieClip [frb_states]Uses:14 17 20 22 25 28
Symbol 30 MovieClip [FUIComponentSymbol]
Symbol 31 GraphicUsed by:32 60 76 78 79 80 83 85 100 170 437  Timeline
Symbol 32 MovieClipUses:31Used by:34
Symbol 33 GraphicUsed by:34
Symbol 34 MovieClip [FBoundingBoxSymbol]Uses:32 33Used by:37
Symbol 35 GraphicUsed by:36
Symbol 36 MovieClipUses:35Used by:37
Symbol 37 MovieClip [FRadioButtonSymbol]Uses:34 36
Symbol 38 BitmapUsed by:39
Symbol 39 GraphicUses:38Used by:Timeline
Symbol 40 FontUsed by:41 84 86 87 88 89 90 91 92 93 143 144 166 169
Symbol 41 TextUses:40Used by:Timeline
Symbol 42 FontUsed by:43
Symbol 43 TextUses:42Used 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:Timeline
Symbol 50 FontUsed by:51 74 75
Symbol 51 EditableTextUses:50Used by:Timeline
Symbol 52 FontUsed by:53 54
Symbol 53 EditableTextUses:52Used by:Timeline
Symbol 54 TextUses:52Used by:Timeline
Symbol 55 BitmapUsed by:56
Symbol 56 GraphicUses:55Used by:Timeline
Symbol 57 BitmapUsed by:58
Symbol 58 GraphicUses:57Used by:Timeline
Symbol 59 MovieClipUses:SS2Used by:Timeline
Symbol 60 ButtonUses:31Used by:Timeline
Symbol 61 GraphicUsed by:Timeline
Symbol 62 FontUsed by:63 70 71 426 429 461 468
Symbol 63 TextUses:62Used by:Timeline
Symbol 64 GraphicUsed by:Timeline
Symbol 65 GraphicUsed by:Timeline
Symbol 66 GraphicUsed by:Timeline
Symbol 67 GraphicUsed by:Timeline
Symbol 68 BitmapUsed by:69
Symbol 69 GraphicUses:68Used by:Timeline
Symbol 70 TextUses:62Used by:Timeline
Symbol 71 TextUses:62Used by:Timeline
Symbol 72 GraphicUsed by:Timeline
Symbol 73 FontUsed by:74 75
Symbol 74 TextUses:50 73Used by:Timeline
Symbol 75 TextUses:50 73Used by:Timeline
Symbol 76 MovieClipUses:31Used by:78 79 80 83
Symbol 77 SoundUsed by:78 79 80 83
Symbol 78 ButtonUses:31 76 77Used by:Timeline
Symbol 79 ButtonUses:31 76 77Used by:Timeline
Symbol 80 ButtonUses:31 76 77Used by:Timeline
Symbol 81 FontUsed by:82 94 96 97 98 438 439
Symbol 82 TextUses:81Used by:Timeline
Symbol 83 ButtonUses:31 76 77Used by:Timeline
Symbol 84 TextUses:40Used by:Timeline
Symbol 85 ButtonUses:31Used by:Timeline
Symbol 86 TextUses:40Used by:Timeline
Symbol 87 TextUses:40Used by:Timeline
Symbol 88 TextUses:40Used by:Timeline
Symbol 89 TextUses:40Used by:Timeline
Symbol 90 TextUses:40Used by:Timeline
Symbol 91 TextUses:40Used by:Timeline
Symbol 92 TextUses:40Used by:Timeline
Symbol 93 TextUses:40Used by:Timeline
Symbol 94 TextUses:81Used by:Timeline
Symbol 95 GraphicUsed by:Timeline
Symbol 96 TextUses:81Used by:Timeline
Symbol 97 TextUses:81Used by:Timeline
Symbol 98 TextUses:81Used by:99
Symbol 99 MovieClipUses:98Used by:Timeline
Symbol 100 ButtonUses:31Used by:Timeline
Symbol 101 GraphicUsed by:102
Symbol 102 MovieClipUses:101Used by:103
Symbol 103 MovieClipUses:102Used by:Timeline
Symbol 104 BitmapUsed by:105
Symbol 105 GraphicUses:104Used by:170
Symbol 106 BitmapUsed by:107 121
Symbol 107 GraphicUses:106Used by:170 419
Symbol 108 BitmapUsed by:109
Symbol 109 GraphicUses:108Used by:170
Symbol 110 BitmapUsed by:111 122 123 378
Symbol 111 GraphicUses:110Used by:170
Symbol 112 BitmapUsed by:113 314
Symbol 113 GraphicUses:112Used by:155 170 258 293 342 370 397 447 458
Symbol 114 BitmapUsed by:115
Symbol 115 GraphicUses:114Used by:170 293 342 370 397 458
Symbol 116 BitmapUsed by:117 454
Symbol 117 GraphicUses:116Used by:154 170 258 293 342 370 397 447 458
Symbol 118 BitmapUsed by:119
Symbol 119 GraphicUses:118Used by:120 342
Symbol 120 MovieClipUses:119Used by:155 170 258 293 342 370 397 447 458
Symbol 121 GraphicUses:106Used by:170
Symbol 122 GraphicUses:110Used by:170
Symbol 123 GraphicUses:110Used by:170 397
Symbol 124 GraphicUsed by:137 460
Symbol 125 BitmapUsed by:126 136
Symbol 126 GraphicUses:125Used by:137
Symbol 127 GraphicUsed by:137
Symbol 128 GraphicUsed by:137
Symbol 129 GraphicUsed by:137
Symbol 130 GraphicUsed by:137
Symbol 131 GraphicUsed by:137
Symbol 132 GraphicUsed by:137
Symbol 133 GraphicUsed by:137
Symbol 134 GraphicUsed by:137
Symbol 135 GraphicUsed by:137
Symbol 136 GraphicUses:125Used by:137
Symbol 137 MovieClipUses:124 126 127 128 129 130 131 132 133 134 135 136Used by:170
Symbol 138 GraphicUsed by:170
Symbol 139 GraphicUsed by:170
Symbol 140 GraphicUsed by:170
Symbol 141 GraphicUsed by:170 258 293 342 370 397 447 458
Symbol 142 GraphicUsed by:170
Symbol 143 TextUses:40Used by:170
Symbol 144 TextUses:40Used by:170
Symbol 145 GraphicUsed by:170
Symbol 146 GraphicUsed by:170
Symbol 147 GraphicUsed by:170
Symbol 148 GraphicUsed by:170
Symbol 149 GraphicUsed by:170
Symbol 150 GraphicUsed by:170
Symbol 151 GraphicUsed by:155 170 342 370 458
Symbol 152 BitmapUsed by:153
Symbol 153 GraphicUses:152Used by:155 293 342 397 458
Symbol 154 MovieClipUses:117Used by:155 258 342 447
Symbol 155 MovieClipUses:113 151 120 153 154Used by:170  Timeline
Symbol 156 GraphicUsed by:170
Symbol 157 GraphicUsed by:170
Symbol 158 GraphicUsed by:170
Symbol 159 BitmapUsed by:160 421 459
Symbol 160 GraphicUses:159Used by:170
Symbol 161 GraphicUsed by:170
Symbol 162 BitmapUsed by:163
Symbol 163 GraphicUses:162Used by:170 342 399 458
Symbol 164 GraphicUsed by:170
Symbol 165 GraphicUsed by:170
Symbol 166 TextUses:40Used by:170
Symbol 167 GraphicUsed by:170
Symbol 168 GraphicUsed by:170
Symbol 169 TextUses:40Used by:170
Symbol 170 MovieClipUses:105 107 109 111 113 115 117 120 121 122 123 137 31 138 139 140 141 142 143 144 145 146 147 148 149 150 155 156 157 158 160 161 163 164 151 165 166 167 168 169 SS3Used by:Timeline
Symbol 171 GraphicUsed by:173
Symbol 172 GraphicUsed by:173
Symbol 173 MovieClipUses:171 172Used by:258 447
Symbol 174 BitmapUsed by:175
Symbol 175 GraphicUses:174Used by:258 447
Symbol 176 BitmapUsed by:177
Symbol 177 GraphicUses:176Used by:223 258 447
Symbol 178 BitmapUsed by:179
Symbol 179 GraphicUses:178Used by:180
Symbol 180 MovieClipUses:179Used by:253 258 447
Symbol 181 GraphicUsed by:182
Symbol 182 MovieClipUses:181Used by:258 447
Symbol 183 SoundUsed by:258 447
Symbol 184 SoundUsed by:258 447
Symbol 185 SoundUsed by:258 447
Symbol 186 SoundUsed by:258 447
Symbol 187 GraphicUsed by:204
Symbol 188 GraphicUsed by:204
Symbol 189 GraphicUsed by:204
Symbol 190 GraphicUsed by:204
Symbol 191 GraphicUsed by:204
Symbol 192 GraphicUsed by:204
Symbol 193 GraphicUsed by:204
Symbol 194 GraphicUsed by:204
Symbol 195 GraphicUsed by:204
Symbol 196 GraphicUsed by:204
Symbol 197 GraphicUsed by:204
Symbol 198 GraphicUsed by:204
Symbol 199 GraphicUsed by:204
Symbol 200 GraphicUsed by:204
Symbol 201 GraphicUsed by:204
Symbol 202 GraphicUsed by:204
Symbol 203 GraphicUsed by:204
Symbol 204 MovieClipUses:187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203Used by:258 447
Symbol 205 BitmapUsed by:206
Symbol 206 GraphicUses:205Used by:258 293 370 444 447 458
Symbol 207 SoundUsed by:258 293 342 370 447 458
Symbol 208 SoundUsed by:258 342 447
Symbol 209 BitmapUsed by:210
Symbol 210 GraphicUses:209Used by:211
Symbol 211 MovieClipUses:210Used by:258 447
Symbol 212 GraphicUsed by:258 447
Symbol 213 GraphicUsed by:258 447
Symbol 214 GraphicUsed by:258 447
Symbol 215 GraphicUsed by:258 447
Symbol 216 GraphicUsed by:258 447
Symbol 217 GraphicUsed by:258 447
Symbol 218 GraphicUsed by:258
Symbol 219 GraphicUsed by:258 447
Symbol 220 GraphicUsed by:258 447
Symbol 221 GraphicUsed by:258 447
Symbol 222 GraphicUsed by:258 447
Symbol 223 MovieClipUses:177Used by:258 447
Symbol 224 GraphicUsed by:244
Symbol 225 GraphicUsed by:244
Symbol 226 GraphicUsed by:244
Symbol 227 GraphicUsed by:244
Symbol 228 GraphicUsed by:244
Symbol 229 GraphicUsed by:244 252
Symbol 230 GraphicUsed by:244 252
Symbol 231 GraphicUsed by:244 252
Symbol 232 GraphicUsed by:244 252
Symbol 233 GraphicUsed by:244 252
Symbol 234 GraphicUsed by:244 252
Symbol 235 GraphicUsed by:244 247 252
Symbol 236 GraphicUsed by:244 247 252
Symbol 237 GraphicUsed by:244
Symbol 238 GraphicUsed by:244
Symbol 239 GraphicUsed by:244 247 252
Symbol 240 GraphicUsed by:244 247 252
Symbol 241 GraphicUsed by:244 247 252
Symbol 242 GraphicUsed by:244 247 252
Symbol 243 GraphicUsed by:244
Symbol 244 MovieClipUses:224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243Used by:258 447
Symbol 245 GraphicUsed by:247
Symbol 246 GraphicUsed by:247
Symbol 247 MovieClipUses:235 236 245 246 239 240 241 242Used by:258 447
Symbol 248 GraphicUsed by:258 447
Symbol 249 GraphicUsed by:258 447
Symbol 250 GraphicUsed by:252
Symbol 251 GraphicUsed by:252
Symbol 252 MovieClipUses:229 230 231 232 233 234 235 236 250 251 239 240 241 242Used by:258 447
Symbol 253 MovieClipUses:180Used by:258 447
Symbol 254 MovieClipUses:SS4Used by:258 447
Symbol 255 SoundUsed by:258 293 370 447
Symbol 256 BitmapUsed by:257
Symbol 257 GraphicUses:256Used by:258 293 370 447
Symbol 258 MovieClipUses:173 175 177 180 182 183 184 117 185 154 186 204 206 207 208 211 212 213 214 215 216 217 218 219 220 221 222 223 244 247 248 249 252 253 254 141 255 113 120 257 SS5Used by:Timeline
Symbol 259 GraphicUsed by:266 451
Symbol 260 SoundUsed by:266 451
Symbol 261 GraphicUsed by:266
Symbol 262 SoundUsed by:266 451
Symbol 263 GraphicUsed by:266
Symbol 264 SoundUsed by:266 451
Symbol 265 GraphicUsed by:266
Symbol 266 MovieClipUses:259 260 261 262 263 264 265Used by:Timeline
Symbol 267 BitmapUsed by:268
Symbol 268 GraphicUses:267Used by:293 370 458
Symbol 269 BitmapUsed by:270
Symbol 270 GraphicUses:269Used by:293
Symbol 271 GraphicUsed by:276
Symbol 272 GraphicUsed by:276
Symbol 273 GraphicUsed by:276
Symbol 274 GraphicUsed by:276
Symbol 275 GraphicUsed by:276
Symbol 276 MovieClipUses:271 272 273 274 275Used by:293
Symbol 277 GraphicUsed by:293
Symbol 278 GraphicUsed by:293
Symbol 279 GraphicUsed by:293
Symbol 280 GraphicUsed by:293
Symbol 281 GraphicUsed by:293
Symbol 282 BitmapUsed by:283
Symbol 283 GraphicUses:282Used by:293 370 458
Symbol 284 SoundUsed by:293 342 397 458
Symbol 285 SoundUsed by:293 370 458
Symbol 286 BitmapUsed by:287
Symbol 287 GraphicUses:286Used by:293 397
Symbol 288 GraphicUsed by:293
Symbol 289 GraphicUsed by:293
Symbol 290 BitmapUsed by:291 386
Symbol 291 GraphicUses:290Used by:293 397
Symbol 292 GraphicUsed by:293
Symbol 293 MovieClipUses:268 270 276 257 277 278 279 280 281 283 141 284 206 285 287 288 207 289 291 292 115 117 120 255 113 153Used by:Timeline
Symbol 294 BitmapUsed by:295
Symbol 295 GraphicUses:294Used by:300
Symbol 296 BitmapUsed by:297
Symbol 297 GraphicUses:296Used by:298
Symbol 298 MovieClipUses:297Used by:300
Symbol 299 SoundUsed by:300
Symbol 300 MovieClipUses:295 298 299Used by:Timeline
Symbol 301 BitmapUsed by:302 374
Symbol 302 GraphicUses:301Used by:342
Symbol 303 GraphicUsed by:304
Symbol 304 MovieClipUses:303Used by:306  Timeline
Symbol 305 GraphicUsed by:306
Symbol 306 MovieClipUses:304 305Used by:342
Symbol 307 BitmapUsed by:308 338 339
Symbol 308 GraphicUses:307Used by:309 342
Symbol 309 MovieClipUses:308Used by:342
Symbol 310 GraphicUsed by:342
Symbol 311 GraphicUsed by:342
Symbol 312 GraphicUsed by:342
Symbol 313 GraphicUsed by:342
Symbol 314 GraphicUses:112Used by:342
Symbol 315 GraphicUsed by:342
Symbol 316 GraphicUsed by:342
Symbol 317 GraphicUsed by:342
Symbol 318 GraphicUsed by:342
Symbol 319 BitmapUsed by:320 321 322 390 391
Symbol 320 GraphicUses:319Used by:342 397
Symbol 321 GraphicUses:319Used by:342
Symbol 322 GraphicUses:319Used by:342
Symbol 323 GraphicUsed by:342
Symbol 324 GraphicUsed by:342
Symbol 325 GraphicUsed by:342
Symbol 326 GraphicUsed by:342
Symbol 327 GraphicUsed by:342
Symbol 328 GraphicUsed by:342
Symbol 329 GraphicUsed by:342
Symbol 330 GraphicUsed by:342
Symbol 331 GraphicUsed by:342
Symbol 332 GraphicUsed by:342
Symbol 333 GraphicUsed by:342
Symbol 334 GraphicUsed by:342
Symbol 335 GraphicUsed by:342
Symbol 336 GraphicUsed by:342
Symbol 337 GraphicUsed by:342
Symbol 338 GraphicUses:307Used by:342
Symbol 339 GraphicUses:307Used by:342
Symbol 340 GraphicUsed by:342
Symbol 341 GraphicUsed by:342
Symbol 342 MovieClipUses:302 306 309 308 113 117 115 310 311 153 312 119 313 314 151 284 315 316 317 318 141 320 321 207 322 154 120 323 208 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 163Used by:Timeline
Symbol 343 BitmapUsed by:344 365 366
Symbol 344 GraphicUses:343Used by:370
Symbol 345 GraphicUsed by:370
Symbol 346 GraphicUsed by:370
Symbol 347 GraphicUsed by:370
Symbol 348 SoundUsed by:370 397
Symbol 349 BitmapUsed by:350
Symbol 350 GraphicUses:349Used by:370
Symbol 351 GraphicUsed by:370
Symbol 352 GraphicUsed by:370
Symbol 353 GraphicUsed by:370
Symbol 354 GraphicUsed by:370
Symbol 355 GraphicUsed by:370
Symbol 356 BitmapUsed by:357
Symbol 357 GraphicUses:356Used by:370
Symbol 358 GraphicUsed by:370
Symbol 359 GraphicUsed by:370
Symbol 360 GraphicUsed by:370
Symbol 361 GraphicUsed by:370
Symbol 362 GraphicUsed by:370
Symbol 363 GraphicUsed by:370
Symbol 364 GraphicUsed by:370
Symbol 365 GraphicUses:343Used by:370
Symbol 366 GraphicUses:343Used by:370
Symbol 367 GraphicUsed by:370
Symbol 368 GraphicUsed by:370
Symbol 369 GraphicUsed by:370
Symbol 370 MovieClipUses:268 344 257 345 346 347 348 350 351 352 117 113 353 141 120 354 355 255 115 357 358 359 360 361 362 285 363 364 283 151 207 365 366 206 367 368 369Used by:Timeline
Symbol 371 GraphicUsed by:373
Symbol 372 GraphicUsed by:373
Symbol 373 MovieClipUses:371 372Used by:397
Symbol 374 GraphicUses:301Used by:397
Symbol 375 BitmapUsed by:376 393 394 395
Symbol 376 GraphicUses:375Used by:397
Symbol 377 GraphicUsed by:397
Symbol 378 GraphicUses:110Used by:397
Symbol 379 GraphicUsed by:397
Symbol 380 GraphicUsed by:397
Symbol 381 GraphicUsed by:397
Symbol 382 GraphicUsed by:397
Symbol 383 GraphicUsed by:397
Symbol 384 GraphicUsed by:397
Symbol 385 GraphicUsed by:397
Symbol 386 GraphicUses:290Used by:397
Symbol 387 BitmapUsed by:389
Symbol 388 BitmapUsed by:389
Symbol 389 GraphicUses:387 388Used by:397
Symbol 390 GraphicUses:319Used by:397
Symbol 391 GraphicUses:319Used by:397
Symbol 392 GraphicUsed by:397
Symbol 393 GraphicUses:375Used by:397
Symbol 394 GraphicUses:375Used by:397
Symbol 395 GraphicUses:375Used by:397
Symbol 396 SoundUsed by:397
Symbol 397 MovieClipUses:373 374 376 115 113 377 348 378 117 379 153 380 120 381 382 383 384 385 141 291 386 287 284 389 320 390 391 123 392 393 394 395 396Used by:Timeline
Symbol 398 GraphicUsed by:399
Symbol 399 MovieClipUses:398 163Used by:Timeline
Symbol 400 GraphicUsed by:416
Symbol 401 FontUsed by:402 405 406
Symbol 402 TextUses:401Used by:416
Symbol 403 GraphicUsed by:404 416
Symbol 404 MovieClipUses:403Used by:416
Symbol 405 TextUses:401Used by:407
Symbol 406 TextUses:401Used by:407
Symbol 407 MovieClipUses:405 406Used by:416
Symbol 408 SoundUsed by:416
Symbol 409 FontUsed by:410
Symbol 410 TextUses:409Used by:416
Symbol 411 GraphicUsed by:416
Symbol 412 GraphicUsed by:416
Symbol 413 GraphicUsed by:416
Symbol 414 GraphicUsed by:416
Symbol 415 GraphicUsed by:416
Symbol 416 MovieClipUses:400 402 404 407 408 403 410 411 412 413 414 415Used by:Timeline
Symbol 417 GraphicUsed by:418 430
Symbol 418 MovieClipUses:417Used by:Timeline
Symbol 419 MovieClipUses:107 SS6Used by:Timeline
Symbol 420 GraphicUsed by:Timeline
Symbol 421 GraphicUses:159Used by:422 428
Symbol 422 MovieClipUses:421Used by:428
Symbol 423 GraphicUsed by:428
Symbol 424 GraphicUsed by:428
Symbol 425 GraphicUsed by:427
Symbol 426 TextUses:62Used by:427
Symbol 427 MovieClipUses:425 426Used by:428
Symbol 428 MovieClipUses:421 422 423 424 427 SS7Used by:Timeline
Symbol 429 EditableTextUses:62Used by:Timeline
Symbol 430 MovieClipUses:417Used by:Timeline
Symbol 431 GraphicUsed by:434 467  Timeline
Symbol 432 FontUsed by:433
Symbol 433 TextUses:432Used by:Timeline
Symbol 434 ButtonUses:431Used by:Timeline
Symbol 435 BitmapUsed by:436
Symbol 436 GraphicUses:435Used by:437
Symbol 437 MovieClipUses:436 31Used by:Timeline
Symbol 438 TextUses:81Used by:Timeline
Symbol 439 TextUses:81Used by:Timeline
Symbol 440 BitmapUsed by:441
Symbol 441 GraphicUses:440Used by:445
Symbol 442 BitmapUsed by:443
Symbol 443 GraphicUses:442Used by:444
Symbol 444 MovieClipUses:443 206Used by:445
Symbol 445 MovieClipUses:441 444 SS8Used by:Timeline
Symbol 446 GraphicUsed by:447
Symbol 447 MovieClipUses:173 175 177 180 182 183 184 117 185 154 186 204 206 207 208 211 212 213 214 215 216 217 446 219 220 221 222 223 244 247 248 249 252 253 254 141 255 113 120 257 SS9Used by:Timeline
Symbol 448 GraphicUsed by:451
Symbol 449 GraphicUsed by:451
Symbol 450 GraphicUsed by:451
Symbol 451 MovieClipUses:259 260 448 262 449 264 450Used by:Timeline
Symbol 452 BitmapUsed by:453 455 456
Symbol 453 GraphicUses:452Used by:458
Symbol 454 GraphicUses:116Used by:458
Symbol 455 GraphicUses:452Used by:458
Symbol 456 GraphicUses:452Used by:458
Symbol 457 GraphicUsed by:458
Symbol 458 MovieClipUses:268 453 117 113 115 285 120 284 153 151 163 283 206 141 454 207 455 456 457Used by:Timeline
Symbol 459 GraphicUses:159Used by:460
Symbol 460 MovieClipUses:124 459 SS10Used by:Timeline
Symbol 461 EditableTextUses:62Used by:Timeline
Symbol 462 BitmapUsed by:463
Symbol 463 GraphicUses:462Used by:466
Symbol 464 BitmapUsed by:465
Symbol 465 GraphicUses:464Used by:466
Symbol 466 MovieClipUses:463 465Used by:Timeline
Symbol 467 ButtonUses:431Used by:Timeline
Symbol 468 TextUses:62Used by:Timeline
Streaming Sound 1Used by:Timeline
Streaming Sound 2Used by:Symbol 59 MovieClip
Streaming Sound 3Used by:Symbol 170 MovieClip
Streaming Sound 4Used by:Symbol 254 MovieClip
Streaming Sound 5Used by:Symbol 258 MovieClip
Streaming Sound 6Used by:Symbol 419 MovieClip
Streaming Sound 7Used by:Symbol 428 MovieClip
Streaming Sound 8Used by:Symbol 445 MovieClip
Streaming Sound 9Used by:Symbol 447 MovieClip
Streaming Sound 10Used by:Symbol 460 MovieClip

Instance Names

"LoadBarFill"Frame 1Symbol 48 MovieClip
"mainStars"Frame 1796Symbol 103 MovieClip
"bglevel1"Frame 1796Symbol 170 MovieClip
"spaceship"Frame 1796Symbol 258 MovieClip
"laser"Frame 1796Symbol 266 MovieClip
"enemy1"Frame 1796Symbol 293 MovieClip
"dropship2"Frame 1796Symbol 300 MovieClip
"enemy6"Frame 1796Symbol 293 MovieClip
"enemy5"Frame 1796Symbol 342 MovieClip
"enemy4"Frame 1796Symbol 342 MovieClip
"enemy3"Frame 1796Symbol 370 MovieClip
"enemy2"Frame 1796Symbol 397 MovieClip
"enemylaser"Frame 1796Symbol 304 MovieClip
"powerup"Frame 1796Symbol 416 MovieClip
"health"Frame 1796Symbol 428 MovieClip
"mainStars"Frame 2120Symbol 103 MovieClip
"bglevel2"Frame 2120Symbol 445 MovieClip
"spaceship"Frame 2120Symbol 447 MovieClip
"laser"Frame 2120Symbol 451 MovieClip
"enemy4"Frame 2120Symbol 397 MovieClip
"enemy5"Frame 2120Symbol 458 MovieClip
"enemy1"Frame 2120Symbol 293 MovieClip
"enemy3"Frame 2120Symbol 342 MovieClip
"enemy7"Frame 2120Symbol 458 MovieClip
"enemy2"Frame 2120Symbol 293 MovieClip
"powerup"Frame 2120Symbol 416 MovieClip
"health"Frame 2120Symbol 428 MovieClip
"labelField"Symbol 5 MovieClip [FLabelSymbol] Frame 1Symbol 4 EditableText
"darkshadow_mc"Symbol 14 MovieClip Frame 1Symbol 7 MovieClip
"shadow_mc"Symbol 14 MovieClip Frame 1Symbol 9 MovieClip
"highlight_mc"Symbol 14 MovieClip Frame 1Symbol 11 MovieClip
"highlight3D_mc"Symbol 14 MovieClip Frame 1Symbol 13 MovieClip
"background_mc"Symbol 17 MovieClip Frame 1Symbol 16 MovieClip
"background_mc"Symbol 20 MovieClip Frame 1Symbol 19 MovieClip
"background_mc"Symbol 22 MovieClip Frame 1Symbol 21 MovieClip
"disabled_mc"Symbol 25 MovieClip Frame 1Symbol 24 MovieClip
"dot_mc"Symbol 28 MovieClip Frame 1Symbol 27 MovieClip
"frb_frame_mc"Symbol 29 MovieClip [frb_states] Frame 1Symbol 14 MovieClip
"boundingBox"Symbol 34 MovieClip [FBoundingBoxSymbol] Frame 1Symbol 32 MovieClip
"boundingBox2"Symbol 34 MovieClip [FBoundingBoxSymbol] Frame 2Symbol 32 MovieClip
"boundingBox_mc"Symbol 37 MovieClip [FRadioButtonSymbol] Frame 1Symbol 34 MovieClip [FBoundingBoxSymbol]
"deadPreview"Symbol 37 MovieClip [FRadioButtonSymbol] Frame 1Symbol 36 MovieClip
"stars"Symbol 103 MovieClip Frame 1Symbol 102 MovieClip
"enemylaser"Symbol 306 MovieClip Frame 62Symbol 304 MovieClip
"powerup"Symbol 416 MovieClip Frame 1Symbol 404 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 2 as "frb_hitArea"
ExportAssets (56)Timeline Frame 1Symbol 5 as "FLabelSymbol"
ExportAssets (56)Timeline Frame 1Symbol 29 as "frb_states"
ExportAssets (56)Timeline Frame 1Symbol 30 as "FUIComponentSymbol"
ExportAssets (56)Timeline Frame 1Symbol 34 as "FBoundingBoxSymbol"
ExportAssets (56)Timeline Frame 1Symbol 37 as "FRadioButtonSymbol"
EnableDebugger2 (64)Timeline Frame 131 bytes "..$1$UX$lBDHLXw2EAEyx8fOgNL9f1."
DebugMX1 (63)Timeline Frame 1

Labels

"Button"Frame 4
"play_game"Frame 84
"gameOver"Frame 1800
"cont"Frame 1801
"cred"Frame 1801
"gameOver2"Frame 2124
"cont2"Frame 2125
"cred2"Frame 2125
"Symbol_32"Symbol 5 MovieClip [FLabelSymbol] Frame 1
"Symbol_22"Symbol 7 MovieClip Frame 1
"Symbol_23"Symbol 9 MovieClip Frame 1
"unselectedEnabled"Symbol 29 MovieClip [frb_states] Frame 1
"press"Symbol 29 MovieClip [frb_states] Frame 2
"unselectedDisabled"Symbol 29 MovieClip [frb_states] Frame 3
"selectedDisabled"Symbol 29 MovieClip [frb_states] Frame 4
"selectedEnabled"Symbol 29 MovieClip [frb_states] Frame 5
"Symbol_36"Symbol 30 MovieClip [FUIComponentSymbol] Frame 1
"enabled"Symbol 34 MovieClip [FBoundingBoxSymbol] Frame 1
"disabled"Symbol 34 MovieClip [FBoundingBoxSymbol] Frame 2

Dynamic Text Variables

loadPercentSymbol 51 EditableText""
loadBytesSymbol 53 EditableText""
scoreSymbol 429 EditableText""
scoreSymbol 461 EditableText""




http://swfchan.com/13/62611/info.shtml
Created: 14/4 -2019 04:46:10 Last modified: 14/4 -2019 04:46:10 Server time: 15/05 -2024 03:45:24