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

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

Dodge Ball.swf

This is the info page for
Flash #26068

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


Text
You are kid playing dodgeball in this game. You job is to
dodge the flying red and gray balls for 5 tough levels.
Each new level presents more balls to dodge.

DODGEBALL

<P ALIGN="LEFT"><FONT FACE="Arial" SIZE="12" COLOR="#FF0000">Play</FONT></P>

<P ALIGN="LEFT"><FONT FACE="Arial" SIZE="12" COLOR="#CCCCCC">Play</FONT></P>

<P ALIGN="LEFT"><FONT FACE="Arial" SIZE="12" COLOR="#FF0000">Play</FONT></P>

Play

Dodge all the balls to complete the level.
You have 30 seconds in each level. Good luck.

DODGEBALL

Level 2

Ready..GO

Ready..GO

Ready..GO

Ready..GO

Ready..GO

Ready..GO

Level 3

Ready..GO

Ready..GO

Ready..GO

Ready..GO

Ready..GO

Ready..GO

Level 4

Ready..GO

Ready..GO

Ready..GO

Ready..GO

Ready..GO

Ready..GO

Level 5

Ready..GO

Ready..GO

Ready..GO

Ready..GO

Ready..GO

Ready..GO

00

<P ALIGN="RIGHT"><FONT FACE="Arial" SIZE="10" COLOR="#FF0000">Time :</FONT></P>

<P ALIGN="LEFT"><FONT FACE="Arial" SIZE="12" COLOR="#FF0000">You Win</FONT></P>

<P ALIGN="LEFT"><FONT FACE="Arial" SIZE="12" COLOR="#FF0000">Play again</FONT></P>

<P ALIGN="LEFT"><FONT FACE="Arial" SIZE="12" COLOR="#CCCCCC">Play again</FONT></P>

<P ALIGN="LEFT"><FONT FACE="Arial" SIZE="12" COLOR="#FF0000">Play again</FONT></P>

<P ALIGN="LEFT"><FONT FACE="Arial" SIZE="12" COLOR="#FF0000">Play again</FONT></P>

00

<P ALIGN="RIGHT"><FONT FACE="Arial" SIZE="10" COLOR="#FF0000">Time :</FONT></P>

<P ALIGN="LEFT"><FONT FACE="Arial" SIZE="12" COLOR="#FF0000">Game Over</FONT></P>

ActionScript [AS1/AS2]

Frame 1
function updateTimer() { buttonPressTime = (getTimer() / 1000) - pauseLength; pause(); } function restartTimer() { hours = "00"; minutes = "00"; seconds = "00"; buttonPressTime = (getTimer() / 1000) - pauseLength; pause(); } function pause() { pauseTime = getTimer() / 1000; timing = false; } function finish() { if (_root.seconds >= 30) { _root.pause(); _root.restartTimer(); nextFrame(); } } function unpause() { unpauseTime = getTimer() / 1000; pauseLength = (unpauseTime - pauseTime) + pauseLength; timing = true; } _root.onEnterFrame = function () { totalTime = (getTimer() / 1000) - pauseLength; goTime = totalTime - buttonPressTime; if (timing) { hours = Math.floor(goTime / 3600); minutes = Math.floor(((goTime / 3600) - hours) * 60); seconds = Math.floor(((((goTime / 3600) - hours) * 60) - minutes) * 60); if (seconds < 10) { seconds = "0" + seconds; } if (minutes < 10) { minutes = "0" + minutes; } if (hours < 10) { hours = "0" + hours; } } }; stop(); stop();
Frame 2
keying = 2; unpause(); stop(); function getdistance(x, y, x1, y1) { var run; var rise; run = x1 - x; rise = y1 - y; return(_root.hyp(run, rise)); } function hyp(a, b) { return(Math.sqrt((a * a) + (b * b))); } MovieClip.prototype.reset = function () { width = 457; height = 325; var dist; var norm; this.x = this._x; this.y = this._y; this.speed = (Math.random() * 4) + 2; this.targx = Math.random() * width; this.targy = Math.random() * height; dist = _root.getdistance(this.x, this.y, this.targx, this.targy); norm = this.speed / dist; this.diffx = (this.targx - this.x) * norm; this.diffy = (this.targy - this.y) * norm; }; MovieClip.prototype.move = function () { if (_root.getdistance(this.x, this.y, this.targx, this.targy) > this.speed) { this.x = this.x + this.diffx; this.y = this.y + this.diffy; } else { this.x = this.targx; this.y = this.targy; if (!this.t) { this.t = getTimer(); } if ((getTimer() - this.t) > 1000) { this.reset(); this.t = 0; } } this._x = this.x; this._y = this.y; };
Instance of Symbol 25 MovieClip in Frame 2
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 27 MovieClip in Frame 2
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 25 MovieClip in Frame 2
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 27 MovieClip in Frame 2
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 25 MovieClip in Frame 2
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 27 MovieClip in Frame 2
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 33 MovieClip "Nave" in Frame 2
onClipEvent (load) { speed = 5; } onClipEvent (enterFrame) { _root.finish(); if (_root.keying == 2) { if (Key.isDown(37) && (!Key.isDown(39))) { _x = (_x - speed); _rotation = 270; } if (Key.isDown(39) && (!Key.isDown(37))) { _x = (_x + speed); _rotation = 90; } if (Key.isDown(38) && (!Key.isDown(40))) { _y = (_y - speed); _rotation = 0; } if (Key.isDown(40) && (!Key.isDown(38))) { _y = (_y + speed); _rotation = 180; } if (((Key.isDown(37) && (Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(40))) { _rotation = 315; } if (((Key.isDown(39) && (Key.isDown(38))) && (!Key.isDown(37))) && (!Key.isDown(40))) { _rotation = 45; } if (((Key.isDown(37) && (Key.isDown(40))) && (!Key.isDown(39))) && (!Key.isDown(38))) { _rotation = 225; } if (((Key.isDown(39) && (Key.isDown(40))) && (!Key.isDown(37))) && (!Key.isDown(38))) { _rotation = 135; } } if (_y < 0) { _y = 285; } if (_y > 285) { _y = 0; } if (_x < 0) { _x = 510; } if (_x > 510) { _x = 0; } }
Frame 3
_root.pause(); stop();
Frame 4
_root.unpause(); stop();
Instance of Symbol 25 MovieClip in Frame 4
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 27 MovieClip in Frame 4
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 25 MovieClip in Frame 4
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 27 MovieClip in Frame 4
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 25 MovieClip in Frame 4
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 27 MovieClip in Frame 4
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 25 MovieClip in Frame 4
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 27 MovieClip in Frame 4
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 33 MovieClip "Nave" in Frame 4
onClipEvent (load) { speed = 4; } onClipEvent (enterFrame) { _root.finish(); if (_root.keying == 2) { if (Key.isDown(37) && (!Key.isDown(39))) { _x = (_x - speed); _rotation = 270; } if (Key.isDown(39) && (!Key.isDown(37))) { _x = (_x + speed); _rotation = 90; } if (Key.isDown(38) && (!Key.isDown(40))) { _y = (_y - speed); _rotation = 0; } if (Key.isDown(40) && (!Key.isDown(38))) { _y = (_y + speed); _rotation = 180; } if (((Key.isDown(37) && (Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(40))) { _rotation = 315; } if (((Key.isDown(39) && (Key.isDown(38))) && (!Key.isDown(37))) && (!Key.isDown(40))) { _rotation = 45; } if (((Key.isDown(37) && (Key.isDown(40))) && (!Key.isDown(39))) && (!Key.isDown(38))) { _rotation = 225; } if (((Key.isDown(39) && (Key.isDown(40))) && (!Key.isDown(37))) && (!Key.isDown(38))) { _rotation = 135; } } if (_y < 0) { _y = 285; } if (_y > 285) { _y = 0; } if (_x < 0) { _x = 510; } if (_x > 510) { _x = 0; } }
Frame 5
_root.pause(); stop();
Frame 6
_root.unpause(); stop();
Instance of Symbol 25 MovieClip in Frame 6
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 27 MovieClip in Frame 6
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 25 MovieClip in Frame 6
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 27 MovieClip in Frame 6
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 25 MovieClip in Frame 6
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 27 MovieClip in Frame 6
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 25 MovieClip in Frame 6
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 27 MovieClip in Frame 6
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 25 MovieClip in Frame 6
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 27 MovieClip in Frame 6
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 33 MovieClip "Nave" in Frame 6
onClipEvent (load) { speed = 3; } onClipEvent (enterFrame) { _root.finish(); if (_root.keying == 2) { if (Key.isDown(37) && (!Key.isDown(39))) { _x = (_x - speed); _rotation = 270; } if (Key.isDown(39) && (!Key.isDown(37))) { _x = (_x + speed); _rotation = 90; } if (Key.isDown(38) && (!Key.isDown(40))) { _y = (_y - speed); _rotation = 0; } if (Key.isDown(40) && (!Key.isDown(38))) { _y = (_y + speed); _rotation = 180; } if (((Key.isDown(37) && (Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(40))) { _rotation = 315; } if (((Key.isDown(39) && (Key.isDown(38))) && (!Key.isDown(37))) && (!Key.isDown(40))) { _rotation = 45; } if (((Key.isDown(37) && (Key.isDown(40))) && (!Key.isDown(39))) && (!Key.isDown(38))) { _rotation = 225; } if (((Key.isDown(39) && (Key.isDown(40))) && (!Key.isDown(37))) && (!Key.isDown(38))) { _rotation = 135; } } if (_y < 0) { _y = 285; } if (_y > 285) { _y = 0; } if (_x < 0) { _x = 510; } if (_x > 510) { _x = 0; } }
Frame 7
_root.pause(); stop();
Frame 8
_root.unpause(); stop();
Instance of Symbol 25 MovieClip in Frame 8
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 27 MovieClip in Frame 8
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 25 MovieClip in Frame 8
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 27 MovieClip in Frame 8
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 25 MovieClip in Frame 8
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 27 MovieClip in Frame 8
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 25 MovieClip in Frame 8
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 27 MovieClip in Frame 8
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 25 MovieClip in Frame 8
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 27 MovieClip in Frame 8
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 25 MovieClip in Frame 8
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 27 MovieClip in Frame 8
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 33 MovieClip "Nave" in Frame 8
onClipEvent (load) { speed = 3; } onClipEvent (enterFrame) { _root.finish(); if (_root.keying == 2) { if (Key.isDown(37) && (!Key.isDown(39))) { _x = (_x - speed); _rotation = 270; } if (Key.isDown(39) && (!Key.isDown(37))) { _x = (_x + speed); _rotation = 90; } if (Key.isDown(38) && (!Key.isDown(40))) { _y = (_y - speed); _rotation = 0; } if (Key.isDown(40) && (!Key.isDown(38))) { _y = (_y + speed); _rotation = 180; } if (((Key.isDown(37) && (Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(40))) { _rotation = 315; } if (((Key.isDown(39) && (Key.isDown(38))) && (!Key.isDown(37))) && (!Key.isDown(40))) { _rotation = 45; } if (((Key.isDown(37) && (Key.isDown(40))) && (!Key.isDown(39))) && (!Key.isDown(38))) { _rotation = 225; } if (((Key.isDown(39) && (Key.isDown(40))) && (!Key.isDown(37))) && (!Key.isDown(38))) { _rotation = 135; } } if (_y < 0) { _y = 285; } if (_y > 285) { _y = 0; } if (_x < 0) { _x = 510; } if (_x > 510) { _x = 0; } }
Frame 9
_root.pause(); stop();
Frame 10
_root.unpause(); stop();
Instance of Symbol 25 MovieClip in Frame 10
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 27 MovieClip in Frame 10
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 25 MovieClip in Frame 10
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 27 MovieClip in Frame 10
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 25 MovieClip in Frame 10
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 27 MovieClip in Frame 10
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 25 MovieClip in Frame 10
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 27 MovieClip in Frame 10
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 25 MovieClip in Frame 10
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 27 MovieClip in Frame 10
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 25 MovieClip in Frame 10
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 27 MovieClip in Frame 10
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 25 MovieClip in Frame 10
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 27 MovieClip in Frame 10
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 33 MovieClip "Nave" in Frame 10
onClipEvent (load) { speed = 2; } onClipEvent (enterFrame) { _root.finish(); if (_root.keying == 2) { if (Key.isDown(37) && (!Key.isDown(39))) { _x = (_x - speed); _rotation = 270; } if (Key.isDown(39) && (!Key.isDown(37))) { _x = (_x + speed); _rotation = 90; } if (Key.isDown(38) && (!Key.isDown(40))) { _y = (_y - speed); _rotation = 0; } if (Key.isDown(40) && (!Key.isDown(38))) { _y = (_y + speed); _rotation = 180; } if (((Key.isDown(37) && (Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(40))) { _rotation = 315; } if (((Key.isDown(39) && (Key.isDown(38))) && (!Key.isDown(37))) && (!Key.isDown(40))) { _rotation = 45; } if (((Key.isDown(37) && (Key.isDown(40))) && (!Key.isDown(39))) && (!Key.isDown(38))) { _rotation = 225; } if (((Key.isDown(39) && (Key.isDown(40))) && (!Key.isDown(37))) && (!Key.isDown(38))) { _rotation = 135; } } if (_y < 0) { _y = 285; } if (_y > 285) { _y = 0; } if (_x < 0) { _x = 510; } if (_x > 510) { _x = 0; } }
Frame 11
stop(); _root.pause(); stop();
Frame 12
stop(); _root.pause(); stop();
Instance of Symbol 25 MovieClip in Frame 12
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.pause(); } }
Instance of Symbol 27 MovieClip in Frame 12
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.pause(); } }
Instance of Symbol 25 MovieClip in Frame 12
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.pause(); } }
Instance of Symbol 27 MovieClip in Frame 12
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.pause(); } }
Instance of Symbol 25 MovieClip in Frame 12
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.pause(); } }
Instance of Symbol 27 MovieClip in Frame 12
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.pause(); } }
Instance of Symbol 25 MovieClip in Frame 12
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.pause(); } }
Instance of Symbol 27 MovieClip in Frame 12
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.pause(); } }
Instance of Symbol 25 MovieClip in Frame 12
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.pause(); } }
Instance of Symbol 27 MovieClip in Frame 12
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.pause(); } }
Symbol 5 Button
on (release) { getURL ("http://www.2flashgames.com", "_blank"); }
Symbol 20 Button
on (release) { gotoAndStop (2); }
Symbol 41 MovieClip Frame 36
tellTarget ("../") { play(); }; stop();
Symbol 49 MovieClip Frame 36
tellTarget ("../") { play(); }; stop();
Symbol 57 MovieClip Frame 36
tellTarget ("../") { play(); }; stop();
Symbol 65 MovieClip Frame 36
tellTarget ("../") { play(); }; stop();
Symbol 79 Button
on (release) { restartTimer(); gotoAndStop (2); }

Library Items

Symbol 1 BitmapUsed by:2
Symbol 2 GraphicUses:1Used by:Timeline
Symbol 3 BitmapUsed by:4
Symbol 4 GraphicUses:3Used by:5
Symbol 5 ButtonUses:4Used by:Timeline
Symbol 6 FontUsed by:7 12 16 17 19 21 34 35 36 37 38 39 40 42 43 44 45 46 47 48 50 51 52 53 54 55 56 58 59 60 61 62 63 64 66 67 68 70 71 75 76 78 80 81 82 83
Symbol 7 EditableTextUses:6Used by:Timeline
Symbol 8 FontUsed by:9 22
Symbol 9 EditableTextUses:8Used by:Timeline
Symbol 10 BitmapUsed by:11
Symbol 11 GraphicUses:10Used by:Timeline
Symbol 12 EditableTextUses:6Used by:20
Symbol 13 GraphicUsed by:15 20
Symbol 14 GraphicUsed by:15
Symbol 15 MovieClipUses:13 14Used by:20
Symbol 16 EditableTextUses:6Used by:20
Symbol 17 EditableTextUses:6Used by:20
Symbol 18 GraphicUsed by:20
Symbol 19 TextUses:6Used by:20
Symbol 20 ButtonUses:12 15 16 17 18 19 13Used by:Timeline
Symbol 21 EditableTextUses:6Used by:Timeline
Symbol 22 EditableTextUses:8Used by:Timeline
Symbol 23 GraphicUsed by:24 25
Symbol 24 MovieClipUses:23Used by:25
Symbol 25 MovieClipUses:23 24Used by:Timeline
Symbol 26 GraphicUsed by:27
Symbol 27 MovieClipUses:26Used by:Timeline
Symbol 28 GraphicUsed by:Timeline
Symbol 29 GraphicUsed by:33
Symbol 30 GraphicUsed by:31
Symbol 31 MovieClipUses:30Used by:33
Symbol 32 GraphicUsed by:33
Symbol 33 MovieClipUses:29 31 32Used by:Timeline
Symbol 34 EditableTextUses:6Used by:41
Symbol 35 EditableTextUses:6Used by:41
Symbol 36 EditableTextUses:6Used by:41
Symbol 37 EditableTextUses:6Used by:41
Symbol 38 EditableTextUses:6Used by:41
Symbol 39 EditableTextUses:6Used by:41
Symbol 40 EditableTextUses:6Used by:41
Symbol 41 MovieClipUses:34 35 36 37 38 39 40Used by:Timeline
Symbol 42 EditableTextUses:6Used by:49
Symbol 43 EditableTextUses:6Used by:49
Symbol 44 EditableTextUses:6Used by:49
Symbol 45 EditableTextUses:6Used by:49
Symbol 46 EditableTextUses:6Used by:49
Symbol 47 EditableTextUses:6Used by:49
Symbol 48 EditableTextUses:6Used by:49
Symbol 49 MovieClipUses:42 43 44 45 46 47 48Used by:Timeline
Symbol 50 EditableTextUses:6Used by:57
Symbol 51 EditableTextUses:6Used by:57
Symbol 52 EditableTextUses:6Used by:57
Symbol 53 EditableTextUses:6Used by:57
Symbol 54 EditableTextUses:6Used by:57
Symbol 55 EditableTextUses:6Used by:57
Symbol 56 EditableTextUses:6Used by:57
Symbol 57 MovieClipUses:50 51 52 53 54 55 56Used by:Timeline
Symbol 58 EditableTextUses:6Used by:65
Symbol 59 EditableTextUses:6Used by:65
Symbol 60 EditableTextUses:6Used by:65
Symbol 61 EditableTextUses:6Used by:65
Symbol 62 EditableTextUses:6Used by:65
Symbol 63 EditableTextUses:6Used by:65
Symbol 64 EditableTextUses:6Used by:65
Symbol 65 MovieClipUses:58 59 60 61 62 63 64Used by:Timeline
Symbol 66 EditableTextUses:6Used by:Timeline
Symbol 67 EditableTextUses:6Used by:Timeline
Symbol 68 EditableTextUses:6Used by:Timeline
Symbol 69 GraphicUsed by:Timeline
Symbol 70 EditableTextUses:6Used by:Timeline
Symbol 71 EditableTextUses:6Used by:79
Symbol 72 GraphicUsed by:74 79
Symbol 73 GraphicUsed by:74
Symbol 74 MovieClipUses:72 73Used by:79
Symbol 75 EditableTextUses:6Used by:79
Symbol 76 EditableTextUses:6Used by:79
Symbol 77 GraphicUsed by:79
Symbol 78 EditableTextUses:6Used by:79
Symbol 79 ButtonUses:71 74 75 76 77 78 72Used by:Timeline
Symbol 80 EditableTextUses:6Used by:Timeline
Symbol 81 EditableTextUses:6Used by:Timeline
Symbol 82 EditableTextUses:6Used by:Timeline
Symbol 83 EditableTextUses:6Used by:Timeline

Instance Names

"Nave"Frame 2Symbol 33 MovieClip
"Nave"Frame 3Symbol 33 MovieClip
"Nave"Frame 4Symbol 33 MovieClip
"Nave"Frame 5Symbol 33 MovieClip
"Nave"Frame 6Symbol 33 MovieClip
"Nave"Frame 7Symbol 33 MovieClip
"Nave"Frame 8Symbol 33 MovieClip
"Nave"Frame 9Symbol 33 MovieClip
"Nave"Frame 10Symbol 33 MovieClip
"Nave"Frame 11Symbol 33 MovieClip

Labels

"gameover"Frame 12

Dynamic Text Variables

minutesSymbol 66 EditableText"00"
secondsSymbol 67 EditableText""
minutesSymbol 80 EditableText"00"
secondsSymbol 81 EditableText""




http://swfchan.com/6/26068/info.shtml
Created: 23/5 -2019 02:45:42 Last modified: 23/5 -2019 02:45:42 Server time: 14/05 -2024 03:06:12