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

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

Guardian.swf

This is the info page for
Flash #23894

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


Text
COPYRIGHT © 2003

A GAME BY

SPECIAL THANKS TO

ALEXANDER BALANOFF

SAJJAD AMJAD

please click on one of the following options...

"OF THE CAPTURED EXPLORER"

please note: this game depicts bloody scenes demonstrated against explorers

Player 2

Player 1

enter name here

vs

play

back to menu

score

stage 1

get ready

start

stage 2

stage 3

final

YOU FAILED TO PROTECT THE
EXPLORER...

quit game

YOU HAVE SAVED THE EXPLORER
FROM HIS DEATH...

please visit                                   for more games!

an explorer has been captured during his research in the jungles of the amazon.
your job is to protect him from the tribes throwing rocks at him.
if you let the explorer get hit 7 times by the rocks it's judgement day

use the arrow keys to move up and down

single player mode

vs player mode

Player 1 keys  - A (up), - z (down)

Player 2 keys  - arrow keys

during gameplay press "q" to go to main menu

is the winner

ActionScript [AS1/AS2]

Frame 1
fscommand ("allowscale", false); fscommand ("showmenu", false); stop();
Frame 2
stopAllSounds(); gotoAndPlay (1);
Frame 3
stop(); _root.player1 = "Player 1"; _root.player2 = "Player 2";
Frame 4
stopAllSounds(); gotoAndPlay (3);
Frame 5
stop(); _root.currentStg = 1; _root.score = 0; _root.hits1 = 1; _root.life = 1; _root.stage1.gotoAndPlay(2); _root.bob.body.face1.gotoAndPlay(1); _root.hearts.gotoAndStop(1);
Instance of Symbol 91 MovieClip "wall_right" in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true) == true) { this.gotoAndPlay(2); _root.ball.hitleft = false; _root.ball.hitright = true; } if (this.hitTest(_root.ball1._x - 5, _root.ball1._y, true) == true) { this.gotoAndPlay(2); _root.ball1.hitleft = false; _root.ball1.hitright = true; } if (this.hitTest(_root.ball2._x - 5, _root.ball2._y, true) == true) { this.gotoAndPlay(2); _root.ball2.hitleft = false; _root.ball2.hitright = true; } if (this.hitTest(_root.ball3._x - 5, _root.ball3._y, true) == true) { this.gotoAndPlay(2); _root.ball3.hitleft = false; _root.ball3.hitright = true; } if (this.hitTest(_root.ball4._x - 5, _root.ball4._y, true) == true) { this.gotoAndPlay(2); _root.ball4.hitleft = false; _root.ball4.hitright = true; } }
Instance of Symbol 95 MovieClip "bob" in Frame 5
onClipEvent (load) { _root.hits1 = 1; _root.life = 1; } onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x + 20, _root.ball._y, true) == true) { _root.ball._x = 600; _root.ball._y = -10; _root.hits1++; _root.bob.body.face1.faceblood.gotoAndStop(_root.hits1); _root.bob.body.face1.gotoAndPlay(155); _root.life++; _root.hearts.gotoAndStop(_root.life); } if (this.hitTest(_root.ball1._x + 20, _root.ball1._y, true) == true) { _root.ball1._x = 600; _root.ball1._y = 300; _root.hits1++; _root.bob.body.face1.faceblood.gotoAndStop(_root.hits1); _root.bob.body.face1.gotoAndPlay(155); _root.life++; _root.hearts.gotoAndStop(_root.life); } if (this.hitTest(_root.ball2._x + 20, _root.ball2._y, true) == true) { _root.ball2._x = 600; _root.ball2._y = -10; _root.hits1++; _root.bob.body.face1.faceblood.gotoAndStop(_root.hits1); _root.bob.body.face1.gotoAndPlay(155); _root.life++; _root.hearts.gotoAndStop(_root.life); } if (this.hitTest(_root.ball3._x + 20, _root.ball3._y, true) == true) { _root.ball3._x = 600; _root.ball3._y = 300; _root.hits1++; _root.bob.body.face1.faceblood.gotoAndStop(_root.hits1); _root.bob.body.face1.gotoAndPlay(155); _root.life++; _root.hearts.gotoAndStop(_root.life); } }
Instance of Symbol 112 MovieClip "shield1" in Frame 5
onClipEvent (load) { thrust = 0.2; decay = 0.95; maxspeed = 20; initx = this._x; } onClipEvent (enterFrame) { if (Key.isDown(38)) { yspeed = yspeed + (maxspeed * thrust); } else { yspeed = yspeed * decay; } if (Key.isDown(40)) { yspeed = yspeed - (maxspeed * thrust); } else { yspeed = yspeed * decay; } speed = yspeed * thrust; if (speed > maxspeed) { yspeed = yspeed * (maxspeed / speed); } _y = (_y - yspeed); if (_y < 45) { _y = 45; } if (_y > 248) { _y = 248; } if (this.hitTest(_root.ball._x - 10, _root.ball._y, true) == true) { this.gotoAndPlay(2); _root.ball.hitleft = true; _root.ball.hitright = false; _root.score++; } if (this.hitTest(_root.ball1._x - 10, _root.ball1._y, true) == true) { this.gotoAndPlay(2); _root.ball1.hitleft = true; _root.ball1.hitright = false; _root.score++; } if (this.hitTest(_root.ball2._x - 10, _root.ball2._y, true) == true) { this.gotoAndPlay(2); _root.ball2.hitleft = true; _root.ball2.hitright = false; _root.score++; } if (this.hitTest(_root.ball3._x - 10, _root.ball3._y, true) == true) { this.gotoAndPlay(2); _root.ball3.hitleft = true; _root.ball3.hitright = false; _root.score++; } }
Instance of Symbol 114 MovieClip "ball" in Frame 5
onClipEvent (load) { this._x = 200; this._y = 150; speed = 8; this.hitleft = true; this.hittop = true; randomx = 1; randomy = 1; } onClipEvent (enterFrame) { if (_root.lose == true) { stop(); } else { speed = 8; randomx = random(1); randomy = random(1); if (this.hitleft == true) { this._x = this._x + (speed + randomx); } if (this.hitright == true) { this._x = this._x - (speed + randomx); } if (this.hittop == true) { this._y = this._y + (speed + randomy); _root.topwall.gotoAndPlay(2); } if (this.hitbottom == true) { this._y = this._y - (speed + randomy); } if (this._y < 30) { this.hittop = true; this.hitbottom = false; } if (this._y > 260) { this.hitbottom = true; this.hittop = false; } if (this._y < -10) { this._y = -10; this._x = 600; } } }
Instance of Symbol 122 MovieClip in Frame 5
onClipEvent (enterFrame) { if ((_root.score >= 5) && (_root.currentStg == 1)) { _root.gotoAndStop("stg2"); _root.currentStg = 1; } if ((_root.score >= 12) && (_root.currentStg == 2)) { _root.gotoAndStop("stg3"); _root.currentStg = 2; _root.ball._visible = 0; } if ((_root.score >= 26) && (_root.currentStg == 3)) { _root.gotoAndStop("stg4"); _root.currentStg = 3; } if ((_root.score >= 42) && (_root.currentStg == 4)) { stopAllSounds(); _root.gotoAndStop("win"); _root.currentStg = 4; } if (Key.isDown(81)) { stopAllSounds(); _root.gotoAndPlay(1); } }
Frame 6
stopAllSounds(); gotoAndPlay (5);
Frame 7
stop(); _root.currentStg = 2; _root.stage2.gotoAndPlay(2);
Instance of Symbol 114 MovieClip "ball1" in Frame 7
onClipEvent (load) { this._x = 120; this._y = -9; speed = 10; this.hitleft = true; this.hittop = true; randomx = 3; randomy = 3; } onClipEvent (enterFrame) { if (_root.lose == true) { stop(); } else { speed = 10; randomx = random(3); randomy = random(3); if (this.hitleft == true) { this._x = this._x + (speed + randomx); } if (this.hitright == true) { this._x = this._x - (speed + randomx); } if (this.hittop == true) { this._y = this._y + (speed + randomy); } if (this.hitbottom == true) { this._y = this._y - (speed + randomy); } if (this._y < 25) { this.hittop = true; this.hitbottom = false; } if (this._y > 260) { this.hitbottom = true; this.hittop = false; } if (this._y < -10) { this._y = 300; this._x = 600; } } }
Frame 11
stopAllSounds(); gotoAndPlay (7);
Frame 12
stop(); _root.currentStg = 3; _root.stage3.gotoAndPlay(2);
Instance of Symbol 114 MovieClip "ball2" in Frame 12
onClipEvent (load) { this._x = 120; this._y = 295; speed = 11; this.hitleft = true; this.hittop = true; randomx = 3; randomy = 3; } onClipEvent (enterFrame) { if (_root.lose == true) { stop(); } else { speed = 11; randomx = random(3); randomy = random(3); if (this.hitleft == true) { this._x = this._x + (speed + randomx); } if (this.hitright == true) { this._x = this._x - (speed + randomx); } if (this.hittop == true) { this._y = this._y + (speed + randomy); } if (this.hitbottom == true) { this._y = this._y - (speed + randomy); } if (this._y < 25) { this.hittop = true; this.hitbottom = false; } if (this._y > 260) { this.hitbottom = true; this.hittop = false; } if (this._y < -10) { this._y = -10; this._x = 600; } } }
Frame 15
stopAllSounds(); gotoAndPlay (12);
Frame 16
stop(); _root.currentStg = 4; _root.stage4.gotoAndPlay(2);
Instance of Symbol 114 MovieClip "ball3" in Frame 16
onClipEvent (load) { this._x = 120; this._y = -9; speed = 13; this.hitleft = true; this.hittop = true; randomx = 3; randomy = 3; } onClipEvent (enterFrame) { if (_root.lose == true) { stop(); } else { speed = 13; randomx = random(3); randomy = random(3); if (this.hitleft == true) { this._x = this._x + (speed + randomx); } if (this.hitright == true) { this._x = this._x - (speed + randomx); } if (this.hittop == true) { this._y = this._y + (speed + randomy); } if (this.hitbottom == true) { this._y = this._y - (speed + randomy); } if (this._y < 20) { this.hittop = true; this.hitbottom = false; } if (this._y > 260) { this.hitbottom = true; this.hittop = false; } if (this._y < -10) { this._y = 300; this._x = 600; } } }
Frame 20
stopAllSounds(); gotoAndPlay (16);
Frame 21
stop(); _root.bob.body.face1.gotoAndStop(220); stopAllSounds(); _root.bob.body.face1.faceblood.gotoAndPlay(8);
Frame 25
stopAllSounds(); gotoAndPlay (21);
Frame 26
stop(); _root.bob.body.face1.gotoAndPlay(169);
Frame 29
stopAllSounds(); gotoAndPlay (26);
Frame 31
stop();
Frame 35
stopAllSounds(); gotoAndPlay (31);
Instance of Symbol 112 MovieClip "shield2" in Frame 35
onClipEvent (load) { thrust = 0.2; decay = 0.95; maxspeed = 20; initx = this._x; } onClipEvent (enterFrame) { if (Key.isDown(65)) { yspeed = yspeed + (maxspeed * thrust); } else { yspeed = yspeed * decay; } if (Key.isDown(90)) { yspeed = yspeed - (maxspeed * thrust); } else { yspeed = yspeed * decay; } speed = yspeed * thrust; if (speed > maxspeed) { yspeed = yspeed * (maxspeed / speed); } _y = (_y - yspeed); if (_y < 45) { _y = 45; } if (_y > 248) { _y = 248; } if (this.hitTest(_root.ball._x - 10, _root.ball._y, true) == true) { this.gotoAndPlay(2); _root.ball.hitleft = true; _root.ball.hitright = false; _root.p2++; } if (this.hitTest(_root.ball1._x - 10, _root.ball1._y, true) == true) { this.gotoAndPlay(2); _root.ball1.hitleft = true; _root.ball1.hitright = false; _root.p2++; } if (this.hitTest(_root.ball2._x - 10, _root.ball2._y, true) == true) { this.gotoAndPlay(2); _root.ball2.hitleft = true; _root.ball2.hitright = false; _root.p2++; } }
Instance of Symbol 112 MovieClip "shield1" in Frame 35
onClipEvent (load) { thrust = 0.2; decay = 0.95; maxspeed = 20; initx = this._x; } onClipEvent (enterFrame) { if (Key.isDown(38)) { yspeed = yspeed + (maxspeed * thrust); } else { yspeed = yspeed * decay; } if (Key.isDown(40)) { yspeed = yspeed - (maxspeed * thrust); } else { yspeed = yspeed * decay; } speed = yspeed * thrust; if (speed > maxspeed) { yspeed = yspeed * (maxspeed / speed); } _y = (_y - yspeed); if (_y < 45) { _y = 45; } if (_y > 248) { _y = 248; } if (this.hitTest(_root.ball._x + 10, _root.ball._y, true) == true) { this.gotoAndPlay(2); _root.ball.hitleft = false; _root.ball.hitright = true; _root.p1++; } if (this.hitTest(_root.ball1._x + 10, _root.ball1._y, true) == true) { this.gotoAndPlay(2); _root.ball1.hitleft = false; _root.ball1.hitright = true; _root.p1++; } if (this.hitTest(_root.ball2._x + 10, _root.ball2._y, true) == true) { this.gotoAndPlay(2); _root.ball2.hitleft = false; _root.ball2.hitright = true; _root.p1++; } }
Frame 36
stop(); _root.currentLev = 1; _root.level1.gotoAndPlay(2); _root.p1 = 0; _root.p2 = 0; _root.play1 = _root.player1; _root.play2 = _root.player2;
Instance of Symbol 91 MovieClip "wall_right" in Frame 36
onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true) == true) { this.gotoAndPlay(2); _root.ball.left1 = false; _root.ball.right1 = true; _root.ball._x = 30; _root.ball._y = -25; _root.p1--; } if (this.hitTest(_root.ball1._x, _root.ball1._y, true) == true) { this.gotoAndPlay(2); _root.ball1.hitleft1 = false; _root.ball1.hitright1 = true; _root.ball1._x = 30; _root.ball1._y = -25; _root.p1--; } if (this.hitTest(_root.ball2._x, _root.ball2._y, true) == true) { this.gotoAndPlay(2); _root.ball2.hitleft1 = false; _root.ball2.hitright1 = true; _root.ball2._x = 30; _root.ball2._y = -25; _root.p1--; } }
Instance of Symbol 91 MovieClip "wall_left" in Frame 36
onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true) == true) { this.gotoAndPlay(2); _root.ball.left1 = true; _root.ball.right1 = false; _root.ball._x = 600; _root.ball._y = -25; _root.p2--; } if (this.hitTest(_root.ball1._x, _root.ball1._y, true) == true) { this.gotoAndPlay(2); _root.ball1.hitleft1 = true; _root.ball1.hitright1 = false; _root.ball1._x = 600; _root.ball1._y = -25; _root.p2--; } if (this.hitTest(_root.ball2._x, _root.ball2._y, true) == true) { this.gotoAndPlay(2); _root.ball2.hitleft1 = true; _root.ball2.hitright1 = false; _root.ball2._x = 600; _root.ball2._y = -25; _root.p2--; } }
Instance of Symbol 114 MovieClip "ball" in Frame 36
onClipEvent (load) { this._x = 200; this._y = 150; speed = 8; this.hitleft = true; this.hittop = true; randomx = 1; randomy = 1; } onClipEvent (enterFrame) { if (_root.lose == true) { stop(); } else { speed = 8; randomx = random(1); randomy = random(1); if (this.hitleft == true) { this._x = this._x + (speed + randomx); } if (this.hitright == true) { this._x = this._x - (speed + randomx); } if (this.hittop == true) { this._y = this._y + (speed + randomy); _root.topwall.gotoAndPlay(2); } if (this.hitbottom == true) { this._y = this._y - (speed + randomy); } if (this._y < 30) { this.hittop = true; this.hitbottom = false; } if (this._y > 260) { this.hitbottom = true; this.hittop = false; } } }
Instance of Symbol 169 MovieClip in Frame 36
onClipEvent (enterFrame) { if (_root.p1 >= 32) { _root.winner = _root.play2; } else if (_root.p2 >= 32) { _root.winner = _root.play1; } }
Instance of Symbol 122 MovieClip in Frame 36
onClipEvent (enterFrame) { if ((_root.p1 >= 5) && (_root.currentLev == 1)) { _root.gotoAndStop("lev2"); _root.currentLev = 1; } else if ((_root.p2 >= 5) && (_root.currentLev == 1)) { _root.gotoAndStop("lev2"); _root.currentLev = 1; } if ((_root.p1 >= 16) && (_root.currentLev == 2)) { _root.gotoAndStop("lev3"); _root.currentLev = 2; } else if ((_root.p2 >= 16) && (_root.currentLev == 2)) { _root.gotoAndStop("lev3"); _root.currentLev = 2; } if ((_root.p1 >= 32) && (_root.currentLev == 3)) { stopAllSounds(); _root.gotoAndStop("over"); _root.currentLev = 3; } else if ((_root.p2 >= 32) && (_root.currentLev == 3)) { stopAllSounds(); _root.gotoAndStop("over"); _root.currentLev = 3; } if (Key.isDown(81)) { stopAllSounds(); _root.gotoAndPlay(1); } }
Frame 37
stop(); _root.currentLev = 2; _root.level2.gotoAndPlay(2);
Instance of Symbol 114 MovieClip "ball1" in Frame 37
onClipEvent (load) { this._x = 120; this._y = -40; speed = 9; this.hitleft = true; this.hittop = true; randomx = 3; randomy = 3; } onClipEvent (enterFrame) { if (_root.lose == true) { stop(); } else { speed = 9; randomx = random(3); randomy = random(3); if (this.hitleft == true) { this._x = this._x + (speed + randomx); } if (this.hitright == true) { this._x = this._x - (speed + randomx); } if (this.hittop == true) { this._y = this._y + (speed + randomy); } if (this.hitbottom == true) { this._y = this._y - (speed + randomy); } if (this._y < 25) { this.hittop = true; this.hitbottom = false; } if (this._y > 260) { this.hitbottom = true; this.hittop = false; } } }
Frame 38
stop(); _root.level3.gotoAndPlay(2); _root.currentLev = 3;
Instance of Symbol 114 MovieClip "ball2" in Frame 38
onClipEvent (load) { this._x = 120; this._y = 295; speed = 11; this.hitleft = true; this.hittop = true; randomx = 3; randomy = 3; } onClipEvent (enterFrame) { if (_root.lose == true) { stop(); } else { speed = 11; randomx = random(3); randomy = random(3); if (this.hitleft == true) { this._x = this._x + (speed + randomx); } if (this.hitright == true) { this._x = this._x - (speed + randomx); } if (this.hittop == true) { this._y = this._y + (speed + randomy); } if (this.hitbottom == true) { this._y = this._y - (speed + randomy); } if (this._y < 25) { this.hittop = true; this.hitbottom = false; } if (this._y > 260) { this.hitbottom = true; this.hittop = false; } } }
Frame 40
stopAllSounds(); gotoAndPlay (38);
Frame 41
stop();
Instance of Symbol 148 MovieClip in Frame 41
onClipEvent (enterFrame) { if (Key.isDown(81)) { _root.gotoAndPlay(1); } }
Frame 42
stopAllSounds(); gotoAndPlay (41);
Symbol 13 MovieClip [faceblood] Frame 1
stop();
Symbol 13 MovieClip [faceblood] Frame 2
stop();
Symbol 13 MovieClip [faceblood] Frame 3
stop();
Symbol 13 MovieClip [faceblood] Frame 4
stop();
Symbol 13 MovieClip [faceblood] Frame 5
stop();
Symbol 13 MovieClip [faceblood] Frame 6
stop();
Symbol 13 MovieClip [faceblood] Frame 7
stop(); _root.gotoAndStop("lose");
Symbol 13 MovieClip [faceblood] Frame 8
stop();
Symbol 35 MovieClip [face] Frame 145
gotoAndPlay (1);
Symbol 35 MovieClip [face] Frame 166
gotoAndPlay (44);
Symbol 35 MovieClip [face] Frame 169
play();
Symbol 35 MovieClip [face] Frame 215
gotoAndPlay (174);
Symbol 35 MovieClip [face] Frame 220
stop();
Symbol 37 Button
on (release) { gotoAndStop (3); } on (rollOver) { _root.b3.gotoAndStop(2); } on (rollOut) { _root.b3.gotoAndStop(1); }
Symbol 38 Button
on (release) { stopAllSounds(); gotoAndStop (5); } on (rollOver) { _root.b2.gotoAndStop(2); } on (rollOut) { _root.b2.gotoAndStop(1); }
Symbol 39 Button
on (release) { gotoAndStop (31); } on (rollOver) { _root.b1.gotoAndStop(2); } on (rollOut) { _root.b1.gotoAndStop(1); }
Symbol 43 MovieClip Frame 1
stop();
Symbol 43 MovieClip Frame 2
stop();
Symbol 46 MovieClip Frame 1
stop();
Symbol 46 MovieClip Frame 2
stop();
Symbol 47 Button
on (release) { getURL ("http://www.abdesigns.net", "_blank"); } on (rollOver) { _root.l1.gotoAndStop(2); } on (rollOut) { _root.l1.gotoAndStop(1); }
Symbol 50 MovieClip Frame 1
stop();
Symbol 50 MovieClip Frame 2
stop();
Symbol 55 MovieClip Frame 1
stop();
Symbol 55 MovieClip Frame 2
stop();
Symbol 77 Button
on (release) { stopAllSounds(); gotoAndStop (36); } on (rollOver) { _root.p2.gotoAndStop(2); } on (rollOut) { _root.p2.gotoAndStop(1); }
Symbol 80 MovieClip Frame 1
stop();
Symbol 80 MovieClip Frame 2
stop();
Symbol 81 Button
on (release) { stopAllSounds(); gotoAndStop (1); } on (rollOver) { _root.b4.gotoAndStop(2); } on (rollOut) { _root.b4.gotoAndStop(1); }
Symbol 84 MovieClip Frame 1
stop();
Symbol 84 MovieClip Frame 2
stop();
Symbol 91 MovieClip Frame 1
stop();
Symbol 91 MovieClip Frame 2
play();
Symbol 91 MovieClip Frame 9
gotoAndStop (1);
Symbol 95 MovieClip Frame 120
this.gotoAndPlay("swing");
Symbol 102 MovieClip Frame 1
stop();
Symbol 102 MovieClip Frame 2
stop();
Symbol 102 MovieClip Frame 3
stop();
Symbol 102 MovieClip Frame 4
stop();
Symbol 102 MovieClip Frame 5
stop();
Symbol 102 MovieClip Frame 6
stop();
Symbol 102 MovieClip Frame 7
stop();
Symbol 112 MovieClip Frame 1
stop();
Symbol 112 MovieClip Frame 2
play();
Symbol 122 MovieClip Frame 614
gotoAndPlay (1);
Symbol 126 MovieClip Frame 74
stop(); this.removeMovieClip();
Symbol 130 MovieClip Frame 1
stop();
Symbol 130 MovieClip Frame 2
play();
Symbol 130 MovieClip Frame 39
stop(); this.removeMovieClip();
Symbol 132 MovieClip Frame 1
stop();
Symbol 132 MovieClip Frame 2
play();
Symbol 132 MovieClip Frame 39
stop(); this.removeMovieClip();
Symbol 134 MovieClip Frame 1
stop();
Symbol 134 MovieClip Frame 2
play();
Symbol 134 MovieClip Frame 39
stop(); this.removeMovieClip();
Symbol 138 Button
on (release) { stopAllSounds(); _root.gotoAndStop("stg1"); _root.bob.body.face1.faceblood.gotoAndStop(1); } on (rollOver) { _root.again.gotoAndStop(2); } on (rollOut) { _root.again.gotoAndStop(1); }
Symbol 141 MovieClip Frame 1
stop();
Symbol 141 MovieClip Frame 2
stop();
Symbol 142 Button
on (release) { fscommand ("quit", "true"); } on (rollOver) { _root.quit.gotoAndStop(2); } on (rollOut) { _root.quit.gotoAndStop(1); }
Symbol 145 MovieClip Frame 1
stop();
Symbol 145 MovieClip Frame 2
stop();
Symbol 149 Button
on (release) { stopAllSounds(); gotoAndStop (5); _root.bob.body.face1.faceblood.gotoAndStop(1); } on (rollOver) { _root.again.gotoAndStop(2); } on (rollOut) { _root.again.gotoAndStop(1); }
Symbol 153 MovieClip Frame 1
stop();
Symbol 153 MovieClip Frame 2
stop();
Symbol 154 Button
on (release) { getURL ("http://www.alexanderbalanoff.com", "_blank"); } on (rollOver) { _root.l2.gotoAndStop(2); } on (rollOut) { _root.l2.gotoAndStop(1); }
Symbol 171 Button
on (release) { stopAllSounds(); gotoAndStop (36); } on (rollOver) { _root.again.gotoAndStop(2); } on (rollOut) { _root.again.gotoAndStop(1); }
Symbol 173 Button
on (release) { getURL ("http://www.abdesigns.net", "_blank"); } on (rollOver) { _root.l2.gotoAndStop(2); } on (rollOut) { _root.l2.gotoAndStop(1); }

Library Items

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

Instance Names

"02"Frame 1Symbol 37 Button
"02"Frame 1Symbol 38 Button
"02"Frame 1Symbol 39 Button
"b3"Frame 1Symbol 43 MovieClip
"b2"Frame 1Symbol 46 MovieClip
"02"Frame 1Symbol 47 Button
"b1"Frame 1Symbol 50 MovieClip
"l1"Frame 1Symbol 55 MovieClip
"02"Frame 3Symbol 77 Button
"p2"Frame 3Symbol 80 MovieClip
"02"Frame 3Symbol 81 Button
"b4"Frame 3Symbol 84 MovieClip
"02"Frame 3Symbol 47 Button
"l1"Frame 3Symbol 55 MovieClip
"wall_right"Frame 5Symbol 91 MovieClip
"bob"Frame 5Symbol 95 MovieClip
"hearts"Frame 5Symbol 102 MovieClip
"shield1"Frame 5Symbol 112 MovieClip
"ball"Frame 5Symbol 114 MovieClip
"stage1"Frame 5Symbol 126 MovieClip
"ball1"Frame 7Symbol 114 MovieClip
"stage2"Frame 7Symbol 130 MovieClip
"ball2"Frame 12Symbol 114 MovieClip
"stage3"Frame 12Symbol 132 MovieClip
"ball3"Frame 16Symbol 114 MovieClip
"stage4"Frame 16Symbol 134 MovieClip
"g1"Frame 21Symbol 137 MovieClip
"02"Frame 21Symbol 138 Button
"again"Frame 21Symbol 141 MovieClip
"02"Frame 21Symbol 142 Button
"quit"Frame 21Symbol 145 MovieClip
"02"Frame 26Symbol 149 Button
"again"Frame 26Symbol 141 MovieClip
"02"Frame 26Symbol 142 Button
"quit"Frame 26Symbol 145 MovieClip
"l2"Frame 26Symbol 153 MovieClip
"02"Frame 26Symbol 154 Button
"02"Frame 31Symbol 81 Button
"b4"Frame 31Symbol 84 MovieClip
"shield2"Frame 35Symbol 112 MovieClip
"shield1"Frame 35Symbol 112 MovieClip
"wall_right"Frame 36Symbol 91 MovieClip
"wall_left"Frame 36Symbol 91 MovieClip
"ball"Frame 36Symbol 114 MovieClip
"level1"Frame 36Symbol 126 MovieClip
"ball1"Frame 37Symbol 114 MovieClip
"level2"Frame 37Symbol 130 MovieClip
"ball2"Frame 38Symbol 114 MovieClip
"level3"Frame 38Symbol 132 MovieClip
"again"Frame 41Symbol 141 MovieClip
"02"Frame 41Symbol 142 Button
"quit"Frame 41Symbol 145 MovieClip
"l2"Frame 41Symbol 153 MovieClip
"02"Frame 41Symbol 173 Button
"faceblood"Symbol 35 MovieClip [face] Frame 1Symbol 13 MovieClip [faceblood]
"faceblood"Symbol 35 MovieClip [face] Frame 220Symbol 13 MovieClip [faceblood]
"face1"Symbol 94 MovieClip Frame 1Symbol 35 MovieClip [face]
"body"Symbol 95 MovieClip Frame 1Symbol 94 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 13 as "faceblood"
ExportAssets (56)Timeline Frame 1Symbol 35 as "face"
ExportAssets (56)Timeline Frame 5Symbol 35 as "face"

Labels

"title"Frame 1
"names"Frame 3
"stg1"Frame 5
"stg2"Frame 7
"stg3"Frame 12
"stg4"Frame 16
"lose"Frame 21
"win"Frame 26
"instructions"Frame 31
"lev1"Frame 36
"lev2"Frame 37
"lev3"Frame 38
"over"Frame 41
"express"Symbol 35 MovieClip [face] Frame 44
"swing"Symbol 95 MovieClip Frame 1

Dynamic Text Variables

player2Symbol 72 EditableText""
player1Symbol 74 EditableText""
scoreSymbol 116 EditableText""
p1Symbol 165 EditableText""
p2Symbol 166 EditableText""
play2Symbol 167 EditableText""
play1Symbol 168 EditableText""
winnerSymbol 174 EditableText""




http://swfchan.com/5/23894/info.shtml
Created: 25/5 -2019 19:44:10 Last modified: 25/5 -2019 19:44:10 Server time: 09/05 -2024 23:57:33