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

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

Dodgeball.swf

This is the info page for
Flash #23229

(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

PUT THIS GAME ON YOUR WEBSITE

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 28 MovieClip in Frame 2
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 30 MovieClip in Frame 2
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 28 MovieClip in Frame 2
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 30 MovieClip in Frame 2
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 28 MovieClip in Frame 2
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 30 MovieClip in Frame 2
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 36 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 28 MovieClip in Frame 4
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 30 MovieClip in Frame 4
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 28 MovieClip in Frame 4
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 30 MovieClip in Frame 4
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 28 MovieClip in Frame 4
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 30 MovieClip in Frame 4
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 28 MovieClip in Frame 4
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 30 MovieClip in Frame 4
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 36 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 28 MovieClip in Frame 6
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 30 MovieClip in Frame 6
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 28 MovieClip in Frame 6
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 30 MovieClip in Frame 6
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 28 MovieClip in Frame 6
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 30 MovieClip in Frame 6
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 28 MovieClip in Frame 6
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 30 MovieClip in Frame 6
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 28 MovieClip in Frame 6
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 30 MovieClip in Frame 6
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 36 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 28 MovieClip in Frame 8
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 30 MovieClip in Frame 8
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 28 MovieClip in Frame 8
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 30 MovieClip in Frame 8
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 28 MovieClip in Frame 8
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 30 MovieClip in Frame 8
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 28 MovieClip in Frame 8
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 30 MovieClip in Frame 8
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 28 MovieClip in Frame 8
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 30 MovieClip in Frame 8
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 28 MovieClip in Frame 8
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 30 MovieClip in Frame 8
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 36 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 28 MovieClip in Frame 10
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 30 MovieClip in Frame 10
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 28 MovieClip in Frame 10
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 30 MovieClip in Frame 10
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 28 MovieClip in Frame 10
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 30 MovieClip in Frame 10
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 28 MovieClip in Frame 10
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 30 MovieClip in Frame 10
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 28 MovieClip in Frame 10
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 30 MovieClip in Frame 10
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 28 MovieClip in Frame 10
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 30 MovieClip in Frame 10
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 28 MovieClip in Frame 10
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 30 MovieClip in Frame 10
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.gotoAndStop("gameover"); _root.pause(); } }
Instance of Symbol 36 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 28 MovieClip in Frame 12
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.pause(); } }
Instance of Symbol 30 MovieClip in Frame 12
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.pause(); } }
Instance of Symbol 28 MovieClip in Frame 12
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.pause(); } }
Instance of Symbol 30 MovieClip in Frame 12
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.pause(); } }
Instance of Symbol 28 MovieClip in Frame 12
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.pause(); } }
Instance of Symbol 30 MovieClip in Frame 12
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.pause(); } }
Instance of Symbol 28 MovieClip in Frame 12
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.pause(); } }
Instance of Symbol 30 MovieClip in Frame 12
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.pause(); } }
Instance of Symbol 28 MovieClip in Frame 12
onClipEvent (enterFrame) { move(); if (this.hitTest(_root.NAVE)) { _root.NAVE.play(); _root.pause(); } }
Instance of Symbol 30 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.urgames.com", "_blank"); }
Symbol 20 Button
on (release) { gotoAndStop (2); }
Symbol 25 Button
on (release) { getURL ("http://www.gamesforyourwebsite.com/", "_blank"); }
Symbol 44 MovieClip Frame 36
tellTarget ("../") { play(); }; stop();
Symbol 52 MovieClip Frame 36
tellTarget ("../") { play(); }; stop();
Symbol 60 MovieClip Frame 36
tellTarget ("../") { play(); }; stop();
Symbol 68 MovieClip Frame 36
tellTarget ("../") { play(); }; stop();
Symbol 82 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 37 38 39 40 41 42 43 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 73 74 78 79 81 83 84 85 86
Symbol 7 EditableTextUses:6Used by:Timeline
Symbol 8 FontUsed by:9 22 24
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:25
Symbol 24 TextUses:8Used by:25
Symbol 25 ButtonUses:23 24Used by:Timeline
Symbol 26 GraphicUsed by:27 28
Symbol 27 MovieClipUses:26Used by:28
Symbol 28 MovieClipUses:26 27Used by:Timeline
Symbol 29 GraphicUsed by:30
Symbol 30 MovieClipUses:29Used by:Timeline
Symbol 31 GraphicUsed by:Timeline
Symbol 32 GraphicUsed by:36
Symbol 33 GraphicUsed by:34
Symbol 34 MovieClipUses:33Used by:36
Symbol 35 GraphicUsed by:36
Symbol 36 MovieClipUses:32 34 35Used by:Timeline
Symbol 37 EditableTextUses:6Used by:44
Symbol 38 EditableTextUses:6Used by:44
Symbol 39 EditableTextUses:6Used by:44
Symbol 40 EditableTextUses:6Used by:44
Symbol 41 EditableTextUses:6Used by:44
Symbol 42 EditableTextUses:6Used by:44
Symbol 43 EditableTextUses:6Used by:44
Symbol 44 MovieClipUses:37 38 39 40 41 42 43Used by:Timeline
Symbol 45 EditableTextUses:6Used by:52
Symbol 46 EditableTextUses:6Used by:52
Symbol 47 EditableTextUses:6Used by:52
Symbol 48 EditableTextUses:6Used by:52
Symbol 49 EditableTextUses:6Used by:52
Symbol 50 EditableTextUses:6Used by:52
Symbol 51 EditableTextUses:6Used by:52
Symbol 52 MovieClipUses:45 46 47 48 49 50 51Used by:Timeline
Symbol 53 EditableTextUses:6Used by:60
Symbol 54 EditableTextUses:6Used by:60
Symbol 55 EditableTextUses:6Used by:60
Symbol 56 EditableTextUses:6Used by:60
Symbol 57 EditableTextUses:6Used by:60
Symbol 58 EditableTextUses:6Used by:60
Symbol 59 EditableTextUses:6Used by:60
Symbol 60 MovieClipUses:53 54 55 56 57 58 59Used by:Timeline
Symbol 61 EditableTextUses:6Used by:68
Symbol 62 EditableTextUses:6Used by:68
Symbol 63 EditableTextUses:6Used by:68
Symbol 64 EditableTextUses:6Used by:68
Symbol 65 EditableTextUses:6Used by:68
Symbol 66 EditableTextUses:6Used by:68
Symbol 67 EditableTextUses:6Used by:68
Symbol 68 MovieClipUses:61 62 63 64 65 66 67Used by:Timeline
Symbol 69 EditableTextUses:6Used by:Timeline
Symbol 70 EditableTextUses:6Used by:Timeline
Symbol 71 EditableTextUses:6Used by:Timeline
Symbol 72 GraphicUsed by:Timeline
Symbol 73 EditableTextUses:6Used by:Timeline
Symbol 74 EditableTextUses:6Used by:82
Symbol 75 GraphicUsed by:77 82
Symbol 76 GraphicUsed by:77
Symbol 77 MovieClipUses:75 76Used by:82
Symbol 78 EditableTextUses:6Used by:82
Symbol 79 EditableTextUses:6Used by:82
Symbol 80 GraphicUsed by:82
Symbol 81 EditableTextUses:6Used by:82
Symbol 82 ButtonUses:74 77 78 79 80 81 75Used by:Timeline
Symbol 83 EditableTextUses:6Used by:Timeline
Symbol 84 EditableTextUses:6Used by:Timeline
Symbol 85 EditableTextUses:6Used by:Timeline
Symbol 86 EditableTextUses:6Used by:Timeline

Instance Names

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

Labels

"gameover"Frame 12

Dynamic Text Variables

minutesSymbol 69 EditableText"00"
secondsSymbol 70 EditableText""
minutesSymbol 83 EditableText"00"
secondsSymbol 84 EditableText""




http://swfchan.com/5/23229/info.shtml
Created: 26/5 -2019 08:31:50 Last modified: 26/5 -2019 08:31:50 Server time: 11/05 -2024 23:57:17