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

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

Pixel Fighta.swf

This is the info page for
Flash #68294

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


Text
loading

sponsored by

<p align="center"><font face="04b_08" size="9" color="#ffffff" letterSpacing="3.000000" kerning="0">Visit </font></p><p align="center"><font face="04b_08" size="9" color="#ffffff" letterSpacing="3.000000" kerning="0">Armorgames.com</font></p>

presents

1

laser

boost

0

player1

player1

player1

player1

player1

player1

player1

player1

player1

player1

score

score

score

score

score

score

score

score

score

score

0

final score

your name:

none

submit!

hiscores

player1

player1

player1

player1

player1

player1

player1

player1

player1

player1

score

score

score

score

score

score

score

score

score

score

ActionScript [AS1/AS2]

Frame 1
stop();
Frame 2
stopAllSounds();
Frame 3
stop();
Frame 4
stop();
Frame 5
var muson = true; var music = new Sound(); stopAllSounds(); music.stop(); music.attachSound("music"); music.start(0, 99); stop();
Instance of Symbol 100 MovieClip in Frame 5
on (release) { if (!_root.muson) { stopAllSounds(); _root.music.stop(); _root.music.attachSound("music"); _root.music.start(0, 99); _root.muson = true; } else { stopAllSounds(); _root.muson = false; } }
Frame 6
stop(); _quality = "LOW"; var speed = 1; var run = 1; var dist = 3; var fatigue = 100; var canrun = true; var i = 0; var il = 0; var im = 0; var im2 = 0; var ie = 0; var is = 0; var laser = 1; var lasercoil = 100; var laseruse = false; var dir = "wl"; var leftwall = 100; var rightwall = 100; var level = 1; var posleft = 0; var posright = 0; var toleft = true; var score = 1; var yourname = "none"; var finalscore = 1; var frame = 0; var nextlevel = 10; var alive = true; var cad = 60; var l1 = new Sound(); l1.attachSound("las1"); var l2 = new Sound(); l2.attachSound("las1"); var l3 = new Sound(); l3.attachSound("las3"); var l4 = new Sound(); l4.attachSound("las4"); var l5 = new Sound(); l5.attachSound("las5"); var pp = new Sound(); pp.attachSound("specsound"); var xx = new Sound(); xx.attachSound("explo"); onLoad = function () { ship.stop(); ship.wl.stop(); }; onEnterFrame = function () { if (alive) { swoosh(); frame++; if ((frame % cad) == 0) { if (level > (random(100) + 400)) { mob(random(5) / 5, random(200), 6); } else if (level > (random(100) + 300)) { mob(random(5) / 5, random(200), 5); } else if (level > (random(100) + 200)) { mob(random(5) / 5, random(200), 4); } else if (level > (random(100) + 200)) { mob(random(5) / 5, random(200), 3); } else if (level > (random(100) + 100)) { mob(random(5) / 5, random(200), 2); } else { mob(random(5) / 5, random(200), 1); } } if ((frame % 500) == 0) { powerup(); } if (frame > 3000) { frame = 0; } var _local2 = 0; while (_local2 < 101) { if (ship.hitTest(_root["right" + _local2]) || (ship.hitTest(_root["left" + _local2]))) { _root.attachMovie("ship", "explo", -5, {_x:ship._x, _y:ship._y}); _root.explo.gotoAndStop(2); ship._y = 500; _root.alive = false; } _local2++; } if (score > nextlevel) { if (((level % 50) == 0) && (cad > 15)) { cad = cad - 15; } level++; nextlevel = score * (1 + ((400 / level) / 100)); } if (random(100) > 90) { toleft = !toleft; } if (toleft) { posleft = ((posleft > 0) ? (posleft - 0.1) : (posleft)); posright = ((posright < 6.7) ? (posright + 0.1) : (posright)); leftwall = level * posleft; rightwall = (level * posright) * -1; } else { posleft = ((posleft < 6.7) ? (posleft + 0.1) : (posleft)); posright = ((posright > 0) ? (posright - 0.1) : (posright)); leftwall = level * posleft; rightwall = (level * posright) * -1; } makeleftwall(); makerightwall(); sweat(); if (Key.isDown(16) && (canrun)) { run = 3; if (Key.isDown(37)) { fade = "rl"; dir = "wl"; movechar(1); } else if (Key.isDown(40)) { fade = "rd"; dir = "wd"; movechar(2); } else if (Key.isDown(39)) { fade = "rr"; dir = "wr"; movechar(3); } else if (Key.isDown(38)) { fade = "ru"; dir = "wu"; movechar(4); } if (fatigue > 20) { ship.duplicateMovieClip("temp" + i, i + 300, {_x:ship._x, _y:ship._y, _alpha:70}); _root["temp" + i].onEnterFrame = sprintfade; } i++; if (i > 10) { i = 0; } } else { run = 1; if (Key.isDown(37)) { dir = "wl"; movechar(1); } else if (Key.isDown(40)) { dir = "wd"; movechar(2); } else if (Key.isDown(39)) { dir = "wr"; movechar(3); } else if (Key.isDown(38)) { dir = "wu"; movechar(4); } else { run = 0; } } lasersweat(); if (Key.isDown(32)) { if ((frame % 5) == 0) { fire(); } } } else { _root.finalscore = _root.score; gotoAndStop (7); delete onEnterFrame; } }; movechar = function (what) { switch (what) { case 1 : if (ship._x > (1 + (speed * dist))) { ship._x = ship._x - (speed * dist); } break; case 2 : if (ship._y < (390 - (speed * dist))) { ship._y = ship._y + (speed * dist); } break; case 3 : if (ship._x < (199 - (speed * dist))) { ship._x = ship._x + (speed * dist); } break; case 4 : if (!((ship._y > (1 + (speed * dist))) && (ship._y < 499))) { break; } ship._y = ship._y - (speed * dist); } }; sweat = function () { if (run > 1) { fatigue = fatigue - 2; } else if ((run == 1) && (fatigue < 99)) { fatigue = fatigue + 1; } else if (fatigue < 99) { fatigue = fatigue + 2; } else if (fatigue < 100) { fatigue = fatigue + 1; } fatiguebar._width = fatigue; if (fatigue < 2) { canrun = false; } else if (fatigue > 20) { canrun = true; } speed = ((fatigue / 100) * 1) * run; }; sprintfade = function () { this.gotoAndStop(fade); this._alpha = this._alpha - 10; if (this._alpha < 0) { this.removeMovieClip(); } }; fire = function () { if (laser == 1) { laseruse = true; if (lasersweat() && (lasercoil > 5)) { _root.l1.start(); _root.createEmptyMovieClip("laser" + il, 2000 + il); if (il % 2) { _root["laser" + il].attachMovie("laser_1", "laser", 0, {_x:ship._x, _y:ship._y}); } else { _root["laser" + il].attachMovie("laser_1", "laser", 0, {_x:ship._x, _y:ship._y}); } _root["laser" + il].onLoad = function () { var _local2 = _root.dir; }; _root["laser" + il].laser.onEnterFrame = function () { this._y = this._y - 5; var _local3 = 0; while (_local3 < 11) { if (this.hitTest(_root["enemy" + _local3])) { _root["enemy" + _local3].play(); this.removeMovieClip(); _root.score = _root.score + Math.ceil((level * 250) * (_root["enemy" + _local3]._yscale / 100)); } _local3++; } if (this._y < 0) { this.removeMovieClip(); } }; _root["laser" + il].mydir = _root.dir; il++; if (il > 200) { il = 0; } } laseruse = false; } if (laser == 2) { laseruse = true; if (lasersweat() && (lasercoil > 5)) { _root.l2.start(); _root.createEmptyMovieClip("laser" + il, 2000 + il); if (il % 2) { _root["laser" + il].attachMovie("laser_2", "laser", 0, {_x:ship._x, _y:ship._y}); } else { _root["laser" + il].attachMovie("laser_2", "laser", 0, {_x:ship._x, _y:ship._y}); } _root["laser" + il].onLoad = function () { var _local2 = _root.dir; }; _root["laser" + il].laser.onEnterFrame = function () { this._y = this._y - 5; var _local3 = 0; while (_local3 < 11) { if (this.hitTest(_root["enemy" + _local3])) { _root["enemy" + _local3].play(); this.removeMovieClip(); _root.score = _root.score + Math.ceil((level * 250) * (_root["enemy" + _local3]._yscale / 100)); } _local3++; } if (this._y < 0) { this.removeMovieClip(); } }; _root["laser" + il].mydir = _root.dir; il++; if (il > 200) { il = 0; } } laseruse = false; } if (laser == 3) { laseruse = true; if (lasersweat() && (lasercoil > 5)) { _root.l3.start(); _root.createEmptyMovieClip("laser" + il, 2000 + il); if (il % 2) { _root["laser" + il].attachMovie("laser_3", "laser", 0, {_x:ship._x, _y:ship._y}); } else { _root["laser" + il].attachMovie("laser_3", "laser", 0, {_x:ship._x, _y:ship._y}); } _root["laser" + il].onLoad = function () { var _local2 = _root.dir; }; _root["laser" + il].laser.onEnterFrame = function () { this._y = this._y - 5; var _local3 = 0; while (_local3 < 11) { if (this.hitTest(_root["enemy" + _local3])) { _root["enemy" + _local3].play(); this.removeMovieClip(); _root.score = _root.score + Math.ceil((level * 250) * (_root["enemy" + _local3]._yscale / 100)); } _local3++; } if (this._y < 0) { this.removeMovieClip(); } }; _root["laser" + il].mydir = _root.dir; il++; if (il > 200) { il = 0; } } laseruse = false; } if (laser == 4) { laseruse = true; if (lasersweat() && (lasercoil > 5)) { _root.l4.start(); _root.createEmptyMovieClip("laser" + il, 2000 + il); _root["laser" + il].attachMovie("laser_4", "laser", 0, {_x:ship._x, _y:ship._y}); _root["laser" + il].onLoad = function () { var _local2 = _root.dir; }; _root["laser" + il].laser.onEnterFrame = function () { this._y = this._y - 5; var _local3 = 0; while (_local3 < 11) { if (this.hitTest(_root["enemy" + _local3])) { _root["enemy" + _local3].play(); _root.score = _root.score + Math.ceil((level * 250) * (_root["enemy" + _local3]._yscale / 100)); } _local3++; } if (this._y < 0) { this.removeMovieClip(); } }; _root["laser" + il].mydir = _root.dir; il++; if (il > 200) { il = 0; } } laseruse = false; } if (laser == 5) { laseruse = true; if (lasersweat() && (lasercoil > 5)) { _root.l5.start(); _root.createEmptyMovieClip("laser" + il, 2000 + il); if (il % 2) { xer = -rand; _root["laser" + il].attachMovie("laser_5", "laser", 0, {_x:ship._x, _y:ship._y}); } else { _root["laser" + il].attachMovie("laser_5", "laser", 0, {_x:ship._x, _y:ship._y}); xer = rand; } _root["laser" + il].onLoad = function () { var _local2 = _root.dir; }; _root["laser" + il].laser.onEnterFrame = function () { this._y = this._y - 5; this._x = this._x + (random(10) - 5); var _local3 = 0; while (_local3 < 11) { if (this.hitTest(_root["enemy" + _local3])) { _root["enemy" + _local3].play(); _root.score = _root.score + Math.ceil((level * 250) * (_root["enemy" + _local3]._yscale / 100)); } _local3++; } if (this._y < 0) { this.removeMovieClip(); } }; _root["laser" + il].mydir = _root.dir; il++; if (il > 200) { il = 0; } } laseruse = false; } }; lasersweat = function () { if ((lasercoil > 5) && (laseruse)) { lasercoil = lasercoil - 10; return(true); } if (laseruse) { return(false); } if (lasercoil < 98) { lasercoil = lasercoil + 1; } laserbar._width = lasercoil; }; makeleftwall = function () { _root.createEmptyMovieClip("left" + im, -8000 + im); _root["left" + im].attachMovie("pixel", "cube", 0, {_y:-50, _x:0, _xscale:leftwall}); _root["left" + im].onEnterFrame = function () { this._y = this._y + 5; if (this._y > 455) { _root.score = _root.score + Math.ceil(this._width * _root.level); this.removeMovieClip(); } }; im++; if (im > 100) { im = 0; } }; makerightwall = function () { _root.createEmptyMovieClip("right" + im2, -9000 + im2); _root["right" + im2].attachMovie("pixel", "cube", 0, {_y:-50, _x:200, _xscale:rightwall}); _root["right" + im2].onEnterFrame = function () { this._y = this._y + 5; if (this._y > 455) { _root.score = _root.score + Math.ceil(this._width * _root.level); this.removeMovieClip(); } }; im2++; if (im2 > 100) { im2 = 0; } }; mob = function (rn, rn2, size) { _root.attachMovie("enemy", "enemy" + ie, -5000 + ie, {_x:random(150) + 24, _y:-50, _yscale:size * 100, _xscale:size * 100}); _root["enemy" + ie].onEnterFrame = function () { this._y = this._y + 3; this._x = ((Math.sin(frame / 10) * level) * rn) + rn2; if (this.hit.hitTest(_root.ship)) { _root.attachMovie("ship", "explo", -5, {_x:ship._x, _y:ship._y}); _root.explo.gotoAndStop(2); _root.xx.start(); ship._y = 500; _root.alive = false; } }; if (ie > 9) { ie = 0; } else { ie++; } }; hiscore = function () { pldm128948 = new LoadVars(); pldm128948.namevar = _root.yourname; pldm128948.scorevar = _root.finalscore; pldm128948.mid = 163; pldm128948.pro = "e5e45ff9b0f02a7d196f751178d8fed7"; pldm128948.sendAndLoad("http://bot.armorstudios.com/hs.php", pldm128948, "POST"); getsc_lv = new LoadVars(); getsc_lv.bid = 163; rec_lv = new LoadVars(); getsc_lv.sendAndLoad("http://bot.pldmstudios.com/g10.php", rec_lv, "POST"); i = 1; while (i < 11) { _root["pl" + i].text = "loading"; _root["sc" + i].text = "loading"; i++; } rec_lv.onLoad = function (success) { if (success) { i = 1; while (i < 11) { _root["pl" + i].text = rec_lv["name" + i]; _root["sc" + i].text = rec_lv["score" + i]; i++; } } else { gotoAndStop (6); } }; gotoAndStop (8); }; swoosh = function () { if ((frame % 10) == 0) { _root.attachMovie("bar", "swoosh" + is, -10000 + is, {_x:random(200) - 10, _y:-100, _alpha:random(10) + 10, _rotation:90}); _root["swoosh" + is].onEnterFrame = function () { this._y = this._y + 10; if (this._y > 500) { this.removeMovieClip(); } }; if (is > 50) { is = 0; } else { is++; } } }; powerup = function () { var rand = (random(5) + 1); _root.attachMovie("pup" + rand, "pup", 15, {_x:random(100) + 50, _y:-50}); _root.pup.onEnterFrame = function () { this._y = this._y + 3; if (this.hitTest(_root.ship)) { _root.laser = rand; this._y = 1000; _root.pp.start(); } }; };
Frame 8
stop();
Symbol 31 MovieClip [enemy] Frame 1
stop();
Symbol 31 MovieClip [enemy] Frame 15
_root.xx.start();
Symbol 31 MovieClip [enemy] Frame 19
_y = 500;
Symbol 50 MovieClip Frame 20
stop();
Symbol 51 MovieClip [ship] Frame 1
stop();
Symbol 51 MovieClip [ship] Frame 2
stop();
Symbol 59 Button
on (release) { getURL ("http://www.newgrounds.com", "blank"); }
Symbol 60 MovieClip Frame 1
_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded != 100) { bar._xscale = PercentLoaded; } else { gotoAndStop ("loaded"); }
Symbol 60 MovieClip Frame 2
gotoAndPlay (1);
Symbol 60 MovieClip Frame 3
_root.play();
Symbol 70 Button
on (release) { getURL ("http://www.armorgames.com", "blank"); }
Symbol 71 MovieClip Frame 217
_root.play();
Symbol 71 MovieClip Frame 234
_root.play();
Instance of Symbol 76 MovieClip in Symbol 82 MovieClip Frame 41
on (release) { getURL ("http://www.daretogame.com/dd"); }
Instance of Symbol 76 MovieClip in Symbol 82 MovieClip Frame 124
on (release) { getURL ("http://www.daretogame.com/dd/index2.htm"); }
Symbol 82 MovieClip Frame 139
_root.play(); stop();
Symbol 89 Button
on (release) { bot_id = 40; getURL ("http://bot.armorstudios.com/armorgames.php?bid=" + bot_id, "_blank"); }
Symbol 92 Button
on (release) { getURL ("http://www.daretogame.com", "_blank"); }
Symbol 96 Button
on (release) { nextFrame(); }
Symbol 131 Button
on (release) { _root.hiscore(); gotoAndPlay (8); }
Symbol 133 Button
on (release) { gotoAndStop (6); }

Library Items

Symbol 1 Sound [las1]
Symbol 2 Sound [specsound]
Symbol 3 Sound [las4]
Symbol 4 Sound [las3]
Symbol 5 Sound [las5]
Symbol 6 Sound [explo]
Symbol 7 GraphicUsed by:11 34
Symbol 8 GraphicUsed by:9
Symbol 9 MovieClipUses:8Used by:10  Timeline
Symbol 10 MovieClipUses:9Used by:11 15 17 20 23
Symbol 11 MovieClip [pup1]Uses:7 10
Symbol 12 GraphicUsed by:13
Symbol 13 MovieClipUses:12Used by:14 16  Timeline
Symbol 14 MovieClipUses:13Used by:15 33  Timeline
Symbol 15 MovieClip [pup2]Uses:10 14
Symbol 16 MovieClipUses:13Used by:17 36  Timeline
Symbol 17 MovieClip [pup3]Uses:10 16
Symbol 18 GraphicUsed by:19  Timeline
Symbol 19 MovieClipUses:18Used by:20 32  Timeline
Symbol 20 MovieClip [pup4]Uses:10 19
Symbol 21 GraphicUsed by:22
Symbol 22 MovieClipUses:21Used by:23 37  Timeline
Symbol 23 MovieClip [pup5]Uses:10 22
Symbol 24 BitmapUsed by:25
Symbol 25 GraphicUses:24Used by:26 31  Timeline
Symbol 26 MovieClipUses:25Used by:31
Symbol 27 GraphicUsed by:28
Symbol 28 MovieClipUses:27Used by:31  Timeline
Symbol 29 GraphicUsed by:30 52 71
Symbol 30 MovieClip [cube]Uses:29Used by:31  Timeline
Symbol 31 MovieClip [enemy]Uses:26 28 30 25Used by:Timeline
Symbol 32 MovieClip [laser_4]Uses:19Used by:Timeline
Symbol 33 MovieClip [laser_2]Uses:14Used by:Timeline
Symbol 34 MovieClipUses:7Used by:35  Timeline
Symbol 35 MovieClip [laser_1]Uses:34Used by:Timeline
Symbol 36 MovieClip [laser_3]Uses:16Used by:Timeline
Symbol 37 MovieClip [laser_5]Uses:22Used by:Timeline
Symbol 38 BitmapUsed by:39 40 42 44 46 48
Symbol 39 GraphicUses:38Used by:51  Timeline
Symbol 40 GraphicUses:38Used by:41
Symbol 41 MovieClipUses:40Used by:50  Timeline
Symbol 42 GraphicUses:38Used by:43
Symbol 43 MovieClipUses:42Used by:50  Timeline
Symbol 44 GraphicUses:38Used by:45
Symbol 45 MovieClipUses:44Used by:50  Timeline
Symbol 46 GraphicUses:38Used by:47
Symbol 47 MovieClipUses:46Used by:50  Timeline
Symbol 48 GraphicUses:38Used by:49
Symbol 49 MovieClipUses:48Used by:50  Timeline
Symbol 50 MovieClipUses:41 43 45 47 49Used by:51  Timeline
Symbol 51 MovieClip [ship]Uses:39 50Used by:Timeline
Symbol 52 MovieClipUses:29Used by:53  Timeline
Symbol 53 MovieClip [pixel]Uses:52Used by:Timeline
Symbol 54 GraphicUsed by:55 56 70 131
Symbol 55 MovieClip [bar]Uses:54Used by:Timeline
Symbol 56 MovieClipUses:54Used by:60
Symbol 57 FontUsed by:58 63
Symbol 58 EditableTextUses:57Used by:60
Symbol 59 ButtonUsed by:60
Symbol 60 MovieClipUses:56 58 59Used by:Timeline
Symbol 61 GraphicUsed by:62
Symbol 62 MovieClipUses:61Used by:71  Timeline
Symbol 63 EditableTextUses:57Used by:Timeline
Symbol 64 GraphicUsed by:65
Symbol 65 MovieClipUses:64Used by:71  Timeline
Symbol 66 GraphicUsed by:67
Symbol 67 MovieClipUses:66Used by:71  Timeline
Symbol 68 GraphicUsed by:69
Symbol 69 MovieClipUses:68Used by:71  Timeline
Symbol 70 ButtonUses:54Used by:71
Symbol 71 MovieClipUses:29 69 70 62 65 67 SS1Used by:Timeline
Symbol 72 GraphicUsed by:73
Symbol 73 MovieClipUses:72Used by:82  Timeline
Symbol 74 GraphicUsed by:75
Symbol 75 MovieClipUses:74Used by:76  Timeline
Symbol 76 MovieClipUses:75Used by:82  Timeline
Symbol 77 GraphicUsed by:78
Symbol 78 MovieClipUses:77Used by:82  Timeline
Symbol 79 GraphicUsed by:80
Symbol 80 MovieClipUses:79Used by:82
Symbol 81 SoundUsed by:82
Symbol 82 MovieClipUses:80 73 78 81 76Used by:Timeline
Symbol 83 Sound [music]Used by:Timeline
Symbol 84 BitmapUsed by:85
Symbol 85 GraphicUses:84Used by:Timeline
Symbol 86 GraphicUsed by:89
Symbol 87 FontUsed by:88 93 101 102 103 104 126 127 128 129 130 132 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
Symbol 88 EditableTextUses:87Used by:89
Symbol 89 ButtonUses:86 88Used by:Timeline
Symbol 90 BitmapUsed by:91
Symbol 91 GraphicUses:90Used by:92
Symbol 92 ButtonUses:91Used by:Timeline
Symbol 93 EditableTextUses:87Used by:Timeline
Symbol 94 BitmapUsed by:95
Symbol 95 GraphicUses:94Used by:96 133
Symbol 96 ButtonUses:95Used by:Timeline
Symbol 97 GraphicUsed by:100
Symbol 98 GraphicUsed by:99
Symbol 99 MovieClipUses:98Used by:100
Symbol 100 MovieClipUses:97 99Used by:Timeline
Symbol 101 EditableTextUses:87Used by:Timeline
Symbol 102 EditableTextUses:87Used by:Timeline
Symbol 103 EditableTextUses:87Used by:Timeline
Symbol 104 EditableTextUses:87Used by:Timeline
Symbol 105 FontUsed by:106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
Symbol 106 EditableTextUses:105Used by:Timeline
Symbol 107 EditableTextUses:105Used by:Timeline
Symbol 108 EditableTextUses:105Used by:Timeline
Symbol 109 EditableTextUses:105Used by:Timeline
Symbol 110 EditableTextUses:105Used by:Timeline
Symbol 111 EditableTextUses:105Used by:Timeline
Symbol 112 EditableTextUses:105Used by:Timeline
Symbol 113 EditableTextUses:105Used by:Timeline
Symbol 114 EditableTextUses:105Used by:Timeline
Symbol 115 EditableTextUses:105Used by:Timeline
Symbol 116 EditableTextUses:105Used by:Timeline
Symbol 117 EditableTextUses:105Used by:Timeline
Symbol 118 EditableTextUses:105Used by:Timeline
Symbol 119 EditableTextUses:105Used by:Timeline
Symbol 120 EditableTextUses:105Used by:Timeline
Symbol 121 EditableTextUses:105Used by:Timeline
Symbol 122 EditableTextUses:105Used by:Timeline
Symbol 123 EditableTextUses:105Used by:Timeline
Symbol 124 EditableTextUses:105Used by:Timeline
Symbol 125 EditableTextUses:105Used by:Timeline
Symbol 126 EditableTextUses:87Used by:Timeline
Symbol 127 EditableTextUses:87Used by:Timeline
Symbol 128 EditableTextUses:87Used by:Timeline
Symbol 129 EditableTextUses:87Used by:Timeline
Symbol 130 EditableTextUses:87Used by:Timeline
Symbol 131 ButtonUses:54Used by:Timeline
Symbol 132 EditableTextUses:87Used by:Timeline
Symbol 133 ButtonUses:95Used by:Timeline
Symbol 134 EditableTextUses:87Used by:Timeline
Symbol 135 EditableTextUses:87Used by:Timeline
Symbol 136 EditableTextUses:87Used by:Timeline
Symbol 137 EditableTextUses:87Used by:Timeline
Symbol 138 EditableTextUses:87Used by:Timeline
Symbol 139 EditableTextUses:87Used by:Timeline
Symbol 140 EditableTextUses:87Used by:Timeline
Symbol 141 EditableTextUses:87Used by:Timeline
Symbol 142 EditableTextUses:87Used by:Timeline
Symbol 143 EditableTextUses:87Used by:Timeline
Symbol 144 EditableTextUses:87Used by:Timeline
Symbol 145 EditableTextUses:87Used by:Timeline
Symbol 146 EditableTextUses:87Used by:Timeline
Symbol 147 EditableTextUses:87Used by:Timeline
Symbol 148 EditableTextUses:87Used by:Timeline
Symbol 149 EditableTextUses:87Used by:Timeline
Symbol 150 EditableTextUses:87Used by:Timeline
Symbol 151 EditableTextUses:87Used by:Timeline
Symbol 152 EditableTextUses:87Used by:Timeline
Symbol 153 EditableTextUses:87Used by:Timeline
Streaming Sound 1Used by:Symbol 71 MovieClip

Instance Names

"ag"Frame 3Symbol 71 MovieClip
"fatiguebar"Frame 6Symbol 55 MovieClip [bar]
"laserbar"Frame 6Symbol 55 MovieClip [bar]
"ship"Frame 6Symbol 51 MovieClip [ship]
"pl1"Frame 6Symbol 106 EditableText
"pl2"Frame 6Symbol 107 EditableText
"pl3"Frame 6Symbol 108 EditableText
"pl4"Frame 6Symbol 109 EditableText
"pl5"Frame 6Symbol 110 EditableText
"pl6"Frame 6Symbol 111 EditableText
"pl7"Frame 6Symbol 112 EditableText
"pl8"Frame 6Symbol 113 EditableText
"pl9"Frame 6Symbol 114 EditableText
"pl10"Frame 6Symbol 115 EditableText
"sc1"Frame 6Symbol 116 EditableText
"sc2"Frame 6Symbol 117 EditableText
"sc3"Frame 6Symbol 118 EditableText
"sc4"Frame 6Symbol 119 EditableText
"sc5"Frame 6Symbol 120 EditableText
"sc6"Frame 6Symbol 121 EditableText
"sc7"Frame 6Symbol 122 EditableText
"sc8"Frame 6Symbol 123 EditableText
"sc9"Frame 6Symbol 124 EditableText
"sc10"Frame 6Symbol 125 EditableText
"pl1"Frame 8Symbol 134 EditableText
"pl2"Frame 8Symbol 135 EditableText
"pl3"Frame 8Symbol 136 EditableText
"pl4"Frame 8Symbol 137 EditableText
"pl5"Frame 8Symbol 138 EditableText
"pl6"Frame 8Symbol 139 EditableText
"pl7"Frame 8Symbol 140 EditableText
"pl8"Frame 8Symbol 141 EditableText
"pl9"Frame 8Symbol 142 EditableText
"pl10"Frame 8Symbol 143 EditableText
"sc1"Frame 8Symbol 144 EditableText
"sc2"Frame 8Symbol 145 EditableText
"sc3"Frame 8Symbol 146 EditableText
"sc4"Frame 8Symbol 147 EditableText
"sc5"Frame 8Symbol 148 EditableText
"sc6"Frame 8Symbol 149 EditableText
"sc7"Frame 8Symbol 150 EditableText
"sc8"Frame 8Symbol 151 EditableText
"sc9"Frame 8Symbol 152 EditableText
"sc10"Frame 8Symbol 153 EditableText
"hit"Symbol 31 MovieClip [enemy] Frame 1Symbol 28 MovieClip
"bar"Symbol 60 MovieClip Frame 1Symbol 56 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access network only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 1 as "las1"
ExportAssets (56)Timeline Frame 1Symbol 2 as "specsound"
ExportAssets (56)Timeline Frame 1Symbol 3 as "las4"
ExportAssets (56)Timeline Frame 1Symbol 4 as "las3"
ExportAssets (56)Timeline Frame 1Symbol 5 as "las5"
ExportAssets (56)Timeline Frame 1Symbol 6 as "explo"
ExportAssets (56)Timeline Frame 1Symbol 11 as "pup1"
ExportAssets (56)Timeline Frame 1Symbol 15 as "pup2"
ExportAssets (56)Timeline Frame 1Symbol 17 as "pup3"
ExportAssets (56)Timeline Frame 1Symbol 20 as "pup4"
ExportAssets (56)Timeline Frame 1Symbol 23 as "pup5"
ExportAssets (56)Timeline Frame 1Symbol 30 as "cube"
ExportAssets (56)Timeline Frame 1Symbol 31 as "enemy"
ExportAssets (56)Timeline Frame 1Symbol 32 as "laser_4"
ExportAssets (56)Timeline Frame 1Symbol 33 as "laser_2"
ExportAssets (56)Timeline Frame 1Symbol 35 as "laser_1"
ExportAssets (56)Timeline Frame 1Symbol 36 as "laser_3"
ExportAssets (56)Timeline Frame 1Symbol 37 as "laser_5"
ExportAssets (56)Timeline Frame 1Symbol 51 as "ship"
ExportAssets (56)Timeline Frame 1Symbol 53 as "pixel"
ExportAssets (56)Timeline Frame 1Symbol 55 as "bar"
ExportAssets (56)Timeline Frame 2Symbol 83 as "music"

Labels

"loaded"Symbol 60 MovieClip Frame 3

Dynamic Text Variables

levelSymbol 101 EditableText"1"
scoreSymbol 104 EditableText"0"
finalscoreSymbol 126 EditableText"0"
yournameSymbol 129 EditableText"none"




http://swfchan.com/14/68294/info.shtml
Created: 11/4 -2019 02:43:55 Last modified: 11/4 -2019 02:43:55 Server time: 05/05 -2024 14:17:10