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

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

Katocan V2 Preview.swf

This is the info page for
Flash #66076

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


Text
Play

Play

Play

Options

Options

Options

Instructions

Instructions

Instructions

Controls

Controls

Controls

High Score

High Score

High Score

High Score

Back to Main Menu

Back to Main Menu

Back to Main Menu

Back to Main Menu

Quality:

Low

Medium

High

High

Music:

On

Off

Move

Ctrl

Shoot Laser

Spacebar

Shoot Bullet

In Katocan you have to try and get the highest score possible. The highest score
will be recorded and everyone who playes the game will be able to see what the
highest score is. The longer you play for the harder it gets with more enemy's and
astroids. Good Luck Pilot and get your ass out there.

Next >>

Next >>

Next >>

<< PreV

<< PreV

<< PreV

<< PreV

Avoid:

Collect:

Shoot and Avoid:

Asteroids

Invincibility pickups

enemy ships

<p align="center"><font face="_sans" size="10" color="#999999">Asteroids</font></p><p align="center"></p><p align="center"><font face="_sans" size="9" color="#cccccc">These can fly through the screen <sbr />at any time, so watch out!</font></p>

<p align="center"><font face="_sans" size="10" color="#999999">Invincibility pickups</font></p><p align="center"></p><p align="center"><font face="_sans" size="9" color="#cccccc">These are quite rare, so once you see <sbr />one, go get it!</font></p>

<p align="center"><font face="_sans" size="10" color="#999999">enemy ships</font></p><p align="center"></p><p align="center"><font face="_sans" size="9" color="#cccccc">Touching enemy ships will result in dying. But, <sbr />killing them will result in 3 points.</font></p>

This is your laser bar. You can only shoot
your laser when this bar is full.

Laser ready to shoot

Laser not ready to shoot

Good Luck!

Congratulations! You have got the highest score!

Your Name:

OK

OK

OK

OK

By:

Score:

High Score:

High Score:

ActionScript [AS1/AS2]

Frame 1
Stage.showMenu = false; Stage.scaleMode = "showAll"; _root.musicOn = true; fscommand ("trapallkeys", "true"); so = SharedObject.getLocal("spaceInfinity");
Frame 2
stop(); reset();
Frame 59
gotoAndStop (70);
Frame 60
stop(); if (Math.max(so.data.highScore, score) == so.data.highScore) { hsn = so.data.highName.charAt(0).toUpperCase() + so.data.highName.substring(1, so.data.highName.length); finalScore = ((((("Your Score: " + score) + newline) + "High Score: ") + so.data.highScore) + " by ") + hsn; reset(); } else { gotoAndStop ("highScore"); }
Frame 61
stop();
Instance of Symbol 58 MovieClip in Frame 61
onClipEvent (enterFrame) { if (_quality == "LOW") { this.gotoAndStop(2); } else { this.gotoAndStop(1); } }
Instance of Symbol 58 MovieClip in Frame 61
onClipEvent (enterFrame) { if (_quality == "MEDIUM") { this.gotoAndStop(2); } else { this.gotoAndStop(1); } }
Instance of Symbol 58 MovieClip in Frame 61
onClipEvent (enterFrame) { if ((_quality == "HIGH") || (_quality == "BEST")) { this.gotoAndStop(2); } else { this.gotoAndStop(1); } }
Instance of Symbol 58 MovieClip in Frame 61
onClipEvent (enterFrame) { if (_root.musicOn) { this.gotoAndStop(2); } else { this.gotoAndStop(1); } }
Instance of Symbol 58 MovieClip in Frame 61
onClipEvent (enterFrame) { if (!_root.musicOn) { this.gotoAndStop(2); } else { this.gotoAndStop(1); } }
Frame 62
stop();
Frame 63
stop();
Frame 68
stop(); finalScore = "Your Score: " + score; highScore = score; Selection.setFocus(pn); reset();
Frame 69
stop(); hsn = so.data.highName.charAt(0).toUpperCase() + so.data.highName.substring(1, so.data.highName.length); if (hsn != 0) { finalScore = so.data.highScore; by = hsn; } else { by = "No One"; finalScore = "--"; }
Frame 70
function reset() { var _local1 = _root; _global.remove = true; _local1.score = 0; _local1.laserBar.mask._yscale = 100; _local1.invincible = false; stopAllSounds(); } score = 0; var i = 100; var a = 100; var k = 100; this.onEnterFrame = function () { pickupTimer = getTimer(); if (random(6) == 0) { duplicateMovieClip ("_root.star", "star_duplicate" + i, i); i++; } if (random(100) == 0) { duplicateMovieClip ("_root.asteroid", "asteroid_duplicate" + a, a); a++; } if (((((random(750) == 0) && (!invincible)) && (pickupTimer > 3000)) && (!pickupOnStage)) && (_root.player.dead != true)) { duplicateMovieClip ("_root.invincible_pu", "invincible_pu_duplicate" + k, k); k++; } }; if (musicOn) { music = new Sound(); music.attachSound("space gas"); music.setVolume(85); music.start(); music.onSoundComplete = function () { music.start(); }; } _global.remove = false;
Instance of Symbol 138 MovieClip "ship" in Frame 70
onClipEvent (load) { function killPlayer() { if ((dead != true) && (!_root.invincible)) { dead = true; this.play(); } } function shootBullet(keyButton) { if (Key.isDown(keyButton) && (allowShootBullet)) { duplicateMovieClip ("_root.bullet", "bullet" + i, i); i++; bullet_sound.attachSound("bullet_sound"); bullet_sound.start(); allowShootBullet = false; } if (!Key.isDown(keyButton)) { allowShootBullet = true; } } function shootLaser(keyButton) { if (Key.isDown(keyButton) && (allowShootLaser)) { duplicateMovieClip ("_root.laser", "laser" + t, t); t++; _root.laserBar.drain(); } } moveSpeed = 6; allowShootBullet = true; allowShootLaser = true; i = 0; t = 0; dead = false; bullet_sound = new Sound(); keys = {bullet:32, laser:17}; } onClipEvent (enterFrame) { if (!dead) { shootBullet(keys.bullet); shootLaser(keys.laser); for (enemy in _root.enemiesContainer) { if (this.hitTest(_root.enemiesContainer[enemy]) && (_root.enemiesContainer[enemy].health > 0)) { killPlayer(); } } if (Key.isDown(37)) { _x = (_x - moveSpeed); frontFlame._visible = true; backFlame._visible = false; } if (Key.isDown(39)) { _x = (_x + moveSpeed); frontFlame._visible = false; backFlame._visible = true; } if (Key.isDown(38)) { _y = (_y - moveSpeed); } if (Key.isDown(40)) { _y = (_y + moveSpeed); } if (_x > Stage.width) { _x = (_x - moveSpeed); } if (_x < 0) { _x = (_x + moveSpeed); } if (_y > Stage.height) { _y = (_y - moveSpeed); } if (_y < 0) { _y = (_y + moveSpeed); } } } onClipEvent (keyUp) { frontFlame._visible = false; backFlame._visible = false; }
Instance of Symbol 142 MovieClip "bullet" in Frame 70
onClipEvent (load) { function hurtEnemy(whichEnemy, minusHealth) { var _local1 = this; whichEnemy.health = whichEnemy.health - minusHealth; _local1.play(); _local1.active = false; if (_local1._currentframe != 1) { _rotation = explosionRotation; } } if (_name == "bullet") { _visible = false; _y = -20; } bulletSpeed = 12; active = true; explosionRotation = Math.random() * 360; _y = _root.ship._y; _x = (_root.ship._x + 2); _rotation = 0; } onClipEvent (enterFrame) { _x = (_x + bulletSpeed); if ((_x > (Stage.width + 10)) || (remove)) { removeMovieClip(""); } for (enemy in _root.enemiesContainer) { if ((this.hitTest(_root.enemiesContainer[enemy]) && (!_root.enemiesContainer[enemy].dead)) && (active)) { hurtEnemy(_root.enemiesContainer[enemy], (Math.random() * 50) + 30); } } }
Instance of Symbol 144 MovieClip "star" in Frame 70
onClipEvent (load) { if (_name == "star") { _visible = false; } rate = 1 + (Math.random() * 99); _y = random(200); _x = 560; } onClipEvent (enterFrame) { _x = (_x - (this.rate / 10)); _xscale = this.rate; _yscale = this.rate; if ((_x < -10) || (remove)) { removeMovieClip(""); } }
Instance of Symbol 148 MovieClip "enemiesContainer" in Frame 70
/* no clip actions */
Instance of Symbol 151 MovieClip "laser" in Frame 70
onClipEvent (load) { if (_name == "laser") { _visible = false; laserSpeed = 0; } else { laserSpeed = 5; _x = (_root.ship._x + 5); } } onClipEvent (enterFrame) { _x = (_x + laserSpeed); if ((_x > 560) || (remove)) { removeMovieClip(""); } for (enemy in _root.enemiesContainer) { if (this.hitTest(_root.enemiesContainer[enemy])) { _root.enemiesContainer[enemy].health = _root.enemiesContainer[enemy].health - 100; } } }
Instance of Symbol 154 MovieClip "invincible_pu" in Frame 70
onClipEvent (load) { if (_name == "invincible_pu") { _visible = false; _y = -20; } else { _root.forcefield.durationLimit = 250 + (Math.random() * 100); _root.forcefield.duration = 0; _root.pickupOnStage = true; _y = (Math.random() * Stage.width); _x = (Stage.width + 20); speed = 3 + (Math.random() * 5); size = 75 + (Math.random() * 50); _xscale = size; _yscale = size; } } onClipEvent (enterFrame) { _x = (_x - speed); if (_x < -20) { _root.pickupOnStage = false; removeMovieClip(""); } if (_root.ship.hitTest(this) || (remove)) { _root.invincible = true; removeMovieClip(""); _root.pickupOnStage = false; } }
Instance of Symbol 156 MovieClip "asteroid" in Frame 70
onClipEvent (load) { health = 100; shipSpeed = 5 + (Math.random() * 3); if (_name == "enemy") { _visible = false; _y = -20; } else { _x = (Stage.width + 25); _y = (Math.random() * Stage.height); dead = false; } } onClipEvent (enterFrame) { _x = (_x - shipSpeed); if ((_x < -10) || (remove)) { removeMovieClip(""); } if ((health <= 0) && (!dead)) { this.play(); dead = true; _root.score = _root.score + 3; } }
Instance of Symbol 159 MovieClip "forcefield" in Frame 70
onClipEvent (load) { delay = 1.5; duration = 0; } onClipEvent (enterFrame) { if (_root.invincible) { _x = (_x + ((_root.ship._x - _x) / delay)); _y = (_y + ((_root.ship._y - _y) / delay)); if ((duration >= durationLimit) || (remove)) { _root.invincible = false; } duration++; } else { _x = -150; _y = 50; } }
Instance of Symbol 164 MovieClip "laserBar" in Frame 70
onClipEvent (load) { function recharge(rate) { if (this.mask._yscale < 100) { this.mask._yscale = this.mask._yscale + rate; } } function drain() { this.mask._yscale = 0; } } onClipEvent (enterFrame) { _root.ship.allowShootLaser = _root.laserBar.mask._yscale >= 100; recharge(0.25); }
Symbol 11 MovieClip Frame 1
_root.stop(); this.onEnterFrame = function () { var _local1 = _root; mask._xscale = (_local1.getBytesLoaded() / _local1.getBytesTotal()) * 100; percent_mc.percent = Math.round((_local1.getBytesLoaded() / _local1.getBytesTotal()) * 100) + "%"; percent_mc._x = mask._width; if (_local1.getBytesLoaded() == _local1.getBytesTotal()) { _local1.play(); delete this.onEnterFrame; } };
Symbol 20 Button
on (release) { play(); }
Symbol 24 Button
on (release) { gotoAndStop ("options"); }
Symbol 28 Button
on (release) { gotoAndStop ("instructions"); }
Symbol 32 Button
on (release) { gotoAndStop ("controls"); }
Symbol 37 Button
on (release) { gotoAndStop ("hs_record"); }
Symbol 46 MovieClip Frame 15
stop();
Symbol 52 Button
on (release) { gotoAndStop ("main"); }
Symbol 58 MovieClip Frame 1
stop();
Symbol 61 Button
on (release) { _quality = "LOW"; }
Symbol 63 Button
on (release) { _quality = "MEDIUM"; }
Symbol 66 Button
on (release) { _quality = "HIGH"; }
Symbol 70 Button
on (release) { _root.musicOn = true; }
Symbol 72 Button
on (release) { _root.musicOn = false; }
Symbol 75 MovieClip Frame 17
stop();
Symbol 90 Button
on (release) { nextFrame(); }
Symbol 94 Button
on (release) { prevFrame(); }
Symbol 118 Button
on (release, keyPress "<Enter>") { so.data.highScore = highScore; so.data.highName = hs_name; gotoAndStop ("main"); }
Symbol 138 MovieClip Frame 1
stop();
Instance of Symbol 130 MovieClip "backFlame" in Symbol 138 MovieClip Frame 1
onClipEvent (load) { _visible = false; }
Instance of Symbol 133 MovieClip "frontFlame" in Symbol 138 MovieClip Frame 1
onClipEvent (load) { _visible = false; }
Symbol 138 MovieClip Frame 28
stop(); _root.gotoAndStop("gameOver");
Symbol 142 MovieClip Frame 1
stop();
Symbol 142 MovieClip Frame 7
removeMovieClip("");
Symbol 147 MovieClip Frame 1
stop();
Symbol 147 MovieClip Frame 8
stop(); removeMovieClip(this);
Symbol 148 MovieClip Frame 1
this.onEnterFrame = function () { if (random(16) == 0) { duplicateMovieClip (enemy, "enemy" + i, i); i++; } };
Instance of Symbol 147 MovieClip "enemy" in Symbol 148 MovieClip Frame 1
onClipEvent (load) { health = 100; shipSpeed = 5 + (Math.random() * 3); if (_name == "enemy") { _visible = false; _y = -20; } else { _x = (Stage.width + 25); _y = (Math.random() * Stage.height); dead = false; } } onClipEvent (enterFrame) { _x = (_x - shipSpeed); if ((_x < -10) || (remove)) { removeMovieClip(""); } if ((health <= 0) && (!dead)) { this.play(); dead = true; _root.score = _root.score + 3; } }
Symbol 154 MovieClip Frame 21
stop();

Library Items

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

Instance Names

"preloader"Frame 1Symbol 11 MovieClip
"pn"Frame 68Symbol 119 EditableText
"ship"Frame 70Symbol 138 MovieClip
"bullet"Frame 70Symbol 142 MovieClip
"star"Frame 70Symbol 144 MovieClip
"enemiesContainer"Frame 70Symbol 148 MovieClip
"laser"Frame 70Symbol 151 MovieClip
"invincible_pu"Frame 70Symbol 154 MovieClip
"asteroid"Frame 70Symbol 156 MovieClip
"forcefield"Frame 70Symbol 159 MovieClip
"score"Frame 70Symbol 160 EditableText
"laserBar"Frame 70Symbol 164 MovieClip
"mask"Symbol 11 MovieClip Frame 1Symbol 5 MovieClip
"percent_mc"Symbol 11 MovieClip Frame 1Symbol 10 MovieClip
"backFlame"Symbol 138 MovieClip Frame 1Symbol 130 MovieClip
"frontFlame"Symbol 138 MovieClip Frame 1Symbol 133 MovieClip
"enemy"Symbol 148 MovieClip Frame 1Symbol 147 MovieClip
"mask"Symbol 164 MovieClip Frame 1Symbol 161 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "bullet_sound"
ExportAssets (56)Timeline Frame 1Symbol 2 as "music"
ExportAssets (56)Timeline Frame 1Symbol 3 as "laser"
ExportAssets (56)Timeline Frame 60Symbol 3 as "laser"

Labels

"main"Frame 2
"gameOver"Frame 60
"options"Frame 61
"controls"Frame 62
"instructions"Frame 63
"highScore"Frame 68
"hs_record"Frame 69

Dynamic Text Variables

percentSymbol 9 EditableText""
finalScoreSymbol 54 EditableText""
hs_nameSymbol 119 EditableText""
finalScoreSymbol 120 EditableText""
bySymbol 124 EditableText""
finalScoreSymbol 125 EditableText""
scoreSymbol 160 EditableText""




http://swfchan.com/14/66076/info.shtml
Created: 12/4 -2019 06:17:18 Last modified: 12/4 -2019 06:17:18 Server time: 10/05 -2024 14:12:02