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

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

flash-game-jakesjokes-1650.swf

This is the info page for
Flash #3479

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


Text
00

%

0000

0000

Alexander Balanoff © 2004
www.alexanderbalanoff.com

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
total_bytes = Math.ceil(_root.getBytesTotal() / 1000); loaded_bytes = Math.ceil(_root.getBytesLoaded() / 1000); percent_done = int((loaded_bytes / total_bytes) * 100); bar.gotoAndStop(percent_done); ifFrameLoaded (43) { gotoAndPlay (3); }
Frame 2
gotoAndPlay (1);
Frame 3
fscommand ("allowscale", false); fscommand ("showmenu", false); stop();
Frame 4
stopAllSounds(); gotoAndPlay (1);
Frame 5
stop(); _root.player1 = "Player 1"; _root.player2 = "Player 2";
Frame 6
stopAllSounds(); gotoAndPlay (3);
Frame 7
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 125 MovieClip "wall_right" in Frame 7
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 129 MovieClip "bob" in Frame 7
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 146 MovieClip "shield1" in Frame 7
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 148 MovieClip "ball" in Frame 7
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 156 MovieClip in Frame 7
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 8
stopAllSounds(); gotoAndPlay (5);
Frame 9
stop(); _root.currentStg = 2; _root.stage2.gotoAndPlay(2);
Instance of Symbol 148 MovieClip "ball1" in Frame 9
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 13
stopAllSounds(); gotoAndPlay (7);
Frame 14
stop(); _root.currentStg = 3; _root.stage3.gotoAndPlay(2);
Instance of Symbol 148 MovieClip "ball2" in Frame 14
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 17
stopAllSounds(); gotoAndPlay (12);
Frame 18
stop(); _root.currentStg = 4; _root.stage4.gotoAndPlay(2);
Instance of Symbol 148 MovieClip "ball3" in Frame 18
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 22
stopAllSounds(); gotoAndPlay (16);
Frame 23
stop(); _root.bob.body.face1.gotoAndStop(220); stopAllSounds(); _root.bob.body.face1.faceblood.gotoAndPlay(8);
Frame 27
stopAllSounds(); gotoAndPlay (21);
Frame 28
stop(); _root.bob.body.face1.gotoAndPlay(169);
Frame 31
stopAllSounds(); gotoAndPlay (26);
Frame 33
stop();
Frame 37
stopAllSounds(); gotoAndPlay (31);
Instance of Symbol 146 MovieClip "shield2" in Frame 37
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 146 MovieClip "shield1" in Frame 37
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 38
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 125 MovieClip "wall_right" in Frame 38
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 125 MovieClip "wall_left" in Frame 38
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 148 MovieClip "ball" in Frame 38
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 203 MovieClip in Frame 38
onClipEvent (enterFrame) { if (_root.p1 >= 32) { _root.winner = _root.play2; } else if (_root.p2 >= 32) { _root.winner = _root.play1; } }
Instance of Symbol 156 MovieClip in Frame 38
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 39
stop(); _root.currentLev = 2; _root.level2.gotoAndPlay(2);
Instance of Symbol 148 MovieClip "ball1" in Frame 39
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 40
stop(); _root.level3.gotoAndPlay(2); _root.currentLev = 3;
Instance of Symbol 148 MovieClip "ball2" in Frame 40
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 42
stopAllSounds(); gotoAndPlay (38);
Frame 43
stop();
Instance of Symbol 182 MovieClip in Frame 43
onClipEvent (enterFrame) { if (Key.isDown(81)) { _root.gotoAndPlay(1); } }
Frame 44
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 39 MovieClip Frame 1
bar.stop();
Symbol 72 Button
on (release) { gotoAndStop (5); } on (rollOver) { _root.b3.gotoAndStop(2); } on (rollOut) { _root.b3.gotoAndStop(1); }
Symbol 73 Button
on (release) { stopAllSounds(); gotoAndStop (7); } on (rollOver) { _root.b2.gotoAndStop(2); } on (rollOut) { _root.b2.gotoAndStop(1); }
Symbol 74 Button
on (release) { gotoAndStop (33); } on (rollOver) { _root.b1.gotoAndStop(2); } on (rollOut) { _root.b1.gotoAndStop(1); }
Symbol 78 MovieClip Frame 1
stop();
Symbol 78 MovieClip Frame 2
stop();
Symbol 81 MovieClip Frame 1
stop();
Symbol 81 MovieClip Frame 2
stop();
Symbol 82 Button
on (release) { getURL ("http://www.abdesigns.net", "_blank"); } on (rollOver) { _root.l1.gotoAndStop(2); } on (rollOut) { _root.l1.gotoAndStop(1); }
Symbol 85 MovieClip Frame 1
stop();
Symbol 85 MovieClip Frame 2
stop();
Symbol 89 MovieClip Frame 1
stop();
Symbol 89 MovieClip Frame 2
stop();
Symbol 111 Button
on (release) { stopAllSounds(); gotoAndStop (38); } on (rollOver) { _root.p2.gotoAndStop(2); } on (rollOut) { _root.p2.gotoAndStop(1); }
Symbol 114 MovieClip Frame 1
stop();
Symbol 114 MovieClip Frame 2
stop();
Symbol 115 Button
on (release) { stopAllSounds(); gotoAndStop (3); } on (rollOver) { _root.b4.gotoAndStop(2); } on (rollOut) { _root.b4.gotoAndStop(1); }
Symbol 118 MovieClip Frame 1
stop();
Symbol 118 MovieClip Frame 2
stop();
Symbol 125 MovieClip Frame 1
stop();
Symbol 125 MovieClip Frame 2
play();
Symbol 125 MovieClip Frame 9
gotoAndStop (1);
Symbol 129 MovieClip Frame 120
this.gotoAndPlay("swing");
Symbol 136 MovieClip Frame 1
stop();
Symbol 136 MovieClip Frame 2
stop();
Symbol 136 MovieClip Frame 3
stop();
Symbol 136 MovieClip Frame 4
stop();
Symbol 136 MovieClip Frame 5
stop();
Symbol 136 MovieClip Frame 6
stop();
Symbol 136 MovieClip Frame 7
stop();
Symbol 146 MovieClip Frame 1
stop();
Symbol 146 MovieClip Frame 2
play();
Symbol 156 MovieClip Frame 614
gotoAndPlay (1);
Symbol 160 MovieClip Frame 74
stop(); this.removeMovieClip();
Symbol 164 MovieClip Frame 1
stop();
Symbol 164 MovieClip Frame 2
play();
Symbol 164 MovieClip Frame 39
stop(); this.removeMovieClip();
Symbol 166 MovieClip Frame 1
stop();
Symbol 166 MovieClip Frame 2
play();
Symbol 166 MovieClip Frame 39
stop(); this.removeMovieClip();
Symbol 168 MovieClip Frame 1
stop();
Symbol 168 MovieClip Frame 2
play();
Symbol 168 MovieClip Frame 39
stop(); this.removeMovieClip();
Symbol 172 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 175 MovieClip Frame 1
stop();
Symbol 175 MovieClip Frame 2
stop();
Symbol 176 Button
on (release) { fscommand ("quit", "true"); } on (rollOver) { _root.quit.gotoAndStop(2); } on (rollOut) { _root.quit.gotoAndStop(1); }
Symbol 179 MovieClip Frame 1
stop();
Symbol 179 MovieClip Frame 2
stop();
Symbol 183 Button
on (release) { stopAllSounds(); gotoAndStop (7); _root.bob.body.face1.faceblood.gotoAndStop(1); } on (rollOver) { _root.again.gotoAndStop(2); } on (rollOut) { _root.again.gotoAndStop(1); }
Symbol 187 MovieClip Frame 1
stop();
Symbol 187 MovieClip Frame 2
stop();
Symbol 188 Button
on (release) { getURL ("http://www.alexanderbalanoff.com", "_blank"); } on (rollOver) { _root.l2.gotoAndStop(2); } on (rollOut) { _root.l2.gotoAndStop(1); }
Symbol 205 Button
on (release) { stopAllSounds(); gotoAndStop (38); } on (rollOver) { _root.again.gotoAndStop(2); } on (rollOut) { _root.again.gotoAndStop(1); }
Symbol 207 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 125
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:128
Symbol 36 ShapeTweeningUsed by:39
Symbol 37 GraphicUsed by:39
Symbol 38 GraphicUsed by:39 72 73 74 82 111 115 172 176 183 188 205 207
Symbol 39 MovieClipUses:36 37 38Used by:Timeline
Symbol 40 FontUsed by:41 42 43 44 46 86 106 108 150 199 200 201 202 208
Symbol 41 EditableTextUses:40Used by:Timeline
Symbol 42 TextUses:40Used by:Timeline
Symbol 43 EditableTextUses:40Used by:Timeline
Symbol 44 EditableTextUses:40Used by:Timeline
Symbol 45 GraphicUsed by:Timeline
Symbol 46 TextUses:40Used by:Timeline
Symbol 47 GraphicUsed by:71
Symbol 48 GraphicUsed by:71
Symbol 49 GraphicUsed by:71
Symbol 50 GraphicUsed by:71
Symbol 51 GraphicUsed by:71
Symbol 52 GraphicUsed by:71
Symbol 53 GraphicUsed by:71
Symbol 54 GraphicUsed by:71
Symbol 55 GraphicUsed by:71
Symbol 56 GraphicUsed by:71
Symbol 57 GraphicUsed by:71
Symbol 58 GraphicUsed by:71
Symbol 59 GraphicUsed by:71
Symbol 60 GraphicUsed by:71
Symbol 61 GraphicUsed by:71
Symbol 62 GraphicUsed by:71
Symbol 63 GraphicUsed by:71
Symbol 64 GraphicUsed by:71
Symbol 65 GraphicUsed by:71
Symbol 66 GraphicUsed by:71
Symbol 67 GraphicUsed by:71
Symbol 68 GraphicUsed by:71
Symbol 69 GraphicUsed by:71
Symbol 70 GraphicUsed by:71
Symbol 71 MovieClipUses:47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70Used by:Timeline
Symbol 72 ButtonUses:38Used by:Timeline
Symbol 73 ButtonUses:38Used by:Timeline
Symbol 74 ButtonUses:38Used by:Timeline
Symbol 75 GraphicUsed by:78
Symbol 76 GraphicUsed by:78
Symbol 77 SoundUsed by:78 81 85 89 114 118 175 179
Symbol 78 MovieClipUses:75 76 77Used by:Timeline
Symbol 79 GraphicUsed by:81
Symbol 80 GraphicUsed by:81
Symbol 81 MovieClipUses:79 80 77Used by:Timeline
Symbol 82 ButtonUses:38Used by:Timeline
Symbol 83 GraphicUsed by:85
Symbol 84 GraphicUsed by:85
Symbol 85 MovieClipUses:83 84 77Used by:Timeline
Symbol 86 TextUses:40Used by:Timeline
Symbol 87 GraphicUsed by:89
Symbol 88 GraphicUsed by:89
Symbol 89 MovieClipUses:87 88 77Used by:Timeline
Symbol 90 FontUsed by:91 92 109 112 116 151 169 177 180 191 192 195 196 198
Symbol 91 TextUses:90Used by:Timeline
Symbol 92 TextUses:90Used by:Timeline
Symbol 93 FontUsed by:94 95 105 107 110 157 158 159 162 165 167 193 194 206
Symbol 94 TextUses:93Used by:Timeline
Symbol 95 TextUses:93Used by:Timeline
Symbol 96 FontUsed by:97 184
Symbol 97 TextUses:96Used by:Timeline
Symbol 98 FontUsed by:99
Symbol 99 TextUses:98Used by:Timeline
Symbol 100 GraphicUsed by:Timeline
Symbol 101 FontUsed by:102
Symbol 102 TextUses:101Used by:Timeline
Symbol 103 SoundUsed by:Timeline
Symbol 104 GraphicUsed by:Timeline
Symbol 105 TextUses:93Used by:Timeline
Symbol 106 EditableTextUses:40Used by:Timeline
Symbol 107 TextUses:93Used by:Timeline
Symbol 108 EditableTextUses:40Used by:Timeline
Symbol 109 TextUses:90Used by:Timeline
Symbol 110 TextUses:93Used by:Timeline
Symbol 111 ButtonUses:38Used by:Timeline
Symbol 112 TextUses:90Used by:114
Symbol 113 GraphicUsed by:114
Symbol 114 MovieClipUses:112 113 77Used by:Timeline
Symbol 115 ButtonUses:38Used by:Timeline
Symbol 116 TextUses:90Used by:118
Symbol 117 GraphicUsed by:118
Symbol 118 MovieClipUses:116 117 77Used by:Timeline
Symbol 119 GraphicUsed by:Timeline
Symbol 120 GraphicUsed by:Timeline
Symbol 121 BitmapUsed by:122 189
Symbol 122 GraphicUses:121Used by:Timeline
Symbol 123 GraphicUsed by:125
Symbol 124 GraphicUsed by:125
Symbol 125 MovieClipUses:123 124 21Used by:Timeline
Symbol 126 GraphicUsed by:190  Timeline
Symbol 127 GraphicUsed by:128
Symbol 128 MovieClipUses:127 35Used by:129
Symbol 129 MovieClipUses:128Used by:Timeline
Symbol 130 GraphicUsed by:136
Symbol 131 GraphicUsed by:136
Symbol 132 GraphicUsed by:136
Symbol 133 GraphicUsed by:136
Symbol 134 GraphicUsed by:136
Symbol 135 GraphicUsed by:136
Symbol 136 MovieClipUses:130 131 132 133 134 135Used by:Timeline
Symbol 137 GraphicUsed by:146
Symbol 138 GraphicUsed by:146
Symbol 139 GraphicUsed by:146
Symbol 140 GraphicUsed by:146
Symbol 141 GraphicUsed by:146
Symbol 142 GraphicUsed by:146
Symbol 143 GraphicUsed by:146
Symbol 144 GraphicUsed by:146
Symbol 145 SoundUsed by:146
Symbol 146 MovieClipUses:137 138 139 140 141 142 143 144 145Used by:Timeline
Symbol 147 GraphicUsed by:148
Symbol 148 MovieClipUses:147Used by:Timeline
Symbol 149 GraphicUsed by:Timeline
Symbol 150 EditableTextUses:40Used by:Timeline
Symbol 151 TextUses:90Used by:203  Timeline
Symbol 152 GraphicUsed by:156
Symbol 153 SoundUsed by:156
Symbol 154 SoundUsed by:156
Symbol 155 SoundUsed by:156
Symbol 156 MovieClipUses:152 153 154 155Used by:Timeline
Symbol 157 TextUses:93Used by:160
Symbol 158 TextUses:93Used by:160
Symbol 159 TextUses:93Used by:160
Symbol 160 MovieClipUses:157 158 159Used by:Timeline
Symbol 161 SoundUsed by:Timeline
Symbol 162 TextUses:93Used by:164
Symbol 163 SoundUsed by:164 166 168
Symbol 164 MovieClipUses:162 163Used by:Timeline
Symbol 165 TextUses:93Used by:166
Symbol 166 MovieClipUses:165 163Used by:Timeline
Symbol 167 TextUses:93Used by:168
Symbol 168 MovieClipUses:167 163Used by:Timeline
Symbol 169 TextUses:90Used by:Timeline
Symbol 170 GraphicUsed by:171
Symbol 171 MovieClipUses:170Used by:Timeline
Symbol 172 ButtonUses:38Used by:Timeline
Symbol 173 GraphicUsed by:175
Symbol 174 GraphicUsed by:175
Symbol 175 MovieClipUses:173 174 77Used by:Timeline
Symbol 176 ButtonUses:38Used by:Timeline
Symbol 177 TextUses:90Used by:179
Symbol 178 GraphicUsed by:179
Symbol 179 MovieClipUses:177 178 77Used by:Timeline
Symbol 180 TextUses:90Used by:Timeline
Symbol 181 GraphicUsed by:182
Symbol 182 MovieClipUses:181Used by:Timeline
Symbol 183 ButtonUses:38Used by:Timeline
Symbol 184 TextUses:96Used by:Timeline
Symbol 185 GraphicUsed by:187
Symbol 186 GraphicUsed by:187
Symbol 187 MovieClipUses:185 186Used by:Timeline
Symbol 188 ButtonUses:38Used by:Timeline
Symbol 189 GraphicUses:121Used by:Timeline
Symbol 190 MovieClipUses:126Used by:Timeline
Symbol 191 TextUses:90Used by:Timeline
Symbol 192 TextUses:90Used by:Timeline
Symbol 193 TextUses:93Used by:Timeline
Symbol 194 TextUses:93Used by:Timeline
Symbol 195 TextUses:90Used by:Timeline
Symbol 196 TextUses:90Used by:Timeline
Symbol 197 GraphicUsed by:Timeline
Symbol 198 TextUses:90Used by:Timeline
Symbol 199 EditableTextUses:40Used by:Timeline
Symbol 200 EditableTextUses:40Used by:Timeline
Symbol 201 EditableTextUses:40Used by:Timeline
Symbol 202 EditableTextUses:40Used by:Timeline
Symbol 203 MovieClipUses:151Used by:Timeline
Symbol 204 SoundUsed by:Timeline
Symbol 205 ButtonUses:38Used by:Timeline
Symbol 206 TextUses:93Used by:Timeline
Symbol 207 ButtonUses:38Used by:Timeline
Symbol 208 EditableTextUses:40Used by:Timeline

Instance Names

"bar"Frame 1Symbol 39 MovieClip
"loading"Frame 1Symbol 71 MovieClip
"02"Frame 3Symbol 72 Button
"02"Frame 3Symbol 73 Button
"02"Frame 3Symbol 74 Button
"b3"Frame 3Symbol 78 MovieClip
"b2"Frame 3Symbol 81 MovieClip
"02"Frame 3Symbol 82 Button
"b1"Frame 3Symbol 85 MovieClip
"l1"Frame 3Symbol 89 MovieClip
"02"Frame 5Symbol 111 Button
"p2"Frame 5Symbol 114 MovieClip
"02"Frame 5Symbol 115 Button
"b4"Frame 5Symbol 118 MovieClip
"02"Frame 5Symbol 82 Button
"l1"Frame 5Symbol 89 MovieClip
"wall_right"Frame 7Symbol 125 MovieClip
"bob"Frame 7Symbol 129 MovieClip
"hearts"Frame 7Symbol 136 MovieClip
"shield1"Frame 7Symbol 146 MovieClip
"ball"Frame 7Symbol 148 MovieClip
"stage1"Frame 7Symbol 160 MovieClip
"ball1"Frame 9Symbol 148 MovieClip
"stage2"Frame 9Symbol 164 MovieClip
"ball2"Frame 14Symbol 148 MovieClip
"stage3"Frame 14Symbol 166 MovieClip
"ball3"Frame 18Symbol 148 MovieClip
"stage4"Frame 18Symbol 168 MovieClip
"g1"Frame 23Symbol 171 MovieClip
"02"Frame 23Symbol 172 Button
"again"Frame 23Symbol 175 MovieClip
"02"Frame 23Symbol 176 Button
"quit"Frame 23Symbol 179 MovieClip
"02"Frame 28Symbol 183 Button
"again"Frame 28Symbol 175 MovieClip
"02"Frame 28Symbol 176 Button
"quit"Frame 28Symbol 179 MovieClip
"l2"Frame 28Symbol 187 MovieClip
"02"Frame 28Symbol 188 Button
"02"Frame 33Symbol 115 Button
"b4"Frame 33Symbol 118 MovieClip
"shield2"Frame 37Symbol 146 MovieClip
"shield1"Frame 37Symbol 146 MovieClip
"wall_right"Frame 38Symbol 125 MovieClip
"wall_left"Frame 38Symbol 125 MovieClip
"ball"Frame 38Symbol 148 MovieClip
"level1"Frame 38Symbol 160 MovieClip
"ball1"Frame 39Symbol 148 MovieClip
"level2"Frame 39Symbol 164 MovieClip
"ball2"Frame 40Symbol 148 MovieClip
"level3"Frame 40Symbol 166 MovieClip
"again"Frame 43Symbol 175 MovieClip
"02"Frame 43Symbol 176 Button
"quit"Frame 43Symbol 179 MovieClip
"l2"Frame 43Symbol 187 MovieClip
"02"Frame 43Symbol 207 Button
"faceblood"Symbol 35 MovieClip [face] Frame 1Symbol 13 MovieClip [faceblood]
"faceblood"Symbol 35 MovieClip [face] Frame 220Symbol 13 MovieClip [faceblood]
"face1"Symbol 128 MovieClip Frame 1Symbol 35 MovieClip [face]
"body"Symbol 129 MovieClip Frame 1Symbol 128 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 7Symbol 35 as "face"

Labels

"title"Frame 3
"names"Frame 5
"stg1"Frame 7
"stg2"Frame 9
"stg3"Frame 14
"stg4"Frame 18
"lose"Frame 23
"win"Frame 28
"instructions"Frame 33
"lev1"Frame 38
"lev2"Frame 39
"lev3"Frame 40
"over"Frame 43
"express"Symbol 35 MovieClip [face] Frame 44
"bar tween"Symbol 39 MovieClip Frame 1
"swing"Symbol 129 MovieClip Frame 1

Dynamic Text Variables

percent_doneSymbol 41 EditableText"00"
total_bytesSymbol 43 EditableText"0000"
loaded_bytesSymbol 44 EditableText"0000"
player2Symbol 106 EditableText""
player1Symbol 108 EditableText""
scoreSymbol 150 EditableText""
p1Symbol 199 EditableText""
p2Symbol 200 EditableText""
play2Symbol 201 EditableText""
play1Symbol 202 EditableText""
winnerSymbol 208 EditableText""




http://swfchan.com/1/3479/info.shtml
Created: 17/6 -2019 08:26:22 Last modified: 17/6 -2019 08:26:22 Server time: 03/05 -2024 09:53:32