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

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

Ball Eat.swf

This is the info page for
Flash #30000

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


Text
LOADING

MOUSEBREAKER PRODUCT

C 2004 ALL RIGHTS RESERVED

This game can only be run from
mousebreaker.com

Play "Ball" and submit your
score to the scoreboard

Play "Ball" and submit your
score to the scoreboard

Practice playing "Ball"
with different settings!

Practice playing "Ball"
with different settings!

Inspired by the game "Eskiv" made by Jean-François Geyelin

Inspired by the game "Eskiv" made by Jean-François Geyelin

Instructions:
Use the arrow keys to keep the white ball (you) away from the red balls.
Collect the greens to earn points and the yellow to get a random powerup

Instructions:
Use the arrow keys to keep the white ball (you) away from the red balls.
Collect the greens to earn points and the yellow to get a random powerup

A game by Nicolay Edin and Axel Hammarbäck

A game by Nicolay Edin and Axel Hammarbäck

SCORE:

SCORE:

COLLECTED:

COLLECTED:

0

0

POWERUP

0

Submit Score

Submit Score

Submit Score

Submit Score

Main Menu

Main Menu

Main Menu

Main Menu

You scored

You scored

0

0

0

POWERUP

Enemy Speed:

Powerups:

Speedy

Bulletime

Invincible

Enemy Speed:

5

Write in a number and
press clear all

Write in a number and
press clear all

Clear All

Clear All

Clear All

Clear All

Powerups:

Speedy

Bulletime

Invincible

Enemy Speed:

To submit your score to the leaderboard please enter your name below:

Name:

423

PLAY AGAIN

SUBMIT

To submit your score to the leaderboard please enter your name below:

Name:

YOUR SCORE HAS BEEN SUBMITTED.

PLEASE USE THE LINK BELOW THE GAME TO VIEW THE SCOREBOARD

PLAY AGAIN

YOUR SCORE HAS BEEN SUBMITTED.

PLEASE USE THE LINK BELOW THE GAME TO VIEW THE SCOREBOARD

submission
MOVIECLIP
DO NOT
DELETE!

ActionScript [AS1/AS2]

Frame 1
function count() { timeCount++; } function countD() { timeLeft--; } setInterval(count, 1000); setInterval(countD, 1000); restartSingel = false; restartMulti = false;
Frame 3
gotoAndPlay (5);
Frame 4
getURL ("http://www.mousebreaker.com", "_self");
Frame 5
disable_check = true; myURL = _url; okDomain = "www.mousebreakergames.co.uk"; okDomain1 = "www.mousebreaker"; if (((myURL.indexOf(okDomain) != -1) or (myURL.indexOf(okDomain1) != -1)) or disable_check) { play(); } else { gotoAndStop (4); }
Frame 14
stop();
Instance of Symbol 43 MovieClip in Frame 14
onClipEvent (enterFrame) { if (_root.restartSingel == true) { _root.gotoAndStop("singel"); } if (_root.restartMulti == true) { _root.gotoAndStop("multi"); } }
Frame 15
stop(); quit = false; mov = true; score = 0; collected = 0; powerHit = false; powerUp = false; gameO = false; newDir = 0; speed = 5; pTime = 2; timeCount = 0; name = "Insert Name"; pUp = "none"; restartSingel = false; bulletTime = false; superFast = false; invinsible = true; drunken = false;
Instance of Symbol 60 MovieClip "powerUpMC" in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.powerUp = true; this.play(); power = random(3) + 1; _root.score = _root.score + 10; } if ((power == 1) && (_root.powerUp == true)) { _root.time.play(); _root.pUp = "Bulletime"; power = 1; _root.bulletTime = true; _root.superFast == false; _root.superFast = false; _root.invinsible = false; _root.invin._visible = false; _root.drunken == false; _root.invinv._x = 4000; } if ((power == 2) && (_root.powerUp == true)) { _root.time.play(); _root.pUp = "Speedy"; power = 2; _root.invinsible = false; _root.superFast = true; _root.bulletTime = false; _root.invin._visible = false; _root.drunken == false; _root.invinv._x = 4000; } if ((power == 3) && (_root.powerUp == true)) { _root.time.play(); _root.pUp = "Invincible"; power = 3; _root.invinsible = true; _root.bulletTime = false; _root.superFast = false; _root.drunken == false; } if (_root.powerUp == false) { _root.pUp = "None"; _root.drunken == false; _root.invinsible = false; _root.bulletTime = false; _root.superFast = false; _root.invinv._x = 4000; } trace(power); }
Instance of Symbol 99 MovieClip "enemy" in Frame 15
onClipEvent (load) { ud = random(2) + 2; hit = 20; bounceR = false; bounce = false; bounceL = false; eS = random(5) + 1; eS2 = eS; } onClipEvent (enterFrame) { xid = _x - _root.player._x; yid = _y - _root.player._y; distance = Math.sqrt((xid * xid) + (yid * yid)); if (((distance <= ((_width / 2) + (_root.player._width / 2))) && (hit <= 0)) && (_root.invin._visible == false)) { _root.player.gotoAndStop(2); } } onClipEvent (enterFrame) { if ((ud == 3) && (bounce == false)) { this._x = this._x + eS; } if ((ud == 3) && (this.hitTest(_root.edge1))) { bounce = true; bounceR = true; bounceL = false; } if ((ud == 3) && (bounceR == true)) { this._x = this._x - eS; } if (((ud == 3) && (bounceR == true)) && (this.hitTest(_root.edge2))) { bounceL = true; bounceR = false; } if ((ud == 3) && (bounceL == true)) { this._x = this._x + eS; } } onClipEvent (load) { bounceD = true; bounceA = true; bounceU = false; } onClipEvent (enterFrame) { if ((ud == 2) && (bounceA == false)) { this._y = this._y + eS; } if ((ud == 2) && (this.hitTest(_root.edge3))) { bounceA = true; bounceD = true; bounceU = false; } if ((ud == 2) && (bounceD == true)) { this._y = this._y + eS; } if (((ud == 2) && (bounceD == true)) && (this.hitTest(_root.upEdge))) { bounceU = true; bounceD = false; } if ((ud == 2) && (bounceU == true)) { this._y = this._y - eS; } } onClipEvent (enterFrame) { if (_root.gameO == true) { eS2 = 0; eS = 0; } if ((_root.bulletTime == true) && (_root.powerUp == true)) { eS = 0.3; } if ((_root.superFast == true) && (_root.powerUp == true)) { es = 10; } if (_root.powerUp == false) { es = eS2; _root.superFast = false; _root.bulletTime = false; } if (this.hitTest(_root.invin) && (_root.powerUp == true)) { this.gotoAndStop(2); es = 0; hit = 20; } } onClipEvent (enterFrame) { if (hit <= 0) { hit = 0; } if (_root.quit == true) { this.removeMovieClip(); } hit--; }
Instance of Symbol 68 MovieClip in Frame 15
onClipEvent (load) { _root.en = 0; size = 20; } onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { this.play(); _root.score = _root.score + size; _root.collected = _root.collected + 1; this._x = random(400) + 170; this._y = random(440) + 30; _root.en++; _root.enemy.duplicateMovieClip("enemy" + _root.en, _root.en); _root["enemy" + _root.en]._x = random(400) + 170; _root["enemy" + _root.en]._y = random(440) + 30; } if (_root.en >= 50) { _quality = "MEDIUM"; } if (_root.en >= 100) { _quality = "LOW"; } }
Instance of Symbol 81 MovieClip "player" in Frame 15
onClipEvent (enterFrame) { if ((_root.mov == true) && (Key.isDown(38))) { this._y = this._y - _root.speed; } if ((_root.mov == true) && (Key.isDown(40))) { this._y = this._y + _root.speed; } if ((_root.mov == true) && (Key.isDown(37))) { this._x = this._x - _root.speed; } if ((_root.mov == true) && (Key.isDown(39))) { this._x = this._x + _root.speed; } if (this.hitTest(_root.edge1)) { this._x = this._x - _root.speed; } if (this.hitTest(_root.edge2)) { this._x = this._x + _root.speed; } if (this.hitTest(_root.upEdge)) { this._y = this._y - _root.speed; } if (this.hitTest(_root.edge3)) { this._y = this._y + _root.speed; } } onClipEvent (enterFrame) { if (_root.powerUp == false) { _root.enemyS = 2; _root.speed = 5; } }
Instance of Symbol 81 MovieClip "invin" in Frame 15
onClipEvent (enterFrame) { if ((_root.powerUpMC.power == 3) && (_root.powerUp == true)) { this._visible = true; _x = _root.player._x; _y = _root.player._y; } else { this._visible = false; _x = 5000; _y = 59999; } }
Instance of Symbol 115 MovieClip in Frame 15
onClipEvent (enterFrame) { if ((_root.pTime <= 0) && (pHit == false)) { _root.powerUpMC.gotoAndStop(1); _root.powerUpMC._x = random(400) + 170; _root.powerUpMC._y = random(400) + 30; pHit = true; } if (_root.pTime == 1) { pHit = false; } _root.pTime--; }
Instance of Symbol 137 MovieClip "menu" in Frame 15
onClipEvent (enterFrame) { this.swapDepths(10000); } onClipEvent (load) { this._visible = false; } onClipEvent (enterFrame) { if (_root.gameO == true) { _root.speed = 0; this._visible = true; } if (_root.quit == true) { this.removeMovieClip(); } }
Frame 16
stop(); randSpeed = 5; quit = false; mov = true; score = 0; collected = 0; powerHit = false; powerUp = false; gameO = false; newDir = 0; speed = 5; pTime = 2; timeCount = 0; name = "insert name"; pUp = "none"; bulletTime = false; superFast = false; invinsible = true; drunken = false;
Instance of Symbol 88 MovieClip "edge3" in Frame 16
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.player._y = _root.player._y + _root.speed; } }
Instance of Symbol 99 MovieClip "enemy" in Frame 16
onClipEvent (load) { ud = random(2) + 2; hit = 20; bounceR = false; bounce = false; bounceL = false; eS = random(_root.randSpeed) + 1; eS2 = eS; } onClipEvent (enterFrame) { xid = _x - _root.player._x; yid = _y - _root.player._y; distance = Math.sqrt((xid * xid) + (yid * yid)); if (((distance <= ((_width / 2) + (_root.player._width / 2))) && (hit <= 0)) && (_root.invin._visible == false)) { this.gotoAndStop(2); _root.menu._visible = true; } } onClipEvent (enterFrame) { if ((ud == 3) && (bounce == false)) { this._x = this._x + eS; } if ((ud == 3) && (this.hitTest(_root.edge1))) { bounce = true; bounceR = true; bounceL = false; } if ((ud == 3) && (bounceR == true)) { this._x = this._x - eS; } if (((ud == 3) && (bounceR == true)) && (this.hitTest(_root.edge2))) { bounceL = true; bounceR = false; } if ((ud == 3) && (bounceL == true)) { this._x = this._x + eS; } } onClipEvent (load) { bounceD = true; bounceA = true; bounceU = false; } onClipEvent (enterFrame) { if ((ud == 2) && (bounceA == false)) { this._y = this._y + eS; } if ((ud == 2) && (this.hitTest(_root.edge3))) { bounceA = true; bounceD = true; bounceU = false; } if ((ud == 2) && (bounceD == true)) { this._y = this._y + eS; } if (((ud == 2) && (bounceD == true)) && (this.hitTest(_root.upEdge))) { bounceU = true; bounceD = false; } if ((ud == 2) && (bounceU == true)) { this._y = this._y - eS; } } onClipEvent (enterFrame) { if (_root.gameO == true) { eS2 = 0; eS = 0; } if ((_root.bulletTime == true) && (_root.powerUp == true)) { eS = 0.3; } if ((_root.superFast == true) && (_root.powerUp == true)) { es = 10; } if (_root.powerUp == false) { es = eS2; _root.superFast = false; _root.bulletTime = false; } if (this.hitTest(_root.invin) && (_root.powerUp == true)) { this.gotoAndStop(2); es = 0; hit = 20; } } onClipEvent (enterFrame) { if (hit <= 0) { hit = 0; } if (_root.quit == true) { this.removeMovieClip(); } hit--; }
Instance of Symbol 68 MovieClip in Frame 16
onClipEvent (load) { _root.en = 0; size = 20; } onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { this.play(); _root.score = _root.score + size; _root.collected = _root.collected + 1; this._x = random(400) + 170; this._y = random(440) + 30; _root.en++; _root.enemy.duplicateMovieClip("enemy" + _root.en, _root.en); _root["enemy" + _root.en]._x = random(400) + 170; _root["enemy" + _root.en]._y = random(440) + 30; } if (_root.en >= 50) { _quality = "MEDIUM"; } if (_root.en >= 100) { _quality = "LOW"; } }
Instance of Symbol 81 MovieClip "player" in Frame 16
onClipEvent (enterFrame) { if ((_root.mov == true) && (Key.isDown(38))) { _y = (_y - _root.speed); } if ((_root.mov == true) && (Key.isDown(40))) { _y = (_y + _root.speed); } if ((_root.mov == true) && (Key.isDown(37))) { _x = (_x - _root.speed); } if ((_root.mov == true) && (Key.isDown(39))) { _x = (_x + _root.speed); } trace(_x); } onClipEvent (enterFrame) { if (_x <= 133) { _x = 133; } if (_x >= 563.54) { _x = 563.54; } if (_y >= 460.6) { _y = 460.6; } if (_y <= 38.6) { _y = 38.6; } }
Instance of Symbol 81 MovieClip "invin" in Frame 16
onClipEvent (enterFrame) { if ((_root.YNbox._currentframe == 2) && (_root.powerUp == true)) { this._visible = true; _x = _root.player._x; _y = _root.player._y; } else { this._visible = false; _x = 5000; _y = 59999; } }
Instance of Symbol 115 MovieClip in Frame 16
onClipEvent (enterFrame) { if ((_root.pTime <= 0) && (pHit == false)) { _root.powerUpMC.gotoAndStop(1); _root.powerUpMC._x = random(400) + 170; _root.powerUpMC._y = random(400) + 30; pHit = true; } if (_root.pTime == 1) { pHit = false; } _root.pTime--; }
Instance of Symbol 144 MovieClip "menu" in Frame 16
onClipEvent (enterFrame) { this.swapDepths(10000); } onClipEvent (load) { this._visible = false; } onClipEvent (enterFrame) { if (_root.gameO == true) { _root.speed = 0; this._visible = true; } if (_root.quit == true) { this.removeMovieClip(); } }
Frame 17
stop();
Frame 21
stop();
Instance of Symbol 197 MovieClip "xyz" in Frame 21
onClipEvent (load) { score = _level0.score; name = _level0.name; this.loadVariables("highscores_ball.php?" + int(Math.random() * 100000), "POST"); }
Symbol 7 MovieClip Frame 1
doneLoading = 0; stop();
Instance of Symbol 3 MovieClip "bkgd" in Symbol 7 MovieClip Frame 1
onClipEvent (enterFrame) { if (_parent.doneLoading == 0) { total = _parent._parent.getBytesTotal(); isloaded = _parent._parent.getBytesLoaded(); p = 100 * (isLoaded / total); _parent.bytes = ((int(isloaded / 1000) add " KB of ") add int(total / 1000)) add " KB"; _parent.percent = int(p) add "% LOADED"; _parent.bar._xscale = p; trace("....." + Number(p)); if (Number(p) >= Number(100)) { _parent._parent.gotoAndPlay(Number(2)); _parent.gotoAndStop("off"); _parent.doneLoading = 1; } else { _parent._parent.gotoAndPlay(Number(1)); } } }
Symbol 13 MovieClip Frame 7
gotoAndPlay (1);
Symbol 16 MovieClip Frame 32
gotoAndPlay (1);
Symbol 30 MovieClip Frame 8
stop();
Symbol 32 Button
on (release) { gotoAndStop (15); }
Symbol 37 Button
on (release) { gotoAndStop (16); }
Symbol 60 MovieClip Frame 1
stop();
Symbol 60 MovieClip Frame 2
_root.powerHit = true;
Symbol 60 MovieClip Frame 7
stop();
Symbol 68 MovieClip Frame 1
stop();
Symbol 68 MovieClip Frame 7
gotoAndStop (1);
Symbol 80 MovieClip Frame 10
stop(); _root.gameO = true;
Symbol 81 MovieClip Frame 1
stop();
Symbol 86 MovieClip Frame 1
stop();
Symbol 86 MovieClip Frame 2
stop();
Symbol 98 MovieClip Frame 10
stop(); _parent.removeMovieClip();
Symbol 99 MovieClip Frame 1
stop();
Symbol 107 MovieClip Frame 1
stop();
Symbol 107 MovieClip Frame 250
_root.powerUp = false; _root.pTime = 500;
Symbol 125 Button
on (release) { _root.gotoandStop("submit", "submit"); _root.quit = true; }
Symbol 131 Button
on (release) { _root.quit = true; _root.gotoAndStop("main"); }
Symbol 143 Button
on (release) { _root.gotoAndStop("main"); _root.quit2 = true; _root.quit = true; }
Symbol 159 Button
on (press) { _root.quit = true; } on (release) { _root.quit = false; }
Symbol 166 Button
on (release) { _root.pUp = "Speedy"; _root.powerUp = true; power = 2; _root.invinsible = false; _root.superFast = true; _root.bulletTime = false; _root.invin._visible = false; _root.drunken == false; _root.invinv._x = 4000; gotoAndStop (2); }
Symbol 168 Button
on (release) { _root.pUp = "Bulletime"; _root.powerUp = false; _root.bulletTime = false; _root.superFast == false; _root.superFast = false; _root.invinsible = false; _root.invin._visible = false; _root.drunken == false; _root.invinv._x = 4000; gotoAndStop (1); }
Symbol 169 MovieClip Frame 1
stop();
Symbol 170 Button
on (release) { _root.pUp = "Bulletime"; _root.powerUp = true; _root.bulletTime = true; _root.superFast == false; _root.superFast = false; _root.invinsible = false; _root.invin._visible = false; _root.drunken == false; _root.invinv._x = 4000; gotoAndStop (2); }
Symbol 171 Button
on (release) { _root.pUp = "Bulletime"; _root.powerUp = false; _root.bulletTime = false; _root.superFast == false; _root.superFast = false; _root.invinsible = false; _root.invin._visible = false; _root.drunken == false; _root.invinv._x = 4000; gotoAndStop (1); }
Symbol 172 MovieClip Frame 1
stop();
Symbol 173 Button
on (release) { _root.powerUp = true; _root.pUp = "Invincible"; power = 3; _root.invinsible = true; _root.bulletTime = false; _root.superFast = false; _root.drunken == false; gotoAndStop (2); }
Symbol 174 Button
on (release) { _root.pUp = "Bulletime"; _root.powerUp = false; _root.bulletTime = false; _root.superFast == false; _root.superFast = false; _root.invinsible = false; _root.invin._visible = false; _root.drunken == false; _root.invinv._x = 4000; gotoAndStop (1); }
Symbol 175 MovieClip Frame 1
stop();
Symbol 186 Button
on (release) { gotoAndStop (14); }
Symbol 187 Button
on (release) { gotoAndStop (21); }

Library Items

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

Instance Names

"powerUpMC"Frame 14Symbol 60 MovieClip
"invin"Frame 14Symbol 81 MovieClip
"powerUpMC"Frame 14Symbol 60 MovieClip
"bg"Frame 15Symbol 86 MovieClip
"edge1"Frame 15Symbol 88 MovieClip
"edge3"Frame 15Symbol 88 MovieClip
"edge2"Frame 15Symbol 88 MovieClip
"upEdge"Frame 15Symbol 88 MovieClip
"powerUpMC"Frame 15Symbol 60 MovieClip
"enemy"Frame 15Symbol 99 MovieClip
"player"Frame 15Symbol 81 MovieClip
"invin"Frame 15Symbol 81 MovieClip
"time"Frame 15Symbol 107 MovieClip
"menu"Frame 15Symbol 137 MovieClip
"powerUpMC"Frame 15Symbol 60 MovieClip
"invin"Frame 15Symbol 81 MovieClip
"powerUpMC"Frame 15Symbol 60 MovieClip
"bg"Frame 16Symbol 86 MovieClip
"edge1"Frame 16Symbol 88 MovieClip
"edge3"Frame 16Symbol 88 MovieClip
"edge2"Frame 16Symbol 88 MovieClip
"upEdge"Frame 16Symbol 88 MovieClip
"enemy"Frame 16Symbol 99 MovieClip
"player"Frame 16Symbol 81 MovieClip
"invin"Frame 16Symbol 81 MovieClip
"time"Frame 16Symbol 107 MovieClip
"menu"Frame 16Symbol 144 MovieClip
"powerUpMC"Frame 16Symbol 60 MovieClip
"invin"Frame 16Symbol 81 MovieClip
"powerUpMC"Frame 16Symbol 60 MovieClip
"YNbox"Frame 16Symbol 175 MovieClip
"powerUpMC"Frame 17Symbol 60 MovieClip
"invin"Frame 17Symbol 81 MovieClip
"powerUpMC"Frame 17Symbol 60 MovieClip
"xyz"Frame 21Symbol 197 MovieClip
"bkgd"Symbol 7 MovieClip Frame 1Symbol 3 MovieClip
"sub"Symbol 137 MovieClip Frame 1Symbol 125 Button

Labels

"bad"Frame 4
"checkurl"Frame 5
"main"Frame 14
"singel"Frame 15
"toy"Frame 16
"submit"Frame 17
"highscores"Frame 21
"on"Symbol 7 MovieClip Frame 1
"off"Symbol 7 MovieClip Frame 2

Dynamic Text Variables

percentSymbol 5 EditableText""
bytesSymbol 6 EditableText""
scoreSymbol 112 EditableText"0"
collectedSymbol 113 EditableText"0"
pUpSymbol 117 EditableText""
_root.scoreSymbol 119 EditableText"0"
_root.scoreSymbol 136 EditableText"0"
scoreSymbol 138 EditableText"0"
collectedSymbol 139 EditableText"0"
pUpSymbol 141 EditableText""
randSpeedSymbol 151 EditableText"5"
nameSymbol 178 EditableText""
scoreSymbol 180 EditableText"423"




http://swfchan.com/6/30000/info.shtml
Created: 19/5 -2019 14:39:54 Last modified: 19/5 -2019 14:39:54 Server time: 04/05 -2024 10:13:56