Frame 2
function doSomething() {
}
function doSomething2() {
}
MENU.customItems.push(Functioned2);
MENU = new ContextMenu();
MENU.hideBuiltInItems();
Functioned = new ContextMenuItem("This game is made by Slasher145 (Chris Jeffrey)", doSomething);
Functioned2 = new ContextMenuItem(":)", doSomething2);
MENU.customItems.push(Functioned);
MENU.customItems.push(Functioned2);
_root.menu = MENU;
stop();
Frame 3
global = new Sound();
stop();
Instance of Symbol 73 MovieClip in Frame 5
onClipEvent (enterFrame) {
this.ball._x = 508;
this.ball._y = 291;
}
Instance of Symbol 73 MovieClip in Frame 5
onClipEvent (enterFrame) {
this.ball._x = 508;
this.ball._y = 291;
}
Frame 6
stop();
_root.ball._x = 86;
_root.ball._y = 96;
function countdown() {
time = time - 1;
}
var score = 0;
var faults = 0;
time = 15000;
myIntervalID = setInterval(countdown, 100);
Instance of Symbol 81 MovieClip "finish" in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.score = _root.score + 100;
_root.nextFrame();
}
}
Instance of Symbol 89 MovieClip "ball" in Frame 6
onClipEvent (load) {
power = 0.4;
yspeed = 0;
xspeed = 0;
friction = 0.99;
radius = 10;
}
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
yspeed = yspeed + power;
}
if (Key.isDown(38)) {
yspeed = yspeed - power;
}
if (Key.isDown(39)) {
xspeed = xspeed + power;
}
if (Key.isDown(37)) {
xspeed = xspeed - power;
}
if (this.texture._x > 53) {
this.texture._x = this.texture._x - 63;
}
if (this.texture._x < -53) {
this.texture._x = this.texture._x + 63;
}
if (this.texture._y > 53) {
this.texture._y = this.texture._y - 63;
}
if (this.texture._y < -53) {
this.texture._y = this.texture._y + 63;
}
xspeed = xspeed * friction;
yspeed = yspeed * friction;
this._y = this._y + yspeed;
this._x = this._x + xspeed;
this.texture._y = this.texture._y + yspeed;
this.texture._x = this.texture._x + xspeed;
if (_root.wall.hitTest(_x, _y + radius, true)) {
yspeed = (-yspeed) * 0.6;
this._y = this._y - 2;
}
if (_root.wall.hitTest(_x, _y - radius, true)) {
yspeed = (-yspeed) * 0.6;
this._y = this._y + 2;
}
if (_root.wall.hitTest(_x - radius, _y, true)) {
xspeed = (-xspeed) * 0.6;
this._x = this._x + 2;
}
if (_root.wall.hitTest(_x + radius, _y, true)) {
xspeed = (-xspeed) * 0.6;
this._x = this._x - 2;
}
}
Frame 7
_root.ball._x = 86;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
Instance of Symbol 109 MovieClip "finish" in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.score = _root.score + 100;
_root.nextFrame();
}
}
Instance of Symbol 73 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 86;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Frame 8
_root.ball._x = 478.4;
_root.ball._y = 91.2;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
Instance of Symbol 111 MovieClip "finish" in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.score = _root.score + 100;
_root.nextFrame();
}
}
Instance of Symbol 71 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
this.gotoAndStop(2);
_root.wall.locked.gotoAndPlay(2);
}
}
Instance of Symbol 71 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
this.gotoAndStop(2);
_root.wall.locked.gotoAndPlay(2);
}
}
Instance of Symbol 73 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 478.4;
_root.ball._y = 91.2;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 73 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 478.4;
_root.ball._y = 91.2;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Frame 9
_root.ball._x = 540;
_root.ball._y = 95;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
Instance of Symbol 124 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
this.gotoAndStop(2);
_root.wall.reddoor.gotoAndPlay(2);
}
}
Instance of Symbol 128 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
this.gotoAndStop(2);
_root.wall.greendoor.gotoAndPlay(2);
}
}
Instance of Symbol 130 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.score = _root.score + 100;
_root.nextFrame();
}
}
Instance of Symbol 73 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 540;
_root.ball._y = 95;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 73 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 540;
_root.ball._y = 95;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Frame 10
_root.ball._x = 540;
_root.ball._y = 95;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
Instance of Symbol 137 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
this.gotoAndStop(2);
_root.wall.reddoor.gotoAndPlay(2);
}
}
Instance of Symbol 138 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
this.gotoAndStop(2);
_root.wall.greendoor.gotoAndPlay(2);
}
}
Instance of Symbol 140 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
this.gotoAndStop(2);
_root.wall.bluedoor.gotoAndPlay(2);
}
}
Instance of Symbol 73 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 540;
_root.ball._y = 95;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 73 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 540;
_root.ball._y = 95;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 73 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 540;
_root.ball._y = 95;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Frame 11
clearInterval(myIntervalID);
clearInterval(countdown);
Frame 12
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
function countdown() {
time = time - 1;
}
myIntervalID = setInterval(countdown, 100);
Instance of Symbol 151 MovieClip "finish" in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.score = _root.score + 100;
_root.nextFrame();
}
}
Instance of Symbol 159 MovieClip "ball" in Frame 12
onClipEvent (load) {
power = 0.4;
yspeed = 0;
xspeed = 0;
friction = 1;
radius = 10;
}
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
yspeed = yspeed + power;
}
if (Key.isDown(38)) {
yspeed = yspeed - power;
}
if (Key.isDown(39)) {
xspeed = xspeed + power;
}
if (Key.isDown(37)) {
xspeed = xspeed - power;
}
if (this.texture._x > 53) {
this.texture._x = this.texture._x - 63;
}
if (this.texture._x < -53) {
this.texture._x = this.texture._x + 63;
}
if (this.texture._y > 53) {
this.texture._y = this.texture._y - 63;
}
if (this.texture._y < -53) {
this.texture._y = this.texture._y + 63;
}
xspeed = xspeed * friction;
yspeed = yspeed * friction;
this._y = this._y + yspeed;
this._x = this._x + xspeed;
this.texture._y = this.texture._y + yspeed;
this.texture._x = this.texture._x + xspeed;
if (_root.wall.hitTest(_x, _y + radius, true)) {
yspeed = (-yspeed) * 0.6;
this._y = this._y - 2;
}
if (_root.wall.hitTest(_x, _y - radius, true)) {
yspeed = (-yspeed) * 0.6;
this._y = this._y + 2;
}
if (_root.wall.hitTest(_x - radius, _y, true)) {
xspeed = (-xspeed) * 0.6;
this._x = this._x + 2;
}
if (_root.wall.hitTest(_x + radius, _y, true)) {
xspeed = (-xspeed) * 0.6;
this._x = this._x - 2;
}
}
Frame 13
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
Instance of Symbol 168 MovieClip "finish" in Frame 13
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.score = _root.score + 100;
_root.nextFrame();
}
}
Frame 14
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
Instance of Symbol 178 MovieClip "finish" in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.score = _root.score + 100;
_root.nextFrame();
}
}
Instance of Symbol 192 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
this.gotoAndStop(2);
_root.wall.bluedoor.gotoAndPlay(2);
}
}
Frame 15
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
Instance of Symbol 196 MovieClip "finish" in Frame 15
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.score = _root.score + 100;
_root.nextFrame();
}
}
Instance of Symbol 206 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
this.gotoAndStop(2);
_root.wall.bluedoor.gotoAndPlay(2);
}
}
Instance of Symbol 207 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
this.gotoAndStop(2);
_root.wall.greendoor.gotoAndPlay(2);
}
}
Instance of Symbol 208 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
this.gotoAndStop(2);
_root.wall.reddoor.gotoAndPlay(2);
}
}
Frame 16
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
Instance of Symbol 210 MovieClip "finish" in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.score = _root.score + 100;
_root.nextFrame();
}
}
Frame 17
stopAllSounds();
clearInterval(myIntervalID);
clearInterval(countdown);
Instance of Symbol 222 MovieClip in Frame 17
/* no clip actions */
Frame 18
_root.ball._x = 353;
_root.ball._y = 62;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
function countdown() {
time = time - 1;
}
myIntervalID = setInterval(countdown, 100);
Instance of Symbol 159 MovieClip "ball" in Frame 18
onClipEvent (load) {
power = 0.4;
yspeed = 0;
xspeed = 0;
friction = 1;
radius = 10;
}
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
yspeed = yspeed + power;
}
if (Key.isDown(38)) {
yspeed = yspeed - power;
}
if (Key.isDown(39)) {
xspeed = xspeed + power;
}
if (Key.isDown(37)) {
xspeed = xspeed - power;
}
if (this.texture._x > 53) {
this.texture._x = this.texture._x - 63;
}
if (this.texture._x < -53) {
this.texture._x = this.texture._x + 63;
}
if (this.texture._y > 53) {
this.texture._y = this.texture._y - 63;
}
if (this.texture._y < -53) {
this.texture._y = this.texture._y + 63;
}
xspeed = xspeed * friction;
yspeed = yspeed * friction;
this._y = this._y + yspeed;
this._x = this._x + xspeed;
this.texture._y = this.texture._y + yspeed;
this.texture._x = this.texture._x + xspeed;
if (_root.wall.hitTest(_x, _y + radius, true)) {
yspeed = (-yspeed) * 0.99;
this._y = this._y - 2;
}
if (_root.wall.hitTest(_x, _y - radius, true)) {
yspeed = (-yspeed) * 0.99;
this._y = this._y + 2;
}
if (_root.wall.hitTest(_x - radius, _y, true)) {
xspeed = (-xspeed) * 0.99;
this._x = this._x + 2;
}
if (_root.wall.hitTest(_x + radius, _y, true)) {
xspeed = (-xspeed) * 0.99;
this._x = this._x - 2;
}
}
Instance of Symbol 227 MovieClip "finish" in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.score = _root.score + 100;
_root.nextFrame();
}
}
Instance of Symbol 228 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 353;
_root.ball._y = 62;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 229 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 353;
_root.ball._y = 62;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 230 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 353;
_root.ball._y = 62;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 231 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 353;
_root.ball._y = 62;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 232 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 353;
_root.ball._y = 62;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 233 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 353;
_root.ball._y = 62;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 234 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 353;
_root.ball._y = 62;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 235 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 353;
_root.ball._y = 62;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Frame 19
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
Instance of Symbol 242 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 243 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 244 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 245 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 246 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 247 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 248 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 249 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 250 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 251 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 252 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 253 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 254 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 255 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 256 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 257 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 258 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 259 MovieClip "finish" in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.score = _root.score + 100;
_root.nextFrame();
}
}
Instance of Symbol 260 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 261 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 262 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 263 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 264 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Frame 20
_root.ball._x = 488;
_root.ball._y = 65;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
Instance of Symbol 267 MovieClip "finish" in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.score = _root.score + 100;
_root.nextFrame();
}
}
Instance of Symbol 268 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 488;
_root.ball._y = 65;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 269 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 488;
_root.ball._y = 65;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 270 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 488;
_root.ball._y = 65;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 271 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 488;
_root.ball._y = 65;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 272 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 488;
_root.ball._y = 65;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 273 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 488;
_root.ball._y = 65;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 274 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 488;
_root.ball._y = 65;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 275 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 488;
_root.ball._y = 65;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 276 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 488;
_root.ball._y = 65;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 277 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 488;
_root.ball._y = 65;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 278 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 488;
_root.ball._y = 65;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 279 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 488;
_root.ball._y = 65;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 280 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 488;
_root.ball._y = 65;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 281 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 488;
_root.ball._y = 65;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 282 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 488;
_root.ball._y = 65;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 283 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 488;
_root.ball._y = 65;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 284 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 488;
_root.ball._y = 65;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 285 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 488;
_root.ball._y = 65;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 286 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 488;
_root.ball._y = 65;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 287 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 488;
_root.ball._y = 65;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 288 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 488;
_root.ball._y = 65;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 222 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 488;
_root.ball._y = 65;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 289 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 488;
_root.ball._y = 65;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Frame 21
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
Instance of Symbol 293 MovieClip "finish" in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.score = _root.score + 100;
_root.nextFrame();
}
}
Instance of Symbol 294 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 295 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 296 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 297 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 298 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 299 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 300 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 301 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 302 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 305 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 306 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 307 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 308 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 310 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 311 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 312 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 313 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 314 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 316 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 317 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 318 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 319 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 320 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 321 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 322 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 323 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 324 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 326 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 327 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 328 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 329 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 333 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 334 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 336 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 337 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 343 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Frame 22
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
Instance of Symbol 346 MovieClip "finish" in Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.score = _root.score + 100;
_root.nextFrame();
}
}
Instance of Symbol 348 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 349 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 350 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 351 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 352 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 353 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 354 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 355 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 356 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 357 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 358 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 359 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 360 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 361 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 362 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 363 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 364 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 365 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 366 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 367 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 90;
_root.ball._y = 67;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Frame 23
clearInterval(myIntervalID);
clearInterval(countdown);
Frame 24
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
function countdown() {
time = time - 1;
}
myIntervalID = setInterval(countdown, 100);
Instance of Symbol 384 MovieClip "finish" in Frame 24
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.score = _root.score + 100;
_root.nextFrame();
}
}
Instance of Symbol 376 MovieClip in Frame 24
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.ball._x = 130;
_root.ball._y = 232;
}
}
Instance of Symbol 376 MovieClip in Frame 24
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.ball._x = 509;
_root.ball._y = 234;
}
}
Instance of Symbol 73 MovieClip in Frame 24
onClipEvent (enterFrame) {
this._x = 509;
this._y = 234;
}
Instance of Symbol 73 MovieClip in Frame 24
onClipEvent (enterFrame) {
this._x = 130;
this._y = 232;
}
Instance of Symbol 89 MovieClip "ball" in Frame 24
onClipEvent (load) {
power = 0.4;
yspeed = 0;
xspeed = 0;
friction = 0.99;
radius = 10;
}
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
yspeed = yspeed + power;
}
if (Key.isDown(38)) {
yspeed = yspeed - power;
}
if (Key.isDown(39)) {
xspeed = xspeed + power;
}
if (Key.isDown(37)) {
xspeed = xspeed - power;
}
if (this.texture._x > 53) {
this.texture._x = this.texture._x - 63;
}
if (this.texture._x < -53) {
this.texture._x = this.texture._x + 63;
}
if (this.texture._y > 53) {
this.texture._y = this.texture._y - 63;
}
if (this.texture._y < -53) {
this.texture._y = this.texture._y + 63;
}
xspeed = xspeed * friction;
yspeed = yspeed * friction;
this._y = this._y + yspeed;
this._x = this._x + xspeed;
this.texture._y = this.texture._y + yspeed;
this.texture._x = this.texture._x + xspeed;
if (_root.wall.hitTest(_x, _y + radius, true)) {
yspeed = (-yspeed) * 0.6;
this._y = this._y - 2;
}
if (_root.wall.hitTest(_x, _y - radius, true)) {
yspeed = (-yspeed) * 0.6;
this._y = this._y + 2;
}
if (_root.wall.hitTest(_x - radius, _y, true)) {
xspeed = (-xspeed) * 0.6;
this._x = this._x + 2;
}
if (_root.wall.hitTest(_x + radius, _y, true)) {
xspeed = (-xspeed) * 0.6;
this._x = this._x - 2;
}
}
Frame 25
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
Instance of Symbol 390 MovieClip "finish" in Frame 25
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.score = _root.score + 100;
_root.nextFrame();
}
}
Instance of Symbol 376 MovieClip in Frame 25
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.ball._x = 124;
_root.ball._y = 300;
}
}
Instance of Symbol 73 MovieClip in Frame 25
onClipEvent (enterFrame) {
this.ball._x = 124;
this.ball._y = 300;
}
Instance of Symbol 376 MovieClip in Frame 25
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.ball._x = 311;
_root.ball._y = 367;
}
}
Instance of Symbol 73 MovieClip in Frame 25
onClipEvent (enterFrame) {
this.ball._x = 311;
this.ball._y = 367;
}
Frame 26
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
Instance of Symbol 395 MovieClip "finish" in Frame 26
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.score = _root.score + 100;
_root.nextFrame();
}
}
Instance of Symbol 376 MovieClip in Frame 26
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.ball._x = 411;
_root.ball._y = 94;
}
}
Instance of Symbol 73 MovieClip in Frame 26
onClipEvent (enterFrame) {
this.ball._x = 131;
this.ball._y = 432;
}
Instance of Symbol 73 MovieClip in Frame 26
onClipEvent (enterFrame) {
this.ball._x = 411;
this.ball._y = 94;
}
Instance of Symbol 376 MovieClip in Frame 26
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.ball._x = 500;
_root.ball._y = 300;
}
}
Instance of Symbol 73 MovieClip in Frame 26
onClipEvent (enterFrame) {
this.ball._x = 500;
this.ball._y = 300;
}
Instance of Symbol 376 MovieClip in Frame 26
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.ball._x = 131;
_root.ball._y = 432;
}
}
Instance of Symbol 89 MovieClip "ball" in Frame 26
onClipEvent (load) {
power = 0.4;
yspeed = 0;
xspeed = 0;
friction = 0.99;
radius = 10;
}
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
yspeed = yspeed + power;
}
if (Key.isDown(38)) {
yspeed = yspeed - power;
}
if (Key.isDown(39)) {
xspeed = xspeed + power;
}
if (Key.isDown(37)) {
xspeed = xspeed - power;
}
if (this.texture._x > 53) {
this.texture._x = this.texture._x - 63;
}
if (this.texture._x < -53) {
this.texture._x = this.texture._x + 63;
}
if (this.texture._y > 53) {
this.texture._y = this.texture._y - 63;
}
if (this.texture._y < -53) {
this.texture._y = this.texture._y + 63;
}
xspeed = xspeed * friction;
yspeed = yspeed * friction;
this._y = this._y + yspeed;
this._x = this._x + xspeed;
this.texture._y = this.texture._y + yspeed;
this.texture._x = this.texture._x + xspeed;
if (_root.wall.hitTest(_x, _y + radius, true)) {
yspeed = (-yspeed) * 0.6;
this._y = this._y - 2;
}
if (_root.wall.hitTest(_x, _y - radius, true)) {
yspeed = (-yspeed) * 0.6;
this._y = this._y + 2;
}
if (_root.wall.hitTest(_x - radius, _y, true)) {
xspeed = (-xspeed) * 0.6;
this._x = this._x + 2;
}
if (_root.wall.hitTest(_x + radius, _y, true)) {
xspeed = (-xspeed) * 0.6;
this._x = this._x - 2;
}
}
Frame 27
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
Instance of Symbol 398 MovieClip "finish" in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.score = _root.score + 100;
_root.nextFrame();
}
}
Instance of Symbol 376 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.ball._x = 318;
_root.ball._y = 102;
}
}
Instance of Symbol 73 MovieClip in Frame 27
onClipEvent (enterFrame) {
this.ball._x = 508;
this.ball._y = 94;
}
Instance of Symbol 73 MovieClip in Frame 27
onClipEvent (enterFrame) {
this.ball._x = 318;
this.ball._y = 102;
}
Instance of Symbol 376 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.ball._x = 508;
_root.ball._y = 94;
}
}
Frame 28
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
Instance of Symbol 401 MovieClip "finish" in Frame 28
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.score = _root.score + 100;
_root.nextFrame();
}
}
Instance of Symbol 73 MovieClip in Frame 28
onClipEvent (enterFrame) {
this.ball._x = 508;
this.ball._y = 291;
}
Instance of Symbol 376 MovieClip in Frame 28
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.ball._x = 508;
_root.ball._y = 291;
}
}
Instance of Symbol 73 MovieClip in Frame 28
onClipEvent (enterFrame) {
this.ball._x = 313;
this.ball._y = 217;
}
Instance of Symbol 376 MovieClip in Frame 28
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.ball._x = 313;
_root.ball._y = 217;
}
}
Instance of Symbol 376 MovieClip in Frame 28
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.ball._x = 120;
_root.ball._y = 233;
}
}
Instance of Symbol 73 MovieClip in Frame 28
onClipEvent (enterFrame) {
this.ball._x = 120;
this.ball._y = 233;
}
Frame 29
clearInterval(myIntervalID);
clearInterval(countdown);
stopAllSounds();
var totalscore = ((score + time) - (faults * 100));
Symbol 19 MovieClip Frame 341
_root.gotoAndStop("play");
Symbol 32 Button
on (release) {
getURL ("http://www.bigfishgames.com/online-games/?src=scramball&afcode=af891eef6b8a", "_self");
}
Symbol 36 Button
on (release) {
this.gotoAndStop("4");
}
Symbol 40 Button
on (release) {
gotoAndStop (5);
}
Symbol 43 Button
on (release) {
global.setVolume(0);
}
Symbol 46 Button
on (release) {
global.setVolume(100);
}
Symbol 55 Button
on (release) {
this.gotoAndStop("3");
}
Symbol 65 Button
on (release) {
gotoAndStop (6);
}
Symbol 71 MovieClip Frame 1
stop();
Symbol 115 MovieClip Frame 1
stop();
Symbol 115 MovieClip Frame 11
stop();
Symbol 119 MovieClip Frame 1
stop();
Symbol 119 MovieClip Frame 11
stop();
Symbol 120 MovieClip Frame 1
stop();
Symbol 120 MovieClip Frame 11
stop();
Symbol 124 MovieClip Frame 1
stop();
Symbol 128 MovieClip Frame 1
stop();
Instance of Symbol 129 MovieClip "finish" in Symbol 130 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.nextFrame();
}
}
Symbol 132 MovieClip Frame 1
stop();
Symbol 132 MovieClip Frame 11
stop();
Symbol 133 MovieClip Frame 1
stop();
Symbol 133 MovieClip Frame 11
stop();
Symbol 134 MovieClip Frame 1
stop();
Symbol 134 MovieClip Frame 11
stop();
Symbol 137 MovieClip Frame 1
stop();
Symbol 138 MovieClip Frame 1
stop();
Symbol 140 MovieClip Frame 1
stop();
Instance of Symbol 129 MovieClip "finish" in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.score = _root.score + 100;
_root.nextFrame();
}
}
Symbol 143 Button
on (release) {
gotoAndStop (12);
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 185 MovieClip in Symbol 186 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.ball._x = 53;
_root.ball._y = 60;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Symbol 189 MovieClip Frame 1
stop();
Symbol 189 MovieClip Frame 11
stop();
Symbol 192 MovieClip Frame 1
stop();
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 552;
_root.ball._y = 318;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 307;
_root.ball._y = 61;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Symbol 199 MovieClip Frame 1
stop();
Symbol 199 MovieClip Frame 11
stop();
Symbol 201 MovieClip Frame 1
stop();
Symbol 201 MovieClip Frame 11
stop();
Symbol 203 MovieClip Frame 1
stop();
Symbol 203 MovieClip Frame 11
stop();
Symbol 206 MovieClip Frame 1
stop();
Symbol 207 MovieClip Frame 1
stop();
Symbol 208 MovieClip Frame 1
stop();
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 211 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 70.4;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Symbol 217 Button
on (release) {
gotoAndStop (18);
}
Instance of Symbol 222 MovieClip in Symbol 292 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.ball._x = 553;
_root.ball._y = 58;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Symbol 369 Button
on (release) {
gotoAndStop (24);
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Instance of Symbol 162 MovieClip in Symbol 392 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball.hidden)) {
_root.faults = _root.faults + 1;
_root.ball._x = 128;
_root.ball._y = 96;
_root.ball.xspeed = 0;
_root.ball.yspeed = 0;
}
}
Symbol 418 Button
on (release) {
gotoAndStop (3);
}