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

swfchan turned sixteen years old the day before yesterday! (5may2024)

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

Star Fighter Duel.swf

This is the info page for
Flash #28925

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


Text
R

Loading...

R

Play

Clash of the Starfighters

Extra

Controls

Start

space

Brake

down

S

back

Fire

Turn right

Turn left

Thrust

Shift

right

left

up

D

A

W

Player 2

Player 1

Volume:

Two player:

Mini-ships:

No powerups:

backgrounds:

quality:

music:

LIFE

Blue  Player

WINS

Red Player

ActionScript [AS1/AS2]

Frame 1
percent = Math.floor((getBytesLoaded() / getBytesTotal()) * 100); percenttext.text = percent + "%"; loaderbar._xscale = (getBytesLoaded() / getBytesTotal()) * 100; spinner._rotation = spinner._rotation + ((getBytesLoaded() / getBytesTotal()) * 100);
Instance of Symbol 13 MovieClip "loaderbar" in Frame 1
onClipEvent (enterFrame) { loaderbar._xscale = _root.bytesLoaded / _root.bytesTotal; }
Frame 2
if (percent == 100) { gotoAndPlay (3); } else { gotoAndPlay (1); }
Frame 13
stop();
Frame 16
var soundon = 1; var soundtext = "on"; var qualif = "high"; var nopower = 0; var noptext = "off"; var shrink = 0; var shrinktext = "off"; var trans = 0; var transtext = "off"; var TwoP = 0; var TwoPtext = "off"; var musvol = 100;
Frame 17
if (_root.soundon == 1) { menusong = new Sound(); menusong.attachSound("menusong"); menusong.setVolume(musvol); menusong.start(0, 100); } stop();
Instance of Symbol 98 MovieClip "volslide" in Frame 19
onClipEvent (load) { _parent.volslide.volbar._x = -100 + (_root.musvol * 2); } onClipEvent (enterFrame) { _root.musvol = (_parent.volslide.volbar._x / 2) + 50; _parent.menusong.setVolume(_root.musvol); }
Frame 20
if (_root.soundon == 1) { duelsong = new Sound(); duelsong.attachSound("duelsong"); duelsong.setVolume(musvol); duelsong.start(0, 100); } var redhealth = 20; var bluehealth = 20; if (_root.shrink == 1) { _root.blueship1._xscale = 50; _root.redship1._xscale = 50; _root.blueship1._yscale = 50; _root.redship1._yscale = 50; }
Instance of Symbol 130 MovieClip in Frame 20
onClipEvent (enterFrame) { this._xscale = 5 * _root.bluehealth; if (_root.bluehealth <= 0) { this._alpha = 0; _root.bluehealth = 60; stopAllSounds(); _root.blueship.gotoAndPlay(4); } }
Instance of Symbol 133 MovieClip in Frame 20
onClipEvent (enterFrame) { this._xscale = 5 * _root.redhealth; if (_root.redhealth <= 0) { this._alpha = 0; _root.redhealth = 60; stopAllSounds(); _root.redship.gotoAndPlay(4); } }
Frame 33
stop(); var bluedeltay = 0; var bluetext = "+speed"; var redtext = "+speed"; _root.bluetextbox._alpha = 0; _root.redtextbox._alpha = 0; var bluespeed = 8; var redspeed = 8; var reddeltay = 0; var bluedeltax = 0; var reddeltax = 0; var bluefirst = 0; var redfirst = 0; var reddeath = 0; var bluedeath = 0; var shotlimred = 4; var shotlimblue = 4; var powerchance = 75; if (_root.shrink == 1) { _root.blueship._xscale = 50; _root.redship._xscale = 50; _root.blueship._yscale = 50; _root.redship._yscale = 50; _root.blueshot._xscale = 50; _root.redshot._xscale = 50; _root.blueshot._yscale = 50; _root.redshot._yscale = 50; var redspeed = 6; var bluespeed = 6; }
Instance of Symbol 187 MovieClip "bluetextbox" in Frame 33
onClipEvent (enterFrame) { if (_root.bluetextbox._alpha >= 0) { _root.bluetextbox._alpha = _root.bluetextbox._alpha - 3; } }
Instance of Symbol 189 MovieClip "redtextbox" in Frame 33
onClipEvent (enterFrame) { if (_root.redtextbox._alpha > 0) { _root.redtextbox._alpha = _root.redtextbox._alpha - 3; } }
Instance of Symbol 174 MovieClip "redship" in Frame 33
onClipEvent (load) { shottime = 4; } onClipEvent (enterFrame) { redrotate = this._rotation; if (_root.reddeltax >= _root.redspeed) { _root.reddeltax = _root.redspeed; } if (_root.reddeltax <= (-_root.redspeed)) { _root.reddeltax = -_root.redspeed; } if (_root.reddeltay >= _root.redspeed) { _root.reddeltay = _root.redspeed; } if (_root.reddeltay <= (-_root.redspeed)) { _root.reddeltay = -_root.redspeed; } if (_root.reddeath == 0) { if (Key.isDown(83)) { _root.reddeltay = _root.reddeltay / 1.1; _root.reddeltax = _root.reddeltax / 1.1; if (Math.round(_root.reddeltax) == 0) { _root.reddeltax = 0; } if (Math.round(_root.reddeltay) == 0) { _root.reddeltay = 0; } tellTarget (_root.redship) { gotoAndStop (3); }; } } if (_root.reddeath == 0) { if (Key.isDown(87)) { redradian = (_root.redship._rotation * Math.PI) / 180; _root.reddeltay = _root.reddeltay - (Math.cos(redradian) / 2); _root.reddeltax = _root.reddeltax + (Math.sin(redradian) / 2); _root.redship._y = _root.redship._y + _root.reddeltay; _root.redship._x = _root.redship._x + _root.reddeltax; tellTarget (_root.redship) { gotoAndStop (2); }; } else { tellTarget (_root.redship) { gotoAndStop (1); _root.redship._y = _root.redship._y + _root.reddeltay; _root.redship._x = _root.redship._x + _root.reddeltax; }; } } if (_root.reddeath == 0) { if (Key.isDown(65)) { _root.redship._rotation = _root.redship._rotation - 8; } } if (_root.reddeath == 0) { if (Key.isDown(68)) { _root.redship._rotation = _root.redship._rotation + 8; } } if (_root.redship._x < -15) { _root.redship._x = 615; } if (_root.redship._x > 615) { _root.redship._x = -15; } if (_root.redship._y > 615) { _root.redship._y = -15; } if (_root.redship._y < -15) { _root.redship._y = 615; } if (_root.reddeath == 0) { if (Key.isDown(16)) { if (shottime == _root.shotlimred) { _root.redshot.duplicateMovieClip("redshot" + _root.redfirst, _root.redfirst); _root.redfirst = _root.redfirst + 1; if (_root.redfirst >= 1000) { _root.redfirst = 1; } shotsound = new Sound(); shotsound.attachSound("shotsound"); shotsound.start(); shottime = 1; } } } shottime = shottime + 1; if (shottime >= _root.shotlimred) { shottime = _root.shotlimred; } if (this.hitTest(_root.blueship._x, _root.blueship._y, false)) { _root.bluehealth = _root.bluehealth - 2; _root.reddeltay = _root.reddeltay * -1; _root.reddeltax = _root.reddeltax * -1; _root.redship._y = _root.redship._y + _root.reddeltay; _root.redship._x = _root.redship._x + _root.reddeltax; } }
Instance of Symbol 178 MovieClip "blueship" in Frame 33
onClipEvent (load) { shottime = 4; } onClipEvent (enterFrame) { if (_root.TwoP == 1) { if (_root.bluedeltax >= _root.bluespeed) { _root.bluedeltax = _root.bluespeed; } if (_root.bluedeltax <= (-_root.bluespeed)) { _root.bluedeltax = -_root.bluespeed; } if (_root.bluedeltay >= _root.bluespeed) { _root.bluedeltay = _root.bluespeed; } if (_root.bluedeltay <= (-_root.bluespeed)) { _root.bluedeltay = -_root.bluespeed; } if (_root.bluedeath == 0) { if (Key.isDown(40)) { _root.bluedeltay = _root.bluedeltay / 1.1; _root.bluedeltax = _root.bluedeltax / 1.1; if (Math.round(_root.bluedeltax) == 0) { _root.bluedeltax = 0; } if (Math.round(_root.bluedeltay) == 0) { _root.bluedeltay = 0; } tellTarget (_root.blueship) { gotoAndStop (3); }; } } if (_root.bluedeath == 0) { if (Key.isDown(38)) { blueradian = (_root.blueship._rotation * Math.PI) / 180; _root.bluedeltay = _root.bluedeltay - (Math.cos(blueradian) / 2); _root.bluedeltax = _root.bluedeltax + (Math.sin(blueradian) / 2); _root.blueship._y = _root.blueship._y + _root.bluedeltay; _root.blueship._x = _root.blueship._x + _root.bluedeltax; tellTarget (this) { gotoAndStop (2); }; } else { tellTarget (this) { gotoAndStop (1); _root.blueship._y = _root.blueship._y + _root.bluedeltay; _root.blueship._x = _root.blueship._x + _root.bluedeltax; }; } } if (_root.bluedeath == 0) { if (Key.isDown(37)) { _root.blueship._rotation = _root.blueship._rotation - 8; } } if (_root.bluedeath == 0) { if (Key.isDown(39)) { _root.blueship._rotation = _root.blueship._rotation + 8; } } if (((_root.bluedeath == 0) && (Key.isDown(32))) && (shottime == _root.shotlimblue)) { _root.blueshot.duplicateMovieClip("blueshot" + _root.bluefirst, _root.bluefirst); _root.bluefirst = _root.bluefirst + 1; if (_root.bluefirst >= 1000) { _root.bluefirst = 1; } shotsound = new Sound(); shotsound.attachSound("shotsound"); shotsound.start(); shottime = 1; } shottime = shottime + 1; if (shottime >= _root.shotlimblue) { shottime = _root.shotlimblue; } } if ((_root.TwoP == 0) && (_root.bluedeath == 0)) { if (_root.bluedeltax >= _root.bluespeed) { _root.bluedeltax = _root.bluespeed; } if (_root.bluedeltax <= (-_root.bluespeed)) { _root.bluedeltax = -_root.bluespeed; } if (_root.bluedeltay >= _root.bluespeed) { _root.bluedeltay = _root.bluespeed; } if (_root.bluedeltay <= (-_root.bluespeed)) { _root.bluedeltay = -_root.bluespeed; } Rise = _root.redship._y - this._y; Run = _root.redship._x - this._x; Dist = Math.sqrt((Rise * Rise) + (Run * Run)); AngleRad = Math.atan(Rise / Run); AngleDeg = Math.abs(90 + (AngleRad * 57.2957795130823)); if (Run < 0) { AngleDeg = -(180 - AngleDeg); } AngleDif = this._rotation - AngleDeg; if (_root.bluedeath == 0) { if ((this._rotation < AngleDeg) && (AngleDif > -180)) { this._rotation = this._rotation + 8; } if ((this._rotation > AngleDeg) && (AngleDif < 180)) { this._rotation = this._rotation - 8; } if (AngleDif < -180) { this._rotation = this._rotation - 8; } if (AngleDif > 180) { this._rotation = this._rotation + 8; } } if (_root.bluedeath == 0) { if (Math.abs(AngleDif) < 30) { blueradian = (_root.blueship._rotation * Math.PI) / 180; _root.bluedeltay = _root.bluedeltay - (Math.cos(blueradian) / 2); _root.bluedeltax = _root.bluedeltax + (Math.sin(blueradian) / 2); _root.blueship._y = _root.blueship._y + _root.bluedeltay; _root.blueship._x = _root.blueship._x + _root.bluedeltax; tellTarget (this) { gotoAndStop (2); }; } else { tellTarget (this) { gotoAndStop (1); _root.blueship._y = _root.blueship._y + _root.bluedeltay; _root.blueship._x = _root.blueship._x + _root.bluedeltax; }; } } if ((Math.abs(AngleDif) > 90) && (_root.bluedeath == 0)) { _root.bluedeltay = _root.bluedeltay / 1.1; _root.bluedeltax = _root.bluedeltax / 1.1; if (Math.round(_root.bluedeltax) == 0) { _root.bluedeltax = 0; } if (Math.round(_root.bluedeltay) == 0) { _root.bluedeltay = 0; } tellTarget (_root.blueship) { gotoAndStop (3); }; } if (((_root.bluedeath == 0) && (Math.abs(AngleDif) < 15)) && (shottime == _root.shotlimblue)) { _root.blueshot.duplicateMovieClip("blueshot" + _root.bluefirst, _root.bluefirst); _root.bluefirst = _root.bluefirst + 1; if (_root.bluefirst >= 1000) { _root.bluefirst = 1; } shotsound = new Sound(); shotsound.attachSound("shotsound"); shotsound.start(); shottime = 1; } shottime = shottime + 1; if (shottime >= _root.shotlimblue) { shottime = _root.shotlimblue; } } if (_root.blueship._x < -15) { _root.blueship._x = 615; } if (_root.blueship._x > 615) { _root.blueship._x = -15; } if (_root.blueship._y > 615) { _root.blueship._y = -15; } if (_root.blueship._y < -15) { _root.blueship._y = 615; } if (this.hitTest(_root.redship._x, _root.redship._y, false)) { _root.redhealth = _root.redhealth - 2; _root.bluedeltay = _root.bluedeltay * -1; _root.bluedeltax = _root.bluedeltax * -1; _root.blueship._y = _root.blueship._y + _root.bluedeltay; _root.blueship._x = _root.blueship._x + _root.bluedeltax; } }
Instance of Symbol 202 MovieClip in Frame 33
onClipEvent (enterFrame) { if (_root.nopower == 0) { chance = Math.round(Math.random() * 600); } if (chance == _root.powerchance) { this._x = Math.random() * 600; this._y = Math.random() * 600; t = 1; } if (_root.blueship.hitTest(this._x, this._y, false)) { this._x = -50; this._y = -50; _root.bluehealth = _root.bluehealth + 5; if (_root.bluehealth > 20) { _root.bluehealth = 20; pickup = new Sound(); pickup.attachSound("pickup"); pickup.start(); _root.bluetext = "+health"; _root.bluetextbox._alpha = 100; } } if (_root.redship.hitTest(this._x, this._y, false)) { this._x = -50; this._y = -50; _root.redhealth = _root.redhealth + 5; if (_root.redhealth > 20) { _root.redhealth = 20; pickup = new Sound(); pickup.attachSound("pickup"); pickup.start(); _root.redtext = "+health"; _root.redtextbox._alpha = 100; } } t = t + 1; if (t == 150) { this._x = -50; this._y = -50; } }
Instance of Symbol 215 MovieClip in Frame 33
onClipEvent (enterFrame) { if (_root.nopower == 0) { chance = Math.round(Math.random() * 500); } if (chance == _root.powerchance) { this._x = Math.random() * 600; this._y = Math.random() * 600; t = 1; } if (_root.blueship.hitTest(this._x, this._y, false)) { this._x = -50; this._y = -50; if (_root.shotlimblue != 2) { _root.shotlimblue = _root.shotlimblue - 1; pickup = new Sound(); pickup.attachSound("pickup"); pickup.start(); _root.bluetext = "+weapons"; _root.bluetextbox._alpha = 100; } } if (_root.redship.hitTest(this._x, this._y, false)) { this._x = -50; this._y = -50; if (_root.shotlimred != 2) { _root.shotlimred = _root.shotlimred - 1; pickup = new Sound(); pickup.attachSound("pickup"); pickup.start(); _root.redtext = "+weapons"; _root.redtextbox._alpha = 100; } } t = t + 1; if (t == 150) { this._x = -50; this._y = -50; } }
Instance of Symbol 228 MovieClip in Frame 33
onClipEvent (enterFrame) { if (_root.nopower == 0) { chance = Math.round(Math.random() * 500); } if (chance == _root.powerchance) { this._x = Math.random() * 600; this._y = Math.random() * 600; t = 1; } if (_root.blueship.hitTest(this._x, this._y, false)) { this._x = -50; this._y = -50; _root.bluespeed = _root.bluespeed + 4; pickup = new Sound(); pickup.attachSound("pickup"); pickup.start(); _root.bluetext = "+speed"; _root.bluetextbox._alpha = 100; } if (_root.redship.hitTest(this._x, this._y, false)) { this._x = -50; this._y = -50; _root.redspeed = _root.redspeed + 4; pickup = new Sound(); pickup.attachSound("pickup"); pickup.start(); _root.redtext = "+speed"; _root.redtextbox._alpha = 100; } t = t + 1; if (t == 150) { this._x = -50; this._y = -50; } }
Instance of Symbol 231 MovieClip "redshot" in Frame 33
onClipEvent (load) { if (_root.redfirst != 0) { this._rotation = _root.redship._rotation; shotradian = (this._rotation * Math.PI) / 180; this._x = _root.redship._x; this._y = _root.redship._y; } t = 0; } onClipEvent (enterFrame) { t = t + 1; if (t == 35) { this.removeMovieClip(); } this._y = this._y - (Math.cos(shotradian) * 12); this._x = this._x + (Math.sin(shotradian) * 12); if (this.hitTest(_root.blueship._x, _root.blueship._y, false) == true) { if (_root.bluedeath == 0) { _root.bluehealth = _root.bluehealth - 1; hitsound = new Sound(); hitsound.attachSound("hitsound"); hitsound.start(); this.removeMovieClip(); } } if (this._name != "redshot") { if (this._x < -15) { this._x = 615; } if (this._y < -15) { this._y = 615; } if (this._x > 615) { this._x = -15; } if (this._y > 615) { this._y = -15; } } }
Instance of Symbol 232 MovieClip "blueshot" in Frame 33
onClipEvent (load) { if (_root.bluefirst != 0) { this._rotation = _root.blueship._rotation; shotradian = (this._rotation * Math.PI) / 180; this._x = _root.blueship._x; this._y = _root.blueship._y; } t = 0; } onClipEvent (enterFrame) { t = t + 1; if (t == 35) { this.removeMovieClip(); } this._y = this._y - (Math.cos(shotradian) * 12); this._x = this._x + (Math.sin(shotradian) * 12); if (this.hitTest(_root.redship._x, _root.redship._y, false) == true) { if (_root.reddeath == 0) { _root.redhealth = _root.redhealth - 1; hitsound = new Sound(); hitsound.attachSound("hitsound"); hitsound.start(); this.removeMovieClip(); } } if (this._name != "blueshot") { if (this._x < -15) { this._x = 615; } if (this._y < -15) { this._y = 615; } if (this._x > 615) { this._x = -15; } if (this._y > 615) { this._y = -15; } } }
Frame 34
if (_root.soundon == 1) { victory = new Sound(); victory.attachSound("victory"); victory.start(); }
Frame 45
stop();
Frame 46
if (_root.soundon == 1) { victory = new Sound(); victory.attachSound("victory"); victory.start(); }
Frame 57
stop();
Symbol 27 Button
on (release) { gotoAndPlay (14); }
Symbol 35 Button
on (release) { gotoAndStop (19); }
Symbol 38 Button
on (release) { gotoAndStop (18); }
Symbol 40 Button
on (release) { stopAllSounds(); gotoAndPlay (20); }
Symbol 45 MovieClip Frame 3
gotoAndPlay (1);
Symbol 50 MovieClip Frame 3
gotoAndPlay (1);
Symbol 65 MovieClip Frame 1
stop();
Symbol 74 Button
on (release) { stopAllSounds(); gotoAndStop (17); }
Symbol 94 Button
on (release) { if (_root.TwoP == 0) { _root.TwoP = 2; _root.TwoPtext = "on"; } if (_root.TwoP == 1) { _root.TwoP = 0; _root.TwoPtext = "off"; } if (_root.TwoP == 2) { _root.TwoP = 1; } }
Symbol 96 Button
on (press) { startDrag (_parent.volslide.volbar, false, -100, 0, 100, 0); } on (release, dragOut) { stopDrag(); }
Symbol 102 Button
on (release) { if (_root.shrink == 0) { _root.shrink = 2; _root.shrinktext = "on"; } if (_root.shrink == 1) { _root.shrink = 0; _root.shrinktext = "off"; } if (_root.shrink == 2) { _root.shrink = 1; } }
Symbol 107 Button
on (release) { if (_root.nopower == 0) { _root.nopower = 2; _root.noptext = "on"; } if (_root.nopower == 1) { _root.nopower = 0; _root.noptext = "off"; } if (_root.nopower == 2) { _root.nopower = 1; } }
Symbol 111 Button
on (release) { _root.backg.gotoAndStop(6); }
Symbol 113 Button
on (release) { _root.backg.gotoAndStop(5); }
Symbol 115 Button
on (release) { _root.backg.gotoAndStop(4); }
Symbol 117 Button
on (release) { _root.backg.gotoAndStop(3); }
Symbol 119 Button
on (release) { _root.backg.gotoAndStop(2); }
Symbol 121 Button
on (release) { _root.backg.gotoAndStop(1); }
Symbol 123 Button
on (release) { toggleHighQuality(); if (_root.qualif == "high") { _root.qualif = "change"; } if (_root.qualif == "low") { _root.qualif = "high"; } if (_root.qualif == "change") { _root.qualif = "low"; } }
Symbol 128 Button
on (release) { if (_root.soundon == 0) { _root.soundon = 2; _root.soundtext = "on"; menusong = new Sound(); menusong.attachSound("menusong"); menusong.start(0, 100); } if (_root.soundon == 1) { _root.soundon = 0; _root.soundtext = "off"; stopAllSounds(); } if (_root.soundon == 2) { _root.soundon = 1; } }
Symbol 139 MovieClip Frame 3
gotoAndPlay (1);
Symbol 174 MovieClip Frame 1
stop();
Symbol 174 MovieClip Frame 4
_root.reddelatx = 0; _root.reddelaty = 0; _root.reddeath = 1; _root.redship._rotation = 180; _root.redship.play();
Symbol 174 MovieClip Frame 21
this.stop(); _root.gotoAndPlay(34);
Symbol 177 MovieClip Frame 3
gotoAndPlay (1);
Symbol 178 MovieClip Frame 1
stop();
Symbol 178 MovieClip Frame 4
_root.bluedelatx = 0; _root.bluedelaty = 0; _root.bluedeath = 1; _root.blueship._rotation = 180; _root.blueship.play;
Symbol 178 MovieClip Frame 21
this.stop(); tellTarget (_root) { gotoAndPlay (46); };
Symbol 238 Button
on (release) { gotoAndStop (17); }

Library Items

Symbol 1 Sound [shotsound]
Symbol 2 Sound [pickup]
Symbol 3 Sound [hitsound]
Symbol 4 Sound [death]Used by:174 178
Symbol 5 FontUsed by:6 15
Symbol 6 TextUses:5Used by:7
Symbol 7 MovieClipUses:6Used by:Timeline
Symbol 8 FontUsed by:9 10 66 69 70 80 81 82 83 84 85 86
Symbol 9 EditableTextUses:8Used by:Timeline
Symbol 10 TextUses:8Used by:Timeline
Symbol 11 GraphicUsed by:Timeline
Symbol 12 GraphicUsed by:13
Symbol 13 MovieClipUses:12Used by:Timeline
Symbol 14 GraphicUsed by:Timeline
Symbol 15 TextUses:5Used by:Timeline
Symbol 16 GraphicUsed by:17
Symbol 17 MovieClipUses:16Used by:Timeline
Symbol 18 GraphicUsed by:Timeline
Symbol 19 SoundUsed by:Timeline
Symbol 20 GraphicUsed by:27
Symbol 21 FontUsed by:22 34 37 39 75 91 99 100 101 104 108 109 122 124 125 126 127
Symbol 22 TextUses:21Used by:27
Symbol 23 GraphicUsed by:27 35 38 40
Symbol 24 GraphicUsed by:27 35 38 40
Symbol 25 SoundUsed by:27 35 38 40 74 94 102 107 123 128 238
Symbol 26 SoundUsed by:27 35 38 40 74 94 102 107 111 113 115 117 119 121 123 128 238
Symbol 27 ButtonUses:20 22 23 24 25 26Used by:Timeline
Symbol 28 GraphicUsed by:Timeline
Symbol 29 Sound [duelsong]Used by:Timeline
Symbol 30 FontUsed by:31
Symbol 31 TextUses:30Used by:Timeline
Symbol 32 GraphicUsed by:Timeline
Symbol 33 GraphicUsed by:35
Symbol 34 TextUses:21Used by:35
Symbol 35 ButtonUses:33 34 23 24 25 26Used by:Timeline
Symbol 36 GraphicUsed by:38 40
Symbol 37 TextUses:21Used by:38
Symbol 38 ButtonUses:36 37 23 24 25 26Used by:Timeline
Symbol 39 TextUses:21Used by:40
Symbol 40 ButtonUses:36 39 23 24 25 26Used by:Timeline
Symbol 41 BitmapUsed by:42 138
Symbol 42 GraphicUses:41Used by:45
Symbol 43 BitmapUsed by:44
Symbol 44 GraphicUses:43Used by:45
Symbol 45 MovieClipUses:42 44Used by:174  Timeline
Symbol 46 BitmapUsed by:47
Symbol 47 GraphicUses:46Used by:50 177
Symbol 48 BitmapUsed by:49
Symbol 49 GraphicUses:48Used by:50
Symbol 50 MovieClipUses:47 49Used by:178  Timeline
Symbol 51 GraphicUsed by:Timeline
Symbol 52 Sound [menusong]Used by:Timeline
Symbol 53 BitmapUsed by:54 120
Symbol 54 GraphicUses:53Used by:65
Symbol 55 BitmapUsed by:56 118
Symbol 56 GraphicUses:55Used by:65
Symbol 57 BitmapUsed by:58 116
Symbol 58 GraphicUses:57Used by:65
Symbol 59 BitmapUsed by:60 114
Symbol 60 GraphicUses:59Used by:65
Symbol 61 BitmapUsed by:62 112
Symbol 62 GraphicUses:61Used by:65
Symbol 63 BitmapUsed by:64 110
Symbol 64 GraphicUses:63Used by:65
Symbol 65 MovieClipUses:54 56 58 60 62 64Used by:Timeline
Symbol 66 TextUses:8Used by:Timeline
Symbol 67 FontUsed by:68 76 77 78 79 87 88
Symbol 68 TextUses:67Used by:Timeline
Symbol 69 TextUses:8Used by:Timeline
Symbol 70 TextUses:8Used by:Timeline
Symbol 71 GraphicUsed by:74 123 128 238
Symbol 72 GraphicUsed by:74 123 128 238
Symbol 73 GraphicUsed by:74 123 128 238
Symbol 74 ButtonUses:71 72 73 25 26Used by:Timeline
Symbol 75 TextUses:21Used by:Timeline
Symbol 76 TextUses:67Used by:Timeline
Symbol 77 TextUses:67Used by:Timeline
Symbol 78 TextUses:67Used by:Timeline
Symbol 79 TextUses:67Used by:Timeline
Symbol 80 TextUses:8Used by:Timeline
Symbol 81 TextUses:8Used by:Timeline
Symbol 82 TextUses:8Used by:Timeline
Symbol 83 TextUses:8Used by:Timeline
Symbol 84 TextUses:8Used by:Timeline
Symbol 85 TextUses:8Used by:Timeline
Symbol 86 TextUses:8Used by:Timeline
Symbol 87 TextUses:67Used by:Timeline
Symbol 88 TextUses:67Used by:Timeline
Symbol 89 GraphicUsed by:Timeline
Symbol 90 GraphicUsed by:94 102
Symbol 91 EditableTextUses:21Used by:94
Symbol 92 GraphicUsed by:94 102
Symbol 93 GraphicUsed by:94 102
Symbol 94 ButtonUses:90 91 92 93 25 26Used by:Timeline
Symbol 95 GraphicUsed by:96
Symbol 96 ButtonUses:95Used by:98
Symbol 97 GraphicUsed by:98
Symbol 98 MovieClipUses:96 97Used by:Timeline
Symbol 99 TextUses:21Used by:Timeline
Symbol 100 TextUses:21Used by:Timeline
Symbol 101 EditableTextUses:21Used by:102
Symbol 102 ButtonUses:90 101 92 93 25 26Used by:Timeline
Symbol 103 GraphicUsed by:107
Symbol 104 EditableTextUses:21Used by:107
Symbol 105 GraphicUsed by:107
Symbol 106 GraphicUsed by:107
Symbol 107 ButtonUses:103 104 105 106 25 26Used by:Timeline
Symbol 108 TextUses:21Used by:Timeline
Symbol 109 TextUses:21Used by:Timeline
Symbol 110 GraphicUses:63Used by:111
Symbol 111 ButtonUses:110 26Used by:Timeline
Symbol 112 GraphicUses:61Used by:113
Symbol 113 ButtonUses:112 26Used by:Timeline
Symbol 114 GraphicUses:59Used by:115
Symbol 115 ButtonUses:114 26Used by:Timeline
Symbol 116 GraphicUses:57Used by:117
Symbol 117 ButtonUses:116 26Used by:Timeline
Symbol 118 GraphicUses:55Used by:119
Symbol 119 ButtonUses:118 26Used by:Timeline
Symbol 120 GraphicUses:53Used by:121
Symbol 121 ButtonUses:120 26Used by:Timeline
Symbol 122 TextUses:21Used by:Timeline
Symbol 123 ButtonUses:71 72 73 25 26Used by:Timeline
Symbol 124 EditableTextUses:21Used by:Timeline
Symbol 125 TextUses:21Used by:Timeline
Symbol 126 TextUses:21Used by:Timeline
Symbol 127 EditableTextUses:21Used by:Timeline
Symbol 128 ButtonUses:71 72 73 25 26Used by:Timeline
Symbol 129 GraphicUsed by:130 133
Symbol 130 MovieClipUses:129Used by:Timeline
Symbol 131 FontUsed by:132
Symbol 132 TextUses:131Used by:Timeline
Symbol 133 MovieClipUses:129Used by:Timeline
Symbol 134 GraphicUsed by:Timeline
Symbol 135 GraphicUsed by:Timeline
Symbol 136 BitmapUsed by:137
Symbol 137 GraphicUses:136Used by:139 174
Symbol 138 GraphicUses:41Used by:139
Symbol 139 MovieClipUses:137 138Used by:174  Timeline
Symbol 140 BitmapUsed by:141
Symbol 141 GraphicUses:140Used by:174 178
Symbol 142 BitmapUsed by:143
Symbol 143 GraphicUses:142Used by:174 178
Symbol 144 BitmapUsed by:145
Symbol 145 GraphicUses:144Used by:174 178
Symbol 146 BitmapUsed by:147
Symbol 147 GraphicUses:146Used by:174 178
Symbol 148 BitmapUsed by:149
Symbol 149 GraphicUses:148Used by:174 178
Symbol 150 BitmapUsed by:151
Symbol 151 GraphicUses:150Used by:174 178
Symbol 152 BitmapUsed by:153
Symbol 153 GraphicUses:152Used by:174 178
Symbol 154 BitmapUsed by:155
Symbol 155 GraphicUses:154Used by:174 178
Symbol 156 BitmapUsed by:157
Symbol 157 GraphicUses:156Used by:174 178
Symbol 158 BitmapUsed by:159
Symbol 159 GraphicUses:158Used by:174 178
Symbol 160 BitmapUsed by:161
Symbol 161 GraphicUses:160Used by:174 178
Symbol 162 BitmapUsed by:163
Symbol 163 GraphicUses:162Used by:174 178
Symbol 164 BitmapUsed by:165
Symbol 165 GraphicUses:164Used by:174 178
Symbol 166 BitmapUsed by:167
Symbol 167 GraphicUses:166Used by:174 178
Symbol 168 BitmapUsed by:169
Symbol 169 GraphicUses:168Used by:174 178
Symbol 170 BitmapUsed by:171
Symbol 171 GraphicUses:170Used by:174 178
Symbol 172 BitmapUsed by:173
Symbol 173 GraphicUses:172Used by:174 178
Symbol 174 MovieClipUses:139 45 137 141 4 143 145 147 149 151 153 155 157 159 161 163 165 167 169 171 173Used by:Timeline
Symbol 175 BitmapUsed by:176
Symbol 176 GraphicUses:175Used by:177 178
Symbol 177 MovieClipUses:176 47Used by:178  Timeline
Symbol 178 MovieClipUses:177 50 176 141 4 143 145 147 149 151 153 155 157 159 161 163 165 167 169 171 173Used by:Timeline
Symbol 179 GraphicUsed by:Timeline
Symbol 180 GraphicUsed by:Timeline
Symbol 181 GraphicUsed by:Timeline
Symbol 182 GraphicUsed by:Timeline
Symbol 183 GraphicUsed by:Timeline
Symbol 184 GraphicUsed by:Timeline
Symbol 185 FontUsed by:186 188
Symbol 186 EditableTextUses:185Used by:187
Symbol 187 MovieClipUses:186Used by:Timeline
Symbol 188 EditableTextUses:185Used by:189
Symbol 189 MovieClipUses:188Used by:Timeline
Symbol 190 BitmapUsed by:191
Symbol 191 GraphicUses:190Used by:202
Symbol 192 BitmapUsed by:193
Symbol 193 GraphicUses:192Used by:202
Symbol 194 BitmapUsed by:195
Symbol 195 GraphicUses:194Used by:202
Symbol 196 BitmapUsed by:197
Symbol 197 GraphicUses:196Used by:202
Symbol 198 BitmapUsed by:199
Symbol 199 GraphicUses:198Used by:202
Symbol 200 BitmapUsed by:201
Symbol 201 GraphicUses:200Used by:202
Symbol 202 MovieClipUses:191 193 195 197 199 201Used by:Timeline
Symbol 203 BitmapUsed by:204
Symbol 204 GraphicUses:203Used by:215
Symbol 205 BitmapUsed by:206
Symbol 206 GraphicUses:205Used by:215
Symbol 207 BitmapUsed by:208
Symbol 208 GraphicUses:207Used by:215
Symbol 209 BitmapUsed by:210
Symbol 210 GraphicUses:209Used by:215
Symbol 211 BitmapUsed by:212
Symbol 212 GraphicUses:211Used by:215
Symbol 213 BitmapUsed by:214
Symbol 214 GraphicUses:213Used by:215
Symbol 215 MovieClipUses:204 206 208 210 212 214Used by:Timeline
Symbol 216 BitmapUsed by:217
Symbol 217 GraphicUses:216Used by:228
Symbol 218 BitmapUsed by:219
Symbol 219 GraphicUses:218Used by:228
Symbol 220 BitmapUsed by:221
Symbol 221 GraphicUses:220Used by:228
Symbol 222 BitmapUsed by:223
Symbol 223 GraphicUses:222Used by:228
Symbol 224 BitmapUsed by:225
Symbol 225 GraphicUses:224Used by:228
Symbol 226 BitmapUsed by:227
Symbol 227 GraphicUses:226Used by:228
Symbol 228 MovieClipUses:217 219 221 223 225 227Used by:Timeline
Symbol 229 BitmapUsed by:230
Symbol 230 GraphicUses:229Used by:231 232
Symbol 231 MovieClipUses:230Used by:Timeline
Symbol 232 MovieClipUses:230Used by:Timeline
Symbol 233 FontUsed by:234 239
Symbol 234 TextUses:233Used by:Timeline
Symbol 235 FontUsed by:236
Symbol 236 TextUses:235Used by:Timeline
Symbol 237 Sound [victory]Used by:Timeline
Symbol 238 ButtonUses:71 72 73 25 26Used by:Timeline
Symbol 239 TextUses:233Used by:Timeline

Instance Names

"spinner"Frame 1Symbol 7 MovieClip
"percenttext"Frame 1Symbol 9 EditableText
"loaderbar"Frame 1Symbol 13 MovieClip
"backg"Frame 17Symbol 65 MovieClip
"volslide"Frame 19Symbol 98 MovieClip
"redship1"Frame 20Symbol 174 MovieClip
"blueship1"Frame 20Symbol 178 MovieClip
"bluetextbox"Frame 33Symbol 187 MovieClip
"redtextbox"Frame 33Symbol 189 MovieClip
"redship"Frame 33Symbol 174 MovieClip
"blueship"Frame 33Symbol 178 MovieClip
"redshot"Frame 33Symbol 231 MovieClip
"blueshot"Frame 33Symbol 232 MovieClip
"volbar"Symbol 98 MovieClip Frame 1Symbol 96 Button

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "shotsound"
ExportAssets (56)Timeline Frame 1Symbol 2 as "pickup"
ExportAssets (56)Timeline Frame 1Symbol 3 as "hitsound"
ExportAssets (56)Timeline Frame 1Symbol 4 as "death"
ExportAssets (56)Timeline Frame 14Symbol 29 as "duelsong"
ExportAssets (56)Timeline Frame 16Symbol 52 as "menusong"
ExportAssets (56)Timeline Frame 20Symbol 4 as "death"
ExportAssets (56)Timeline Frame 20Symbol 4 as "death"
ExportAssets (56)Timeline Frame 34Symbol 237 as "victory"

Dynamic Text Variables

_root.TwoPtextSymbol 91 EditableText""
_root.shrinktextSymbol 101 EditableText""
_root.noptextSymbol 104 EditableText""
_root.qualifSymbol 124 EditableText""
_root.soundtextSymbol 127 EditableText""
_root.bluetextSymbol 186 EditableText""
_root.redtextSymbol 188 EditableText""




http://swfchan.com/6/28925/info.shtml
Created: 20/5 -2019 04:53:10 Last modified: 20/5 -2019 04:53:10 Server time: 08/05 -2024 01:30:48