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

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

Earth-Defender.swf

This is the info page for
Flash #73315

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


Text
4000/4000

in a fight against mars

you are in control of a turret

fighting off the spaceships

in the starting phase of the battle

you are in charge of destroying their crafts

endurance mode

enemy's left:

lives left:

enemy's left:

lives left:

you protected the
world from the evil
alien invaders.
congratulations

thanks to you the
world has been
destroyed. you failed
in your mission to
protect it

enemy's
killed:

you finished up with a score of:   

ActionScript [AS1/AS2]

Frame 2
gotoAndPlay (1);
Frame 484
Mouse.show(); stop(); bgSound1 = new Sound(this); bgSound1.attachSound("song1"); bgSound2 = new Sound(this); bgSound2.attachSound("song2"); bgSound3 = new Sound(this); bgSound3.attachSound("song3"); bgSound4 = new Sound(this); bgSound4.attachSound("song4"); function itemHandler1(obj, item) { _root._quality = "high"; } function itemHandler2(obj, item) { _root._quality = "medium"; } function itemHandler3(obj, item) { _root._quality = "low"; } function itemHandler4(obj, item) { stopAllSounds(); _root.music.attachSound("sound2"); bgSound2.start(0, 99); } function itemHandler5(obj, item) { stopAllSounds(); _root.music.attachSound("sound1"); bgSound1.start(0, 99); } function itemHandler6(obj, item) { stopAllSounds(); _root.music.attachSound("sound3"); _root.bgSound3.start(0, 99); } function itemHandler7(obj, item) { stopAllSounds(); } var myMenu = new ContextMenu(); myMenu.hideBuiltInItems(); item1 = new ContextMenuItem("High Quality", itemHandler1); myMenu.customItems.push(item1); item2 = new ContextMenuItem("Medium Quality", itemHandler2); myMenu.customItems.push(item2); item3 = new ContextMenuItem("Low Quality", itemHandler3); myMenu.customItems.push(item3); item4 = new ContextMenuItem("Background music 1", itemHandler4, true); myMenu.customItems.push(item4); item5 = new ContextMenuItem("Background music 2", itemHandler5); myMenu.customItems.push(item5); item6 = new ContextMenuItem("Background music 3", itemHandler6); myMenu.customItems.push(item6); item7 = new ContextMenuItem("No Music", itemHandler7); myMenu.customItems.push(item7); _root.menu = myMenu;
Frame 485
_root.lives = 3; var bc = 1000; _root.onMouseDown = function () { bc++; if (bc > 1100) { bc = 1000; } duplicateMovieClip ("bullet", "b" + bc, bc); }; stop();
Instance of Symbol 67 MovieClip "spaceship" in Frame 485
onClipEvent (enterFrame) { if (_root.lives == 0) { _root.gotoAndStop("lose"); } } onClipEvent (load) { _root.spacelives = 10; _root.spaceSpeed = 2; } onClipEvent (enterFrame) { if (_root.spacelives == 0) { _root.gotoAndStop("win"); } } onClipEvent (enterFrame) { if (!this.hitTest(_root.ground)) { _y = (_y + _root.spaceSpeed); } else { this._y = 0; this._x = random(550); _root.lives = _root.lives - 1; } }
Instance of Symbol 69 MovieClip "bullet" in Frame 485
onClipEvent (load) { spd = 20; _x = _root.gun._x; _y = _root.gun._y; _rotation = _root.gun._rotation; } onClipEvent (enterFrame) { if (_name == "bullet") { _x = -1000; } else { if (_rotation > 180) { _y = (_y + (spd * Math.cos((Math.PI/180) * _rotation))); _x = (_x - (spd * Math.sin((Math.PI/180) * _rotation))); } else { _y = (_y - (spd * Math.cos((Math.PI/180) * _rotation))); _x = (_x + (spd * Math.sin((Math.PI/180) * _rotation))); } if (hitTest(_root.spaceship)) { _root.spaceship._x = random(550); _root.spaceship._y = 0; _root.spacelives = _root.spacelives - 1; this.removeMovieClip(); } if (hitTest(_root.spaceship2)) { _root.spaceship2._x = random(550); _root.spaceship2._y = 0; _root.spacelives = _root.spacelives - 1; this.removeMovieClip(); } if (hitTest(_root.spaceship3)) { _root.spaceship3._x = random(550); _root.spaceship3._y = 0; _root.spacelives = _root.spacelives - 1; this.removeMovieClip(); } } if ((((_x > Stage.width) || (_x < 0)) || (_y < 0)) || (_y > Stage.height)) { this.removeMovieClip(); } }
Instance of Symbol 71 MovieClip "gun" in Frame 485
onClipEvent (load) { this.swapDepths(99997); } onClipEvent (mouseMove) { Xd = _root._xmouse - _x; Yd = _root._ymouse - _y; radAngle = Math.atan2(Yd, Xd); _rotation = int(((radAngle * 360) / (Math.PI*2)) + 90); updateAfterEvent(); }
Instance of Symbol 73 MovieClip "shine" in Frame 485
onClipEvent (load) { this.swapDepths(99998); } onClipEvent (mouseMove) { Xd = _root._xmouse - _x; Yd = _root._ymouse - _y; radAngle = Math.atan2(Yd, Xd); _rotation = int(((radAngle * 360) / (Math.PI*2)) + 90); updateAfterEvent(); }
Instance of Symbol 75 MovieClip "turret" in Frame 485
onClipEvent (load) { this.swapDepths(99999); }
Instance of Symbol 83 MovieClip in Frame 485
onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }
Frame 486
_root.lives = 3; var bc = 1000; _root.onMouseDown = function () { bc++; if (bc > 1100) { bc = 1000; } duplicateMovieClip ("bullet", "b" + bc, bc); }; stop();
Instance of Symbol 67 MovieClip "spaceship2" in Frame 486
onClipEvent (enterFrame) { if (!this.hitTest(_root.ground)) { _y = (_y + _root.spaceSpeed); } else { this._y = 0; this._x = random(550); _root.lives = _root.lives - 1; } }
Instance of Symbol 67 MovieClip "spaceship" in Frame 486
onClipEvent (enterFrame) { if (_root.lives == 0) { _root.gotoAndStop("lose"); } } onClipEvent (load) { _root.spacelives = 25; _root.spaceSpeed = 5; } onClipEvent (enterFrame) { if (_root.spacelives == 0) { _root.gotoAndStop("win"); } } onClipEvent (enterFrame) { if (!this.hitTest(_root.ground)) { _y = (_y + _root.spaceSpeed); } else { this._y = 0; this._x = random(550); _root.lives = _root.lives - 1; } }
Frame 487
_root.lives = 3;
Instance of Symbol 67 MovieClip "spaceship" in Frame 487
onClipEvent (enterFrame) { if (_root.lives == 0) { _root.gotoAndStop("lose"); } } onClipEvent (load) { _root.spacelives = 50; _root.spaceSpeed = 5; } onClipEvent (enterFrame) { if (_root.spacelives == 0) { _root.gotoAndStop("win"); } } onClipEvent (enterFrame) { if (!this.hitTest(_root.ground)) { _y = (_y + _root.spaceSpeed); } else { this._y = 0; this._x = random(550); _root.lives = _root.lives - 1; } }
Instance of Symbol 67 MovieClip "spaceship3" in Frame 487
onClipEvent (enterFrame) { if (!this.hitTest(_root.ground)) { _y = (_y + _root.spaceSpeed); } else { this._y = 0; this._x = random(550); _root.lives = _root.lives - 1; } }
Frame 488
_root.lives = 3; var bc = 1000; _root.onMouseDown = function () { bc++; if (bc > 1100) { bc = 1000; } duplicateMovieClip ("bullet", "b" + bc, bc); }; stop();
Instance of Symbol 69 MovieClip "bullet" in Frame 488
onClipEvent (load) { spd = 20; _x = _root.gun._x; _y = _root.gun._y; _rotation = _root.gun._rotation; } onClipEvent (enterFrame) { if (_name == "bullet") { _x = -1000; } else { if (_rotation > 180) { _y = (_y + (spd * Math.cos((Math.PI/180) * _rotation))); _x = (_x - (spd * Math.sin((Math.PI/180) * _rotation))); } else { _y = (_y - (spd * Math.cos((Math.PI/180) * _rotation))); _x = (_x + (spd * Math.sin((Math.PI/180) * _rotation))); } if (hitTest(_root.spaceship)) { _root.spaceship._x = random(550); _root.spaceship._y = 0; _root.spacelives = _root.spacelives - 1; this.removeMovieClip(); } if (hitTest(_root.spaceship2)) { _root.spaceship2._x = random(550); _root.spaceship2._y = 0; _root.spacelives = _root.spacelives - 1; this.removeMovieClip(); } if (hitTest(_root.spaceship3)) { _root.spaceship3._x = random(550); _root.spaceship3._y = 0; _root.spacelives = _root.spacelives - 1; this.removeMovieClip(); } } if ((((_x > Stage.width) || (_x < 0)) || (_y < 0)) || (_y > Stage.height)) { this.removeMovieClip(); } }
Instance of Symbol 71 MovieClip "gun" in Frame 488
onClipEvent (load) { this.swapDepths(99997); } onClipEvent (mouseMove) { Xd = _root._xmouse - _x; Yd = _root._ymouse - _y; radAngle = Math.atan2(Yd, Xd); _rotation = int(((radAngle * 360) / (Math.PI*2)) + 90); updateAfterEvent(); }
Instance of Symbol 73 MovieClip "shine" in Frame 488
onClipEvent (load) { this.swapDepths(99998); } onClipEvent (mouseMove) { Xd = _root._xmouse - _x; Yd = _root._ymouse - _y; radAngle = Math.atan2(Yd, Xd); _rotation = int(((radAngle * 360) / (Math.PI*2)) + 90); updateAfterEvent(); }
Instance of Symbol 75 MovieClip "turret" in Frame 488
onClipEvent (load) { this.swapDepths(99999); }
Instance of Symbol 67 MovieClip "spaceship" in Frame 488
onClipEvent (enterFrame) { if (_root.lives == 0) { _root.gotoAndStop("lose"); } } onClipEvent (load) { _root.spacelives = 70; _root.spaceSpeed = 7; } onClipEvent (enterFrame) { if (_root.spacelives == 0) { _root.gotoAndStop("win"); } } onClipEvent (enterFrame) { if (!this.hitTest(_root.ground)) { _y = (_y + _root.spaceSpeed); } else { this._y = 0; this._x = random(550); _root.lives = _root.lives - 1; } }
Instance of Symbol 67 MovieClip "spaceship4" in Frame 488
onClipEvent (enterFrame) { if (!this.hitTest(_root.ground)) { _y = (_y + _root.spaceSpeed); } else { this._y = 0; this._x = random(550); _root.lives = _root.lives - 1; } }
Frame 489
_root.lives = 3; var bc = 1000; _root.onMouseDown = function () { bc++; if (bc > 1100) { bc = 1000; } duplicateMovieClip ("bullet", "b" + bc, bc); }; stop();
Instance of Symbol 67 MovieClip "spaceship" in Frame 489
onClipEvent (enterFrame) { if (_root.lives == 0) { _root.gotoAndStop("lose"); } } onClipEvent (load) { _root.spacelives = 100; _root.spaceSpeed = 10; } onClipEvent (enterFrame) { if (_root.spacelives == 0) { _root.gotoAndStop("win"); } } onClipEvent (enterFrame) { if (!this.hitTest(_root.ground)) { _y = (_y + _root.spaceSpeed); } else { this._y = 0; this._x = random(550); _root.lives = _root.lives - 1; } }
Instance of Symbol 67 MovieClip "spaceship5" in Frame 489
onClipEvent (enterFrame) { if (!this.hitTest(_root.ground)) { _y = (_y + _root.spaceSpeed); } else { this._y = 0; this._x = random(550); _root.lives = _root.lives - 1; } }
Frame 490
Mouse.show(); removeMovieClip(_root.turret); removeMovieClip(_root.gun); removeMovieClip(_root.shine);
Frame 491
Mouse.show(); removeMovieClip(_root.turret); removeMovieClip(_root.gun); removeMovieClip(_root.shine);
Frame 492
_root.lives = 10; var bc = 1000; _root.onMouseDown = function () { bc++; if (bc > 1100) { bc = 1000; } duplicateMovieClip ("bullet", "b" + bc, bc); }; stop(); Mouse.hide();
Instance of Symbol 69 MovieClip "bullet" in Frame 492
onClipEvent (load) { spd = 20; _x = _root.gun._x; _y = _root.gun._y; _rotation = _root.gun._rotation; } onClipEvent (enterFrame) { if (_name == "bullet") { _x = -1000; } else { if (_rotation > 180) { _y = (_y + (spd * Math.cos((Math.PI/180) * _rotation))); _x = (_x - (spd * Math.sin((Math.PI/180) * _rotation))); } else { _y = (_y - (spd * Math.cos((Math.PI/180) * _rotation))); _x = (_x + (spd * Math.sin((Math.PI/180) * _rotation))); } if (hitTest(_root.spaceship)) { _root.spaceship._x = random(550); _root.spaceship._y = 0; _root.spacelives = _root.spacelives + 1; this.removeMovieClip(); } if (hitTest(_root.spaceship2)) { _root.spaceship2._x = random(550); _root.spaceship2._y = 0; _root.spacelives = _root.spacelives + 1; this.removeMovieClip(); } if (hitTest(_root.spaceship3)) { _root.spaceship3._x = random(550); _root.spaceship3._y = 0; _root.spacelives = _root.spacelives + 1; this.removeMovieClip(); } if (hitTest(_root.spaceship4)) { _root.spaceship4._x = random(550); _root.spaceship4._y = 0; _root.spacelives = _root.spacelives + 1; this.removeMovieClip(); } if (hitTest(_root.spaceship5)) { _root.spaceship5._x = random(550); _root.spaceship5._y = 0; _root.spacelives = _root.spacelives + 1; this.removeMovieClip(); } if (hitTest(_root.spaceship6)) { _root.spaceship6._x = random(550); _root.spaceship6._y = 0; _root.spacelives = _root.spacelives + 1; this.removeMovieClip(); } if (hitTest(_root.spaceship7)) { _root.spaceship7._x = random(550); _root.spaceship7._y = 0; _root.spacelives = _root.spacelives + 1; this.removeMovieClip(); } if (hitTest(_root.spaceship8)) { _root.spaceship8._x = random(550); _root.spaceship8._y = 0; _root.spacelives = _root.spacelives + 1; this.removeMovieClip(); } if (hitTest(_root.spaceship9)) { _root.spaceship9._x = random(550); _root.spaceship9._y = 0; _root.spacelives = _root.spacelives + 1; this.removeMovieClip(); } if (hitTest(_root.spaceship10)) { _root.spaceship10._x = random(550); _root.spaceship10._y = 0; _root.spacelives = _root.spacelives + 1; this.removeMovieClip(); } } if ((((_x > Stage.width) || (_x < 0)) || (_y < 0)) || (_y > Stage.height)) { this.removeMovieClip(); } }
Instance of Symbol 71 MovieClip "gun" in Frame 492
onClipEvent (load) { this.swapDepths(99997); } onClipEvent (mouseMove) { Xd = _root._xmouse - _x; Yd = _root._ymouse - _y; radAngle = Math.atan2(Yd, Xd); _rotation = int(((radAngle * 360) / (Math.PI*2)) + 90); updateAfterEvent(); }
Instance of Symbol 73 MovieClip "shine" in Frame 492
onClipEvent (load) { this.swapDepths(99998); } onClipEvent (mouseMove) { Xd = _root._xmouse - _x; Yd = _root._ymouse - _y; radAngle = Math.atan2(Yd, Xd); _rotation = int(((radAngle * 360) / (Math.PI*2)) + 90); updateAfterEvent(); }
Instance of Symbol 75 MovieClip "turret" in Frame 492
onClipEvent (load) { this.swapDepths(99999); }
Instance of Symbol 67 MovieClip "spaceship" in Frame 492
onClipEvent (enterFrame) { if (_root.lives == 0) { _root.gotoAndStop("endurscore"); } } onClipEvent (load) { _root.spacelives = 0; _root.spaceSpeed = 5; } onClipEvent (enterFrame) { if (!this.hitTest(_root.ground)) { _y = (_y + _root.spaceSpeed); } else { this._y = 0; this._x = random(550); _root.lives = _root.lives - 1; } }
Instance of Symbol 67 MovieClip "spaceship3" in Frame 492
onClipEvent (enterFrame) { if (!this.hitTest(_root.ground)) { _y = (_y + _root.spaceSpeed); } else { this._y = 0; this._x = random(550); _root.lives = _root.lives - 1; } }
Instance of Symbol 67 MovieClip "spaceship5" in Frame 492
onClipEvent (enterFrame) { if (!this.hitTest(_root.ground)) { _y = (_y + _root.spaceSpeed); } else { this._y = 0; this._x = random(550); _root.lives = _root.lives - 1; } }
Instance of Symbol 67 MovieClip "spaceship4" in Frame 492
onClipEvent (enterFrame) { if (!this.hitTest(_root.ground)) { _y = (_y + _root.spaceSpeed); } else { this._y = 0; this._x = random(550); _root.lives = _root.lives - 1; } }
Instance of Symbol 67 MovieClip "spaceship2" in Frame 492
onClipEvent (enterFrame) { if (!this.hitTest(_root.ground)) { _y = (_y + _root.spaceSpeed); } else { this._y = 0; this._x = random(550); _root.lives = _root.lives - 1; } }
Instance of Symbol 67 MovieClip "spaceship6" in Frame 492
onClipEvent (enterFrame) { if (!this.hitTest(_root.ground)) { _y = (_y + _root.spaceSpeed); } else { this._y = 0; this._x = random(550); _root.lives = _root.lives - 1; } }
Instance of Symbol 67 MovieClip "spaceship7" in Frame 492
onClipEvent (enterFrame) { if (!this.hitTest(_root.ground)) { _y = (_y + _root.spaceSpeed); } else { this._y = 0; this._x = random(550); _root.lives = _root.lives - 1; } }
Instance of Symbol 83 MovieClip in Frame 492
onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }
Frame 493
removeMovieClip(_root.turret); removeMovieClip(_root.gun); removeMovieClip(_root.shine); Mouse.show(); if (_root.spacelives < 10) { _root.total = "thats discraseful you should be ashamed of yourself"; } if ((_root.spacelives < 50) && (_root.spacelives > 10)) { _root.total = "the world was destroyed but we didnt go down easy"; } if ((_root.spacelives < 100) && (_root.spacelives > 50)) { _root.total = "we only just lost the war but you did well as a defender"; } if ((_root.spacelives < 200) && (_root.spacelives > 100)) { _root.total = "you only just saved the planet. but at least we're alive"; } if ((_root.spacelives < 500) && (_root.spacelives > 200)) { _root.total = "You saved the planet and got a medal for you excellent work"; } if ((_root.spacelives < 1000) && (_root.spacelives > 500)) { _root.total = "you saved the planet all by yourself. great work"; } if ((_root.spacelives < 2000) && (_root.spacelives > 1000)) { _root.total = "wholly crap, you anhillated those aliens"; } if (_root.spacelives > 2000) { _root.total = "JESUS CHRIST, YOU COULD HAVE COMPLETED THAT WITH YOUR EYES CLOSED"; }
Symbol 23 Button
on (release, keyPress "<Enter>") { _root.gotoAndPlay(3); }
Symbol 25 Button
on (release) { getURL ("http://www.flashtopia.tk", "blank"); }
Symbol 27 MovieClip Frame 1
_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; KB_out = (int(_root.getBytesLoaded() / 1000) + "/") + int(_root.getBytesTotal() / 1000); if (PercentLoaded != 100) { setProperty(barmask.bar, _xscale , PercentLoaded); } else { gotoAndStop ("loaded"); }
Symbol 27 MovieClip Frame 2
gotoAndPlay (1);
Symbol 53 Button
on (release) { gotoAndStop ("n00b"); }
Symbol 54 Button
on (release) { gotoAndStop ("easy"); }
Symbol 55 Button
on (release) { gotoAndStop ("medium"); }
Symbol 56 Button
on (release) { gotoAndStop ("hard"); }
Symbol 57 Button
on (release) { gotoAndStop ("pro"); }
Symbol 58 Button
on (release) { gotoAndStop ("endurance"); }
Symbol 94 Button
on (release) { gotoAndStop (484); }

Library Items

Symbol 1 Sound [song1]
Symbol 2 Sound [song2]
Symbol 3 Sound [song3]
Symbol 4 Sound [NG2902]
Symbol 5 GraphicUsed by:Timeline
Symbol 6 GraphicUsed by:27
Symbol 7 FontUsed by:8
Symbol 8 EditableTextUses:7Used by:27
Symbol 9 GraphicUsed by:27
Symbol 10 GraphicUsed by:27
Symbol 11 GraphicUsed by:15
Symbol 12 GraphicUsed by:13
Symbol 13 MovieClipUses:12Used by:15
Symbol 14 GraphicUsed by:15
Symbol 15 MovieClipUses:11 13 14Used by:27
Symbol 16 GraphicUsed by:19
Symbol 17 BitmapUsed by:18
Symbol 18 GraphicUses:17Used by:19
Symbol 19 MovieClipUses:16 18Used by:27
Symbol 20 GraphicUsed by:27
Symbol 21 GraphicUsed by:27
Symbol 22 GraphicUsed by:23
Symbol 23 ButtonUses:22Used by:27
Symbol 24 GraphicUsed by:25
Symbol 25 ButtonUses:24Used by:26
Symbol 26 MovieClipUses:25Used by:27
Symbol 27 MovieClipUses:6 8 9 10 15 19 20 21 23 26Used by:Timeline
Symbol 28 GraphicUsed by:Timeline
Symbol 29 GraphicUsed by:Timeline
Symbol 30 GraphicUsed by:Timeline
Symbol 31 FontUsed by:32 33 34 35 36 78 79 80 81 84 85 86 87 88 89 90 91 92 93 98 99 100 101 102 103 104
Symbol 32 TextUses:31Used by:Timeline
Symbol 33 TextUses:31Used by:Timeline
Symbol 34 TextUses:31Used by:Timeline
Symbol 35 TextUses:31Used by:Timeline
Symbol 36 TextUses:31Used by:Timeline
Symbol 37 GraphicUsed by:Timeline
Symbol 38 GraphicUsed by:Timeline
Symbol 39 GraphicUsed by:Timeline
Symbol 40 GraphicUsed by:Timeline
Symbol 41 GraphicUsed by:Timeline
Symbol 42 GraphicUsed by:Timeline
Symbol 43 GraphicUsed by:Timeline
Symbol 44 GraphicUsed by:Timeline
Symbol 45 GraphicUsed by:Timeline
Symbol 46 GraphicUsed by:Timeline
Symbol 47 GraphicUsed by:Timeline
Symbol 48 GraphicUsed by:Timeline
Symbol 49 GraphicUsed by:Timeline
Symbol 50 GraphicUsed by:Timeline
Symbol 51 GraphicUsed by:Timeline
Symbol 52 GraphicUsed by:53 54 55 56 57 58 94
Symbol 53 ButtonUses:52Used by:Timeline
Symbol 54 ButtonUses:52Used by:Timeline
Symbol 55 ButtonUses:52Used by:Timeline
Symbol 56 ButtonUses:52Used by:Timeline
Symbol 57 ButtonUses:52Used by:Timeline
Symbol 58 ButtonUses:52Used by:Timeline
Symbol 59 FontUsed by:60
Symbol 60 TextUses:59Used by:Timeline
Symbol 61 GraphicUsed by:62
Symbol 62 MovieClipUses:61Used by:65
Symbol 63 GraphicUsed by:64
Symbol 64 MovieClipUses:63Used by:65
Symbol 65 MovieClipUses:62 64Used by:Timeline
Symbol 66 GraphicUsed by:67
Symbol 67 MovieClipUses:66Used by:Timeline
Symbol 68 GraphicUsed by:69
Symbol 69 MovieClipUses:68Used by:Timeline
Symbol 70 GraphicUsed by:71
Symbol 71 MovieClipUses:70Used by:Timeline
Symbol 72 GraphicUsed by:73
Symbol 73 MovieClipUses:72Used by:Timeline
Symbol 74 GraphicUsed by:75
Symbol 75 MovieClipUses:74Used by:Timeline
Symbol 76 GraphicUsed by:77
Symbol 77 MovieClipUses:76Used by:Timeline
Symbol 78 EditableTextUses:31Used by:Timeline
Symbol 79 TextUses:31Used by:Timeline
Symbol 80 TextUses:31Used by:Timeline
Symbol 81 EditableTextUses:31Used by:Timeline
Symbol 82 GraphicUsed by:83
Symbol 83 MovieClipUses:82Used by:Timeline
Symbol 84 EditableTextUses:31Used by:Timeline
Symbol 85 TextUses:31Used by:Timeline
Symbol 86 TextUses:31Used by:Timeline
Symbol 87 EditableTextUses:31Used by:Timeline
Symbol 88 EditableTextUses:31Used by:Timeline
Symbol 89 EditableTextUses:31Used by:Timeline
Symbol 90 EditableTextUses:31Used by:Timeline
Symbol 91 EditableTextUses:31Used by:Timeline
Symbol 92 EditableTextUses:31Used by:Timeline
Symbol 93 EditableTextUses:31Used by:Timeline
Symbol 94 ButtonUses:52Used by:Timeline
Symbol 95 FontUsed by:96 97
Symbol 96 TextUses:95Used by:Timeline
Symbol 97 TextUses:95Used by:Timeline
Symbol 98 EditableTextUses:31Used by:Timeline
Symbol 99 EditableTextUses:31Used by:Timeline
Symbol 100 TextUses:31Used by:Timeline
Symbol 101 EditableTextUses:31Used by:Timeline
Symbol 102 TextUses:31Used by:Timeline
Symbol 103 EditableTextUses:31Used by:Timeline
Symbol 104 EditableTextUses:31Used by:Timeline
Streaming Sound 1Used by:Timeline

Instance Names

"spaceship"Frame 485Symbol 67 MovieClip
"bullet"Frame 485Symbol 69 MovieClip
"gun"Frame 485Symbol 71 MovieClip
"shine"Frame 485Symbol 73 MovieClip
"turret"Frame 485Symbol 75 MovieClip
"ground"Frame 485Symbol 77 MovieClip
"spaceship2"Frame 486Symbol 67 MovieClip
"spaceship"Frame 486Symbol 67 MovieClip
"spaceship"Frame 487Symbol 67 MovieClip
"spaceship3"Frame 487Symbol 67 MovieClip
"bullet"Frame 488Symbol 69 MovieClip
"gun"Frame 488Symbol 71 MovieClip
"shine"Frame 488Symbol 73 MovieClip
"turret"Frame 488Symbol 75 MovieClip
"ground"Frame 488Symbol 77 MovieClip
"spaceship"Frame 488Symbol 67 MovieClip
"spaceship4"Frame 488Symbol 67 MovieClip
"spaceship"Frame 489Symbol 67 MovieClip
"spaceship5"Frame 489Symbol 67 MovieClip
"bullet"Frame 492Symbol 69 MovieClip
"gun"Frame 492Symbol 71 MovieClip
"shine"Frame 492Symbol 73 MovieClip
"turret"Frame 492Symbol 75 MovieClip
"spaceship"Frame 492Symbol 67 MovieClip
"ground"Frame 492Symbol 77 MovieClip
"spaceship3"Frame 492Symbol 67 MovieClip
"spaceship5"Frame 492Symbol 67 MovieClip
"spaceship4"Frame 492Symbol 67 MovieClip
"spaceship2"Frame 492Symbol 67 MovieClip
"spaceship6"Frame 492Symbol 67 MovieClip
"spaceship7"Frame 492Symbol 67 MovieClip
"spacelives"Frame 493Symbol 103 EditableText
"bar"Symbol 15 MovieClip Frame 1Symbol 13 MovieClip
"barmask"Symbol 27 MovieClip Frame 1Symbol 15 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 1 as "song1"
ExportAssets (56)Timeline Frame 1Symbol 2 as "song2"
ExportAssets (56)Timeline Frame 1Symbol 3 as "song3"
ExportAssets (56)Timeline Frame 1Symbol 4 as "NG2902"

Labels

"n00b"Frame 485
"easy"Frame 486
"medium"Frame 487
"hard"Frame 488
"pro"Frame 489
"win"Frame 490
"lose"Frame 491
"endurance"Frame 492
"endurscore"Frame 493
"loaded"Symbol 27 MovieClip Frame 3

Dynamic Text Variables

KB_outSymbol 8 EditableText"4000/4000"
spacelivesSymbol 78 EditableText""
livesSymbol 81 EditableText""
spacelivesSymbol 84 EditableText""
livesSymbol 87 EditableText""
spacelivesSymbol 88 EditableText""
livesSymbol 89 EditableText""
spacelivesSymbol 90 EditableText""
livesSymbol 91 EditableText""
spacelivesSymbol 92 EditableText""
livesSymbol 93 EditableText""
livesSymbol 98 EditableText""
spacelivesSymbol 99 EditableText""
livesSymbol 101 EditableText""
spacelivesSymbol 103 EditableText""
totalSymbol 104 EditableText""




http://swfchan.com/15/73315/info.shtml
Created: 8/4 -2019 08:47:04 Last modified: 8/4 -2019 08:47:04 Server time: 14/05 -2024 10:19:01