Frame 1
stage.showMenu = false;
stop();
stopAllSounds();
Frame 4
stop();
_quality = LOW;
_root.level = 1;
_root.hitsneeded = 0;
_root.hits = 0;
_root.lives = 6;
_root.score = 0;
Mouse.show();
Instance of Symbol 114 MovieClip "paddle" in Frame 4
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 5
stop();
_root.tries = 3;
Mouse.hide();
Instance of Symbol 179 MovieClip "ball" in Frame 5
onClipEvent (load) {
Xspeed = 0;
yspeed = 0;
_root.fallspeed = 0.6;
_root.serve = 1;
}
onClipEvent (enterFrame) {
_x = (_x + Xspeed);
_y = (_y + yspeed);
Yspeed = yspeed + _root.fallspeed;
}
onClipEvent (enterFrame) {
if (hitTest(_root.upperwall)) {
Yspeed = Math.abs(Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay ("blip");
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.rightwall)) {
Xspeed = -Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay ("blip");
};
}
if (hitTest(_root.leftwall)) {
Xspeed = Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay ("blip");
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.lowerwall)) {
Yspeed = (-Yspeed) + 5;
Xspeed = 0;
}
if (hitTest(_root.servewall)) {
_root.serve = 1;
tellTarget ("_root.sound") {
gotoAndPlay ("loseball");
_root.lives--;
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.paddle)) {
xdifference = (_x - _root.paddle._x) / 8;
Yspeed = -Math.abs(((-Yspeed) - 2) + Math.abs(xdifference));
Xspeed = xdifference;
if (_root.serve == 0) {
tellTarget ("_root.sound") {
gotoAndPlay ("blip");
};
}
}
}
onClipEvent (enterFrame) {
if (Yspeed > 20) {
Yspeed = 20;
}
if (Xspeed == 0) {
Xspeed = 0.1;
}
if (Xspeed < -20) {
Xspeed = -20;
}
}
onClipEvent (enterFrame) {
if (_root.serve == 1) {
_x = _root.paddle._x;
_y = (_root.paddle._y - 10);
}
}
Instance of Symbol 182 MovieClip in Frame 5
onClipEvent (enterFrame) {
stop();
if (_root.hits == _root.hitsneeded) {
tellTarget ("_root") {
gotoAndStop(_currentframe + 2);
};
_root.serve = 1;
_root.hitsneeded = 0;
_root.hits = 0;
}
}
onClipEvent (enterFrame) {
if (_root.lives < 0) {
tellTarget ("_root") {
gotoAndStop ("gameover");
};
}
}
Frame 6
gotoAndStop (40);
Frame 7
stop();
Mouse.show();
_root.hitsneeded = 0;
_root.hits = 0;
_root.level = 2;
Instance of Symbol 114 MovieClip "paddle" in Frame 7
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 8
stop();
Mouse.hide();
_root.serve = 1;
Instance of Symbol 232 MovieClip in Frame 8
onClipEvent (load) {
_root.time = 60;
}
Instance of Symbol 237 MovieClip "ball" in Frame 8
onClipEvent (load) {
Xspeed = 0;
yspeed = 0;
_root.fallspeed = 0.46;
_root.serve = 1;
}
onClipEvent (enterFrame) {
_rotation = (_rotation + (Xspeed * 2));
_x = (_x + Xspeed);
_y = (_y + yspeed);
Yspeed = yspeed + _root.fallspeed;
}
onClipEvent (enterFrame) {
if (hitTest(_root.upperwall)) {
Yspeed = Math.abs(Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.rightwall)) {
Xspeed = -Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (hitTest(_root.leftwall)) {
Xspeed = Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.lowerwall)) {
Yspeed = (-Yspeed) + 5;
Xspeed = 0;
}
if (hitTest(_root.servewall)) {
_root.serve = 1;
tellTarget ("_root.sound") {
gotoAndPlay ("loseball");
_root.lives--;
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.paddle)) {
xdifference = (_x - _root.paddle._x) / 5;
Yspeed = -Math.abs(((-Yspeed) - 2) + (Math.abs(xdifference) / 7));
Xspeed = xdifference;
if (_root.serve == 0) {
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
}
onClipEvent (enterFrame) {
if (Yspeed > 18) {
Yspeed = 18;
}
if (Xspeed == 0) {
Xspeed = 0.1;
}
if (Yspeed < -18) {
Yspeed = -18;
}
}
onClipEvent (enterFrame) {
if (_root.serve == 1) {
_x = _root.paddle._x;
_y = (_root.paddle._y - 10);
}
}
Frame 9
gotoAndStop (40);
Frame 10
stop();
_root.level = 3;
_root.hitsneeded = 0;
_root.hits = 0;
_root.lives = 5;
Mouse.show();
Instance of Symbol 114 MovieClip "paddle" in Frame 10
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 11
stop();
Mouse.hide();
Instance of Symbol 274 MovieClip "ball" in Frame 11
onClipEvent (load) {
Xspeed = 0;
yspeed = 0;
_root.fallspeed = 0.4;
_root.serve = 1;
}
onClipEvent (enterFrame) {
_rotation = (_rotation + (Xspeed * 2));
_x = (_x + Xspeed);
_y = (_y + yspeed);
Yspeed = yspeed + _root.fallspeed;
}
onClipEvent (enterFrame) {
if (hitTest(_root.upperwall)) {
Yspeed = Math.abs(Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.rightwall)) {
Xspeed = -Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (hitTest(_root.leftwall)) {
Xspeed = Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.lowerwall)) {
Yspeed = (-Yspeed) + 5;
Xspeed = 0;
}
if (hitTest(_root.servewall)) {
_root.serve = 1;
tellTarget ("_root.sound") {
gotoAndPlay ("loseball");
_root.lives--;
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.paddle)) {
xdifference = (_x - _root.paddle._x) / 5;
Yspeed = -Math.abs(((-Yspeed) - 2) + (Math.abs(xdifference) / 7));
Xspeed = xdifference;
if (_root.serve == 0) {
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
}
onClipEvent (enterFrame) {
if (Yspeed > 18) {
Yspeed = 18;
}
if (Xspeed == 0) {
Xspeed = 0.1;
}
if (Yspeed < -18) {
Yspeed = -18;
}
}
onClipEvent (enterFrame) {
if (_root.serve == 1) {
_x = _root.paddle._x;
_y = (_root.paddle._y - 10);
}
}
Instance of Symbol 182 MovieClip in Frame 11
onClipEvent (enterFrame) {
stop();
if (_root.hits == _root.hitsneeded) {
tellTarget ("_root") {
gotoAndStop(_currentframe + 2);
};
_root.serve = 1;
_root.hitsneeded = 0;
_root.hits = 0;
}
}
onClipEvent (enterFrame) {
if (_root.lives < 0) {
tellTarget ("_root") {
gotoAndStop ("gameover");
};
}
}
Frame 12
gotoAndStop (40);
Frame 13
stop();
_root.level = 4;
_root.hitsneeded = 0;
_root.hits = 0;
_root.lives = 4;
Mouse.show();
Instance of Symbol 114 MovieClip "paddle" in Frame 13
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 14
stop();
Mouse.hide();
Instance of Symbol 274 MovieClip "ball" in Frame 14
onClipEvent (load) {
Xspeed = 0;
yspeed = 0;
_root.fallspeed = 0.4;
_root.serve = 1;
}
onClipEvent (enterFrame) {
_rotation = (_rotation + (Xspeed * 2));
_x = (_x + Xspeed);
_y = (_y + yspeed);
Yspeed = yspeed + _root.fallspeed;
}
onClipEvent (enterFrame) {
if (hitTest(_root.upperwall)) {
Yspeed = Math.abs(Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.rightwall)) {
Xspeed = -Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (hitTest(_root.leftwall)) {
Xspeed = Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.lowerwall)) {
Yspeed = (-Yspeed) + 5;
Xspeed = 0;
}
if (hitTest(_root.servewall)) {
_root.serve = 1;
tellTarget ("_root.sound") {
gotoAndPlay ("loseball");
_root.lives--;
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.paddle)) {
xdifference = (_x - _root.paddle._x) / 5;
Yspeed = -Math.abs(((-Yspeed) - 2) + (Math.abs(xdifference) / 7));
Xspeed = xdifference;
if (_root.serve == 0) {
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
}
onClipEvent (enterFrame) {
if (Yspeed > 18) {
Yspeed = 18;
}
if (Xspeed == 0) {
Xspeed = 0.1;
}
if (Yspeed < -18) {
Yspeed = -18;
}
}
onClipEvent (enterFrame) {
if (_root.serve == 1) {
_x = _root.paddle._x;
_y = (_root.paddle._y - 10);
}
}
Instance of Symbol 182 MovieClip in Frame 14
onClipEvent (enterFrame) {
stop();
if (_root.hits == _root.hitsneeded) {
tellTarget ("_root") {
gotoAndStop(_currentframe + 2);
};
_root.serve = 1;
_root.hitsneeded = 0;
_root.hits = 0;
}
}
onClipEvent (enterFrame) {
if (_root.lives < 0) {
tellTarget ("_root") {
gotoAndStop ("gameover");
};
}
}
Frame 15
gotoAndStop (40);
Frame 16
stop();
_root.level = 5;
_root.hitsneeded = 0;
_root.hits = 0;
_root.lives = 5000;
Mouse.show();
Instance of Symbol 114 MovieClip "paddle" in Frame 16
onClipEvent (enterFrame) {
if (_parent._xmouse < 342) {
_x = _parent._xmouse;
}
}
Frame 17
stop();
Mouse.hide();
_root.level = 5;
Instance of Symbol 313 MovieClip in Frame 17
onClipEvent (load) {
_root.time = 60;
}
Instance of Symbol 319 MovieClip "ball" in Frame 17
onClipEvent (load) {
Xspeed = 0;
yspeed = 0;
_root.fallspeed = 0.4;
_root.fanspeed = 0.3;
_root.serve = 1;
}
onClipEvent (enterFrame) {
if (hitTest(_root.wave) && (Xspeed < 16)) {
Xspeed = Xspeed + _root.fanspeed;
} else if (hitTest(_root.wave) && (Xspeed > 2)) {
Xspeed = Xspeed * (_root.fanspeed * 3);
}
_rotation = (_rotation + (Xspeed * 2));
_x = (_x + Xspeed);
_y = (_y + yspeed);
Yspeed = yspeed + _root.fallspeed;
}
onClipEvent (enterFrame) {
if (hitTest(_root.upperwall)) {
Yspeed = Math.abs(Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.rightwall)) {
Xspeed = -Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (hitTest(_root.leftwall)) {
Xspeed = Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.lowerwall)) {
Yspeed = (-Yspeed) + 5;
Xspeed = 0;
}
if (hitTest(_root.servewall)) {
_root.serve = 1;
tellTarget ("_root.sound") {
gotoAndPlay ("loseball");
_root.lives--;
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.paddle)) {
xdifference = (_x - _root.paddle._x) / 5;
Yspeed = -Math.abs(((-Yspeed) - 2) + (Math.abs(xdifference) / 7));
Xspeed = xdifference;
if (_root.serve == 0) {
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
}
onClipEvent (enterFrame) {
if (Yspeed > 18) {
Yspeed = 18;
}
if (Xspeed == 0) {
Xspeed = 0.1;
}
if (Yspeed < -18) {
Yspeed = -18;
}
if (Xspeed < -16) {
Xspeed = -8;
}
if (Xspeed > 16) {
Xspeed = 8;
}
}
onClipEvent (enterFrame) {
if (_root.serve == 1) {
_x = _root.paddle._x;
_y = (_root.paddle._y - 10);
}
}
Frame 18
gotoAndStop (40);
Frame 19
stop();
_root.level = 4;
_root.hitsneeded = 0;
_root.hits = 0;
_root.lives = 4;
Mouse.show();
Instance of Symbol 114 MovieClip "paddle" in Frame 19
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 20
stop();
Mouse.hide();
Instance of Symbol 319 MovieClip "ball" in Frame 20
onClipEvent (load) {
Xspeed = 0;
yspeed = 0;
_root.fallspeed = 0.28;
_root.fanspeed = 0.3;
_root.serve = 1;
}
onClipEvent (enterFrame) {
if (hitTest(_root.wave) && (Xspeed < 16)) {
Xspeed = Xspeed + _root.fanspeed;
} else if (hitTest(_root.wave) && (Xspeed > 2)) {
Xspeed = Xspeed * (_root.fanspeed * 3);
}
if (hitTest(_root.wave2) && (Xspeed < 16)) {
Xspeed = Xspeed - _root.fanspeed;
} else if (hitTest(_root.wave2) && (Xspeed > 2)) {
Xspeed = Xspeed * (_root.fanspeed * 3);
}
_rotation = (_rotation + (Xspeed * 2));
_x = (_x + Xspeed);
_y = (_y + yspeed);
Yspeed = yspeed + _root.fallspeed;
}
onClipEvent (enterFrame) {
if (hitTest(_root.upperwall)) {
Yspeed = Math.abs(Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.rightwall)) {
Xspeed = -Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (hitTest(_root.leftwall)) {
Xspeed = Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.lowerwall)) {
Yspeed = (-Yspeed) + 5;
Xspeed = 0;
}
if (hitTest(_root.servewall)) {
_root.serve = 1;
tellTarget ("_root.sound") {
gotoAndPlay ("loseball");
_root.lives--;
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.paddle)) {
xdifference = (_x - _root.paddle._x) / 5;
Yspeed = -Math.abs(((-Yspeed) - 2) + (Math.abs(xdifference) / 7));
Xspeed = xdifference;
if (_root.serve == 0) {
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
}
onClipEvent (enterFrame) {
if (Yspeed > 14) {
Yspeed = 14;
}
if (Xspeed == 0) {
Xspeed = 0.1;
}
if (Yspeed < -14) {
Yspeed = -14;
}
if (Xspeed < -14) {
Xspeed = -14;
}
if (Xspeed > 14) {
Xspeed = 14;
}
}
onClipEvent (enterFrame) {
if (_root.serve == 1) {
_x = _root.paddle._x;
_y = (_root.paddle._y - 10);
}
}
Instance of Symbol 182 MovieClip in Frame 20
onClipEvent (enterFrame) {
stop();
if (_root.hits == _root.hitsneeded) {
tellTarget ("_root") {
gotoAndStop(_currentframe + 2);
};
_root.serve = 1;
_root.hitsneeded = 0;
_root.hits = 0;
}
}
onClipEvent (enterFrame) {
if (_root.lives < 0) {
tellTarget ("_root") {
gotoAndStop ("gameover");
};
}
}
Frame 21
gotoAndStop (40);
Frame 22
stop();
_root.level = 4;
_root.hitsneeded = 0;
_root.hits = 0;
_root.lives = 4;
Mouse.show();
Instance of Symbol 114 MovieClip "paddle" in Frame 22
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Instance of Symbol 114 MovieClip "paddle2" in Frame 22
onClipEvent (enterFrame) {
if ((_parent._xmouse < 520) && (_parent._xmouse > 330)) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
if (_parent._xmouse > 519) {
_x = 519;
} else if (_parent._xmouse < 329) {
_x = 330;
}
}
Frame 23
stop();
Mouse.hide();
Instance of Symbol 352 MovieClip "ball" in Frame 23
onClipEvent (load) {
Xspeed = 0;
yspeed = 0;
_root.fallspeed = 0.1;
_root.serve = 1;
}
onClipEvent (enterFrame) {
_rotation = (_rotation + (Xspeed * 2));
_x = (_x + Xspeed);
_y = (_y + yspeed);
Yspeed = yspeed + _root.fallspeed;
}
onClipEvent (enterFrame) {
if (hitTest(_root.upperwall)) {
Yspeed = Math.abs(Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.rightwall)) {
Xspeed = -Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (hitTest(_root.leftwall)) {
Xspeed = Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.lowerwall)) {
Yspeed = (-Yspeed) + 5;
Xspeed = 0;
}
if (hitTest(_root.servewall)) {
_root.serve = 1;
tellTarget ("_root.sound") {
gotoAndPlay ("loseball");
_root.lives--;
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.paddle)) {
xdifference = (_x - _root.paddle._x) / 5;
Yspeed = -Math.abs(((-Yspeed) - 2) + (Math.abs(xdifference) / 7));
Xspeed = xdifference;
if (_root.serve == 0) {
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.paddle2)) {
xdifference = (_x - _root.paddle2._x) / 5;
Yspeed = -Math.abs(((-Yspeed) - 2) + Math.abs(xdifference));
Xspeed = xdifference;
if (_root.serve == 0) {
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
}
onClipEvent (enterFrame) {
if (Yspeed > 10) {
Yspeed = 10;
}
if (Xspeed == 0) {
Xspeed = 0.1;
}
if (Yspeed < -10) {
Yspeed = -10;
}
}
onClipEvent (enterFrame) {
if (_root.serve == 1) {
_x = _root.paddle._x;
_y = (_root.paddle._y - 10);
}
}
Instance of Symbol 182 MovieClip in Frame 23
onClipEvent (enterFrame) {
stop();
if (_root.hits == _root.hitsneeded) {
tellTarget ("_root") {
gotoAndStop(_currentframe + 2);
};
_root.serve = 1;
_root.hitsneeded = 0;
_root.hits = 0;
}
}
onClipEvent (enterFrame) {
if (_root.lives < 0) {
tellTarget ("_root") {
gotoAndStop ("gameover");
};
}
}
Frame 24
gotoAndStop (40);
Frame 25
stop();
_root.level = 4;
_root.hitsneeded = 0;
_root.hits = 0;
_root.lives = 4;
Mouse.show();
Instance of Symbol 65 MovieClip in Frame 25
onClipEvent (enterFrame) {
if (blocktop.hitTest(_root.ball)) {
_root.ball.Yspeed = -Math.abs(_root.ball.Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockleft.hitTest(_root.ball)) {
_root.ball.Xspeed = -Math.abs(_root.ball.Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockright.hitTest(_root.ball)) {
_root.ball.Xspeed = Math.abs(_root.ball.Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Instance of Symbol 114 MovieClip "paddle" in Frame 25
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 26
stop();
Mouse.hide();
Instance of Symbol 274 MovieClip "ball" in Frame 26
onClipEvent (load) {
Xspeed = 0;
yspeed = 0;
_root.fallspeed = 0.28;
_root.fanspeed = 0.3;
_root.serve = 1;
}
onClipEvent (enterFrame) {
if (hitTest(_root.wave) && (Xspeed < 16)) {
Xspeed = Xspeed + _root.fanspeed;
} else if (hitTest(_root.wave) && (Xspeed > 2)) {
Xspeed = Xspeed * (_root.fanspeed * 3);
}
if (hitTest(_root.wave2) && (Xspeed < 16)) {
Xspeed = Xspeed - _root.fanspeed;
} else if (hitTest(_root.wave2) && (Xspeed > 2)) {
Xspeed = Xspeed * (_root.fanspeed * 3);
}
_rotation = (_rotation + (Xspeed * 2));
_x = (_x + Xspeed);
_y = (_y + yspeed);
Yspeed = yspeed + _root.fallspeed;
}
onClipEvent (enterFrame) {
if (hitTest(_root.upperwall)) {
Yspeed = Math.abs(Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.rightwall)) {
Xspeed = -Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (hitTest(_root.leftwall)) {
Xspeed = Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.lowerwall)) {
Yspeed = (-Yspeed) + 5;
Xspeed = 0;
}
if (hitTest(_root.servewall)) {
_root.serve = 1;
tellTarget ("_root.sound") {
gotoAndPlay ("loseball");
_root.lives--;
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.paddle)) {
xdifference = (_x - _root.paddle._x) / 5;
Yspeed = -Math.abs(((-Yspeed) - 2) + (Math.abs(xdifference) / 7));
Xspeed = xdifference;
if (_root.serve == 0) {
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
}
onClipEvent (enterFrame) {
if (Yspeed > 14) {
Yspeed = 14;
}
if (Xspeed == 0) {
Xspeed = 0.1;
}
if (Yspeed < -14) {
Yspeed = -14;
}
if (Xspeed < -14) {
Xspeed = -14;
}
if (Xspeed > 14) {
Xspeed = 14;
}
}
onClipEvent (enterFrame) {
if (_root.serve == 1) {
_x = _root.paddle._x;
_y = (_root.paddle._y - 10);
}
}
Instance of Symbol 182 MovieClip in Frame 26
onClipEvent (enterFrame) {
stop();
if (_root.hits == _root.hitsneeded) {
tellTarget ("_root") {
gotoAndStop(_currentframe + 2);
};
_root.serve = 1;
_root.hitsneeded = 0;
_root.hits = 0;
}
}
onClipEvent (enterFrame) {
if (_root.lives < 0) {
tellTarget ("_root") {
gotoAndStop ("gameover");
};
}
}
Frame 27
gotoAndStop (40);
Frame 28
stop();
_root.level = 4;
_root.hitsneeded = 0;
_root.hits = 0;
_root.lives = 4;
Mouse.show();
Instance of Symbol 114 MovieClip "paddle" in Frame 28
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 29
stop();
Mouse.hide();
Instance of Symbol 372 MovieClip "ball" in Frame 29
onClipEvent (load) {
Xspeed = 0;
yspeed = 0;
_root.fallspeed = 0.28;
_root.fanspeed = 0.3;
_root.serve = 1;
}
onClipEvent (enterFrame) {
if (hitTest(_root.wave) && (Xspeed < 16)) {
Xspeed = Xspeed + _root.fanspeed;
} else if (hitTest(_root.wave) && (Xspeed > 2)) {
Xspeed = Xspeed * (_root.fanspeed * 3);
}
if (hitTest(_root.wave2) && (Xspeed < 16)) {
Xspeed = Xspeed - _root.fanspeed;
} else if (hitTest(_root.wave2) && (Xspeed > 2)) {
Xspeed = Xspeed * (_root.fanspeed * 3);
}
_rotation = (_rotation + (Xspeed * 2));
_x = (_x + Xspeed);
_y = (_y + yspeed);
Yspeed = yspeed + _root.fallspeed;
}
onClipEvent (enterFrame) {
if (hitTest(_root.upperwall)) {
Yspeed = Math.abs(Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.rightwall)) {
Xspeed = -Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (hitTest(_root.leftwall)) {
Xspeed = Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.lowerwall)) {
Yspeed = (-Yspeed) + 5;
Xspeed = 0;
}
if (hitTest(_root.servewall)) {
_root.serve = 1;
tellTarget ("_root.sound") {
gotoAndPlay ("loseball");
_root.lives--;
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.paddle)) {
xdifference = (_x - _root.paddle._x) / 5;
Yspeed = -Math.abs(((-Yspeed) - 2) + (Math.abs(xdifference) / 7));
Xspeed = xdifference;
if (_root.serve == 0) {
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
}
onClipEvent (enterFrame) {
if (Yspeed > 14) {
Yspeed = 14;
}
if (Xspeed == 0) {
Xspeed = 0.1;
}
if (Yspeed < -14) {
Yspeed = -14;
}
if (Xspeed < -14) {
Xspeed = -14;
}
if (Xspeed > 14) {
Xspeed = 14;
}
}
onClipEvent (enterFrame) {
if (_root.serve == 1) {
_x = _root.paddle._x;
_y = (_root.paddle._y - 10);
}
}
Instance of Symbol 182 MovieClip in Frame 29
onClipEvent (enterFrame) {
stop();
if (_root.hits == _root.hitsneeded) {
tellTarget ("_root") {
gotoAndStop(_currentframe + 2);
};
_root.serve = 1;
_root.hitsneeded = 0;
_root.hits = 0;
}
}
onClipEvent (enterFrame) {
if (_root.lives < 0) {
tellTarget ("_root") {
gotoAndStop ("gameover");
};
}
}
Frame 30
gotoAndStop (40);
Frame 31
stop();
_root.level = 4;
_root.hitsneeded = 0;
_root.hits = 0;
_root.lives = 3;
Mouse.show();
Instance of Symbol 114 MovieClip "paddle" in Frame 31
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 32
stop();
Mouse.hide();
Instance of Symbol 372 MovieClip "ball" in Frame 32
onClipEvent (load) {
Xspeed = 0;
yspeed = 0;
_root.fallspeed = 0.28;
_root.fanspeed = 0.3;
_root.serve = 1;
}
onClipEvent (enterFrame) {
if (hitTest(_root.wave) && (Xspeed < 16)) {
Xspeed = Xspeed + _root.fanspeed;
} else if (hitTest(_root.wave) && (Xspeed > 2)) {
Xspeed = Xspeed * (_root.fanspeed * 3);
}
if (hitTest(_root.wave2) && (Xspeed < 16)) {
Xspeed = Xspeed - _root.fanspeed;
} else if (hitTest(_root.wave2) && (Xspeed > 2)) {
Xspeed = Xspeed * (_root.fanspeed * 3);
}
_rotation = (_rotation + (Xspeed * 2));
_x = (_x + Xspeed);
_y = (_y + yspeed);
Yspeed = yspeed + _root.fallspeed;
}
onClipEvent (enterFrame) {
if (hitTest(_root.upperwall)) {
Yspeed = Math.abs(Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.rightwall)) {
Xspeed = -Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (hitTest(_root.leftwall)) {
Xspeed = Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.lowerwall)) {
Yspeed = (-Yspeed) + 5;
Xspeed = 0;
}
if (hitTest(_root.servewall)) {
_root.serve = 1;
tellTarget ("_root.sound") {
gotoAndPlay ("loseball");
_root.lives--;
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.paddle)) {
xdifference = (_x - _root.paddle._x) / 5;
Yspeed = -Math.abs(((-Yspeed) - 2) + (Math.abs(xdifference) / 7));
Xspeed = xdifference;
if (_root.serve == 0) {
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
}
onClipEvent (enterFrame) {
if (Yspeed > 14) {
Yspeed = 14;
}
if (Xspeed == 0) {
Xspeed = 0.1;
}
if (Yspeed < -14) {
Yspeed = -14;
}
if (Xspeed < -14) {
Xspeed = -14;
}
if (Xspeed > 14) {
Xspeed = 14;
}
}
onClipEvent (enterFrame) {
if (_root.serve == 1) {
_x = _root.paddle._x;
_y = (_root.paddle._y - 10);
}
}
Instance of Symbol 182 MovieClip in Frame 32
onClipEvent (enterFrame) {
stop();
if (_root.hits == _root.hitsneeded) {
tellTarget ("_root") {
gotoAndStop(_currentframe + 2);
};
_root.serve = 1;
_root.hitsneeded = 0;
_root.hits = 0;
}
}
onClipEvent (enterFrame) {
if (_root.lives < 0) {
tellTarget ("_root") {
gotoAndStop ("gameover");
};
}
}
Frame 33
gotoAndStop (40);
Frame 34
stop();
_root.level = 4;
_root.hitsneeded = 0;
_root.hits = 0;
_root.lives = 6;
_root.glow = 0;
_root.glowsneeded = 0;
Mouse.show();
Instance of Symbol 114 MovieClip "paddle" in Frame 34
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 35
stop();
Mouse.hide();
Instance of Symbol 179 MovieClip "ball" in Frame 35
onClipEvent (load) {
_root.fallspeed = 0.28;
_root.fanspeed = 0.3;
_root.serve = 1;
Xspeed = 0;
yspeed = 0;
_root.serve = 1;
}
onClipEvent (enterFrame) {
if (hitTest(_root.wave) && (Xspeed < 16)) {
Xspeed = Xspeed + _root.fanspeed;
} else if (hitTest(_root.wave) && (Xspeed > 2)) {
Xspeed = Xspeed * (_root.fanspeed * 3);
}
if (hitTest(_root.wave2) && (Xspeed < 16)) {
Xspeed = Xspeed - _root.fanspeed;
} else if (hitTest(_root.wave2) && (Xspeed > 2)) {
Xspeed = Xspeed * (_root.fanspeed * 3);
}
_rotation = (_rotation + (Xspeed * 2));
_x = (_x + Xspeed);
_y = (_y + yspeed);
Yspeed = yspeed + _root.fallspeed;
}
onClipEvent (enterFrame) {
if (hitTest(_root.upperwall)) {
Yspeed = Math.abs(Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.rightwall)) {
Xspeed = -Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (hitTest(_root.leftwall)) {
Xspeed = Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.lowerwall)) {
Yspeed = (-Yspeed) + 5;
Xspeed = 0;
}
if (hitTest(_root.servewall)) {
_root.serve = 1;
tellTarget ("_root.sound") {
gotoAndPlay ("loseball");
_root.lives--;
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.paddle)) {
xdifference = (_x - _root.paddle._x) / 5;
Yspeed = -Math.abs(((-Yspeed) - 2) + (Math.abs(xdifference) / 7));
Xspeed = xdifference;
if (_root.serve == 0) {
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
}
onClipEvent (enterFrame) {
if (Yspeed > 14) {
Yspeed = 14;
}
if (Xspeed == 0) {
Xspeed = 0.1;
}
if (Yspeed < -14) {
Yspeed = -14;
}
if (Xspeed < -14) {
Xspeed = -14;
}
if (Xspeed > 14) {
Xspeed = 14;
}
}
onClipEvent (enterFrame) {
if (_root.serve == 1) {
_x = _root.paddle._x;
_y = (_root.paddle._y - 10);
}
}
Instance of Symbol 182 MovieClip in Frame 35
onClipEvent (enterFrame) {
if (_root.glowsneeded < 1) {
_root.glow = 1;
} else {
_root.glow = 0;
}
stop();
if (_root.hits == _root.hitsneeded) {
tellTarget ("_root") {
gotoAndStop ("congrats");
};
_root.serve = 1;
_root.hitsneeded = 0;
_root.hits = 0;
}
}
onClipEvent (enterFrame) {
if (_root.lives < 0) {
tellTarget ("_root") {
gotoAndStop ("gameover");
};
}
}
Frame 36
Mouse.show();
stopAllSounds();
_root.gameover = 1;
Frame 37
gotoAndStop (40);
Frame 38
Mouse.show();
stopAllSounds();
_root.gameover = 1;
Frame 39
gotoAndStop (40);
Frame 40
Mouse.show();
stopAllSounds();
Frame 41
gotoAndStop (40);
Frame 42
stopAllSounds();
Mouse.show();
_root.hitsneeded = 0;
_root.hits = 0;
_root.time = 60;
_root.glow = 0;
_root.glowsneeded = 0;
_root.score = 0;
Frame 43
gotoAndStop (42);
Instance of Symbol 114 MovieClip "paddle" in Frame 43
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 44
stop();
Mouse.hide();
_root.level = 0;
_root.lives = 20000;
_root.score = 0;
Instance of Symbol 179 MovieClip "ball" in Frame 44
onClipEvent (load) {
Xspeed = 0;
yspeed = 0;
_root.fallspeed = 0.6;
_root.serve = 1;
}
onClipEvent (enterFrame) {
_x = (_x + Xspeed);
_y = (_y + yspeed);
Yspeed = yspeed + _root.fallspeed;
}
onClipEvent (enterFrame) {
if (hitTest(_root.upperwall)) {
Yspeed = Math.abs(Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay ("blip");
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.rightwall)) {
Xspeed = -Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay ("blip");
};
}
if (hitTest(_root.leftwall)) {
Xspeed = Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay ("blip");
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.lowerwall)) {
Yspeed = (-Yspeed) + 5;
Xspeed = 0;
}
if (hitTest(_root.servewall)) {
_root.serve = 1;
tellTarget ("_root.sound") {
gotoAndPlay ("loseball");
_root.lives--;
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.paddle)) {
xdifference = (_x - _root.paddle._x) / 8;
Yspeed = -Math.abs(((-Yspeed) - 2) + Math.abs(xdifference));
Xspeed = xdifference;
if (_root.serve == 0) {
tellTarget ("_root.sound") {
gotoAndPlay ("blip");
};
}
}
}
onClipEvent (enterFrame) {
if (Yspeed > 20) {
Yspeed = 20;
}
if (Xspeed == 0) {
Xspeed = 0.1;
}
if (Xspeed < -20) {
Xspeed = -20;
}
}
onClipEvent (enterFrame) {
if (_root.serve == 1) {
_x = _root.paddle._x;
_y = (_root.paddle._y - 10);
}
}
Instance of Symbol 182 MovieClip in Frame 44
onClipEvent (enterFrame) {
stop();
if (_root.hits == _root.hitsneeded) {
tellTarget ("_root") {
gotoAndStop(_currentframe + 2);
};
_root.serve = 1;
_root.hitsneeded = 0;
_root.hits = 0;
}
}
onClipEvent (enterFrame) {
if (_root.lives < 0) {
tellTarget ("_root") {
gotoAndStop ("gameover");
};
}
}
Frame 45
gotoAndStop (42);
Frame 46
gotoAndStop (42);
Instance of Symbol 114 MovieClip "paddle" in Frame 46
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 47
stop();
Mouse.hide();
_root.serve = 1;
_root.level = 2;
Instance of Symbol 237 MovieClip "ball" in Frame 47
onClipEvent (load) {
Xspeed = 0;
yspeed = 0;
_root.fallspeed = 0.46;
_root.serve = 1;
}
onClipEvent (enterFrame) {
_rotation = (_rotation + (Xspeed * 2));
_x = (_x + Xspeed);
_y = (_y + yspeed);
Yspeed = yspeed + _root.fallspeed;
}
onClipEvent (enterFrame) {
if (hitTest(_root.upperwall)) {
Yspeed = Math.abs(Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.rightwall)) {
Xspeed = -Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (hitTest(_root.leftwall)) {
Xspeed = Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.lowerwall)) {
Yspeed = (-Yspeed) + 5;
Xspeed = 0;
}
if (hitTest(_root.servewall)) {
_root.serve = 1;
tellTarget ("_root.sound") {
gotoAndPlay ("loseball");
_root.lives--;
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.paddle)) {
xdifference = (_x - _root.paddle._x) / 5;
Yspeed = -Math.abs(((-Yspeed) - 2) + (Math.abs(xdifference) / 7));
Xspeed = xdifference;
if (_root.serve == 0) {
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
}
onClipEvent (enterFrame) {
if (Yspeed > 18) {
Yspeed = 18;
}
if (Xspeed == 0) {
Xspeed = 0.1;
}
if (Yspeed < -18) {
Yspeed = -18;
}
}
onClipEvent (enterFrame) {
if (_root.serve == 1) {
_x = _root.paddle._x;
_y = (_root.paddle._y - 10);
}
}
Frame 48
gotoAndStop (42);
Frame 49
gotoAndStop (42);
Instance of Symbol 114 MovieClip "paddle" in Frame 49
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 50
stop();
Mouse.hide();
_root.lives = 50000;
Instance of Symbol 274 MovieClip "ball" in Frame 50
onClipEvent (load) {
Xspeed = 0;
yspeed = 0;
_root.fallspeed = 0.4;
_root.serve = 1;
}
onClipEvent (enterFrame) {
_rotation = (_rotation + (Xspeed * 2));
_x = (_x + Xspeed);
_y = (_y + yspeed);
Yspeed = yspeed + _root.fallspeed;
}
onClipEvent (enterFrame) {
if (hitTest(_root.upperwall)) {
Yspeed = Math.abs(Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.rightwall)) {
Xspeed = -Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (hitTest(_root.leftwall)) {
Xspeed = Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.lowerwall)) {
Yspeed = (-Yspeed) + 5;
Xspeed = 0;
}
if (hitTest(_root.servewall)) {
_root.serve = 1;
tellTarget ("_root.sound") {
gotoAndPlay ("loseball");
_root.lives--;
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.paddle)) {
xdifference = (_x - _root.paddle._x) / 5;
Yspeed = -Math.abs(((-Yspeed) - 2) + (Math.abs(xdifference) / 7));
Xspeed = xdifference;
if (_root.serve == 0) {
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
}
onClipEvent (enterFrame) {
if (Yspeed > 18) {
Yspeed = 18;
}
if (Xspeed == 0) {
Xspeed = 0.1;
}
if (Yspeed < -18) {
Yspeed = -18;
}
}
onClipEvent (enterFrame) {
if (_root.serve == 1) {
_x = _root.paddle._x;
_y = (_root.paddle._y - 10);
}
}
Instance of Symbol 182 MovieClip in Frame 50
onClipEvent (enterFrame) {
stop();
if (_root.hits == _root.hitsneeded) {
tellTarget ("_root") {
gotoAndStop(_currentframe + 2);
};
_root.serve = 1;
_root.hitsneeded = 0;
_root.hits = 0;
}
}
onClipEvent (enterFrame) {
if (_root.lives < 0) {
tellTarget ("_root") {
gotoAndStop ("gameover");
};
}
}
Frame 51
gotoAndStop (42);
Frame 52
gotoAndStop (42);
Instance of Symbol 114 MovieClip "paddle" in Frame 52
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 53
stop();
Mouse.hide();
_root.lives = 400000 /* 0x061A80 */;
_root.level = 4;
Instance of Symbol 274 MovieClip "ball" in Frame 53
onClipEvent (load) {
Xspeed = 0;
yspeed = 0;
_root.fallspeed = 0.4;
_root.serve = 1;
}
onClipEvent (enterFrame) {
_rotation = (_rotation + (Xspeed * 2));
_x = (_x + Xspeed);
_y = (_y + yspeed);
Yspeed = yspeed + _root.fallspeed;
}
onClipEvent (enterFrame) {
if (hitTest(_root.upperwall)) {
Yspeed = Math.abs(Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.rightwall)) {
Xspeed = -Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (hitTest(_root.leftwall)) {
Xspeed = Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.lowerwall)) {
Yspeed = (-Yspeed) + 5;
Xspeed = 0;
}
if (hitTest(_root.servewall)) {
_root.serve = 1;
tellTarget ("_root.sound") {
gotoAndPlay ("loseball");
_root.lives--;
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.paddle)) {
xdifference = (_x - _root.paddle._x) / 5;
Yspeed = -Math.abs(((-Yspeed) - 2) + (Math.abs(xdifference) / 7));
Xspeed = xdifference;
if (_root.serve == 0) {
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
}
onClipEvent (enterFrame) {
if (Yspeed > 18) {
Yspeed = 18;
}
if (Xspeed == 0) {
Xspeed = 0.1;
}
if (Yspeed < -18) {
Yspeed = -18;
}
}
onClipEvent (enterFrame) {
if (_root.serve == 1) {
_x = _root.paddle._x;
_y = (_root.paddle._y - 10);
}
}
Instance of Symbol 182 MovieClip in Frame 53
onClipEvent (enterFrame) {
stop();
if (_root.hits == _root.hitsneeded) {
tellTarget ("_root") {
gotoAndStop(_currentframe + 2);
};
_root.serve = 1;
_root.hitsneeded = 0;
_root.hits = 0;
}
}
onClipEvent (enterFrame) {
if (_root.lives < 0) {
tellTarget ("_root") {
gotoAndStop ("gameover");
};
}
}
Frame 54
gotoAndStop (42);
Frame 55
gotoAndStop (42);
Instance of Symbol 114 MovieClip "paddle" in Frame 55
onClipEvent (enterFrame) {
if (_parent._xmouse < 342) {
_x = _parent._xmouse;
}
}
Frame 56
stop();
Mouse.hide();
_root.level = 5;
_root.lives = 5000;
Instance of Symbol 319 MovieClip "ball" in Frame 56
onClipEvent (load) {
Xspeed = 0;
yspeed = 0;
_root.fallspeed = 0.4;
_root.fanspeed = 0.3;
_root.serve = 1;
}
onClipEvent (enterFrame) {
if (hitTest(_root.wave) && (Xspeed < 16)) {
Xspeed = Xspeed + _root.fanspeed;
} else if (hitTest(_root.wave) && (Xspeed > 2)) {
Xspeed = Xspeed * (_root.fanspeed * 3);
}
_rotation = (_rotation + (Xspeed * 2));
_x = (_x + Xspeed);
_y = (_y + yspeed);
Yspeed = yspeed + _root.fallspeed;
}
onClipEvent (enterFrame) {
if (hitTest(_root.upperwall)) {
Yspeed = Math.abs(Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.rightwall)) {
Xspeed = -Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (hitTest(_root.leftwall)) {
Xspeed = Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.lowerwall)) {
Yspeed = (-Yspeed) + 5;
Xspeed = 0;
}
if (hitTest(_root.servewall)) {
_root.serve = 1;
tellTarget ("_root.sound") {
gotoAndPlay ("loseball");
_root.lives--;
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.paddle)) {
xdifference = (_x - _root.paddle._x) / 5;
Yspeed = -Math.abs(((-Yspeed) - 2) + (Math.abs(xdifference) / 7));
Xspeed = xdifference;
if (_root.serve == 0) {
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
}
onClipEvent (enterFrame) {
if (Yspeed > 18) {
Yspeed = 18;
}
if (Xspeed == 0) {
Xspeed = 0.1;
}
if (Yspeed < -18) {
Yspeed = -18;
}
if (Xspeed < -16) {
Xspeed = -8;
}
if (Xspeed > 16) {
Xspeed = 8;
}
}
onClipEvent (enterFrame) {
if (_root.serve == 1) {
_x = _root.paddle._x;
_y = (_root.paddle._y - 10);
}
}
Frame 57
gotoAndStop (42);
Frame 58
gotoAndStop (42);
Instance of Symbol 114 MovieClip "paddle" in Frame 58
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 59
stop();
Mouse.hide();
_root.lives = 40000;
Instance of Symbol 319 MovieClip "ball" in Frame 59
onClipEvent (load) {
Xspeed = 0;
yspeed = 0;
_root.fallspeed = 0.28;
_root.fanspeed = 0.3;
_root.serve = 1;
}
onClipEvent (enterFrame) {
if (hitTest(_root.wave) && (Xspeed < 16)) {
Xspeed = Xspeed + _root.fanspeed;
} else if (hitTest(_root.wave) && (Xspeed > 2)) {
Xspeed = Xspeed * (_root.fanspeed * 3);
}
if (hitTest(_root.wave2) && (Xspeed < 16)) {
Xspeed = Xspeed - _root.fanspeed;
} else if (hitTest(_root.wave2) && (Xspeed > 2)) {
Xspeed = Xspeed * (_root.fanspeed * 3);
}
_rotation = (_rotation + (Xspeed * 2));
_x = (_x + Xspeed);
_y = (_y + yspeed);
Yspeed = yspeed + _root.fallspeed;
}
onClipEvent (enterFrame) {
if (hitTest(_root.upperwall)) {
Yspeed = Math.abs(Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.rightwall)) {
Xspeed = -Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (hitTest(_root.leftwall)) {
Xspeed = Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.lowerwall)) {
Yspeed = (-Yspeed) + 5;
Xspeed = 0;
}
if (hitTest(_root.servewall)) {
_root.serve = 1;
tellTarget ("_root.sound") {
gotoAndPlay ("loseball");
_root.lives--;
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.paddle)) {
xdifference = (_x - _root.paddle._x) / 5;
Yspeed = -Math.abs(((-Yspeed) - 2) + (Math.abs(xdifference) / 7));
Xspeed = xdifference;
if (_root.serve == 0) {
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
}
onClipEvent (enterFrame) {
if (Yspeed > 14) {
Yspeed = 14;
}
if (Xspeed == 0) {
Xspeed = 0.1;
}
if (Yspeed < -14) {
Yspeed = -14;
}
if (Xspeed < -14) {
Xspeed = -14;
}
if (Xspeed > 14) {
Xspeed = 14;
}
}
onClipEvent (enterFrame) {
if (_root.serve == 1) {
_x = _root.paddle._x;
_y = (_root.paddle._y - 10);
}
}
Instance of Symbol 182 MovieClip in Frame 59
onClipEvent (enterFrame) {
stop();
if (_root.hits == _root.hitsneeded) {
tellTarget ("_root") {
gotoAndStop(_currentframe + 2);
};
_root.serve = 1;
_root.hitsneeded = 0;
_root.hits = 0;
}
}
onClipEvent (enterFrame) {
if (_root.lives < 0) {
tellTarget ("_root") {
gotoAndStop ("gameover");
};
}
}
Frame 60
gotoAndStop (42);
Frame 61
gotoAndStop (42);
Instance of Symbol 114 MovieClip "paddle" in Frame 61
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Instance of Symbol 114 MovieClip "paddle2" in Frame 61
onClipEvent (enterFrame) {
if ((_parent._xmouse < 520) && (_parent._xmouse > 330)) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
if (_parent._xmouse > 519) {
_x = 519;
} else if (_parent._xmouse < 329) {
_x = 330;
}
}
Frame 62
stop();
Mouse.hide();
_root.lives = 40000;
Instance of Symbol 352 MovieClip "ball" in Frame 62
onClipEvent (load) {
Xspeed = 0;
yspeed = 0;
_root.fallspeed = 0.1;
_root.serve = 1;
}
onClipEvent (enterFrame) {
_rotation = (_rotation + (Xspeed * 2));
_x = (_x + Xspeed);
_y = (_y + yspeed);
Yspeed = yspeed + _root.fallspeed;
}
onClipEvent (enterFrame) {
if (hitTest(_root.upperwall)) {
Yspeed = Math.abs(Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.rightwall)) {
Xspeed = -Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (hitTest(_root.leftwall)) {
Xspeed = Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.lowerwall)) {
Yspeed = (-Yspeed) + 5;
Xspeed = 0;
}
if (hitTest(_root.servewall)) {
_root.serve = 1;
tellTarget ("_root.sound") {
gotoAndPlay ("loseball");
_root.lives--;
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.paddle)) {
xdifference = (_x - _root.paddle._x) / 5;
Yspeed = -Math.abs(((-Yspeed) - 2) + (Math.abs(xdifference) / 7));
Xspeed = xdifference;
if (_root.serve == 0) {
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.paddle2)) {
xdifference = (_x - _root.paddle2._x) / 5;
Yspeed = -Math.abs(((-Yspeed) - 2) + Math.abs(xdifference));
Xspeed = xdifference;
if (_root.serve == 0) {
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
}
onClipEvent (enterFrame) {
if (Yspeed > 10) {
Yspeed = 10;
}
if (Xspeed == 0) {
Xspeed = 0.1;
}
if (Yspeed < -10) {
Yspeed = -10;
}
}
onClipEvent (enterFrame) {
if (_root.serve == 1) {
_x = _root.paddle._x;
_y = (_root.paddle._y - 10);
}
}
Instance of Symbol 182 MovieClip in Frame 62
onClipEvent (enterFrame) {
stop();
if (_root.hits == _root.hitsneeded) {
tellTarget ("_root") {
gotoAndStop(_currentframe + 2);
};
_root.serve = 1;
_root.hitsneeded = 0;
_root.hits = 0;
}
}
onClipEvent (enterFrame) {
if (_root.lives < 0) {
tellTarget ("_root") {
gotoAndStop ("gameover");
};
}
}
Frame 63
gotoAndStop (42);
Frame 64
gotoAndStop (42);
Instance of Symbol 65 MovieClip in Frame 64
onClipEvent (enterFrame) {
if (blocktop.hitTest(_root.ball)) {
_root.ball.Yspeed = -Math.abs(_root.ball.Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockleft.hitTest(_root.ball)) {
_root.ball.Xspeed = -Math.abs(_root.ball.Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockright.hitTest(_root.ball)) {
_root.ball.Xspeed = Math.abs(_root.ball.Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Instance of Symbol 114 MovieClip "paddle" in Frame 64
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 65
stop();
Mouse.hide();
_root.level = 8;
_root.lives = 40000;
Instance of Symbol 274 MovieClip "ball" in Frame 65
onClipEvent (load) {
Xspeed = 0;
yspeed = 0;
_root.fallspeed = 0.28;
_root.fanspeed = 0.3;
_root.serve = 1;
}
onClipEvent (enterFrame) {
if (hitTest(_root.wave) && (Xspeed < 16)) {
Xspeed = Xspeed + _root.fanspeed;
} else if (hitTest(_root.wave) && (Xspeed > 2)) {
Xspeed = Xspeed * (_root.fanspeed * 3);
}
if (hitTest(_root.wave2) && (Xspeed < 16)) {
Xspeed = Xspeed - _root.fanspeed;
} else if (hitTest(_root.wave2) && (Xspeed > 2)) {
Xspeed = Xspeed * (_root.fanspeed * 3);
}
_rotation = (_rotation + (Xspeed * 2));
_x = (_x + Xspeed);
_y = (_y + yspeed);
Yspeed = yspeed + _root.fallspeed;
}
onClipEvent (enterFrame) {
if (hitTest(_root.upperwall)) {
Yspeed = Math.abs(Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.rightwall)) {
Xspeed = -Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (hitTest(_root.leftwall)) {
Xspeed = Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.lowerwall)) {
Yspeed = (-Yspeed) + 5;
Xspeed = 0;
}
if (hitTest(_root.servewall)) {
_root.serve = 1;
tellTarget ("_root.sound") {
gotoAndPlay ("loseball");
_root.lives--;
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.paddle)) {
xdifference = (_x - _root.paddle._x) / 5;
Yspeed = -Math.abs(((-Yspeed) - 2) + (Math.abs(xdifference) / 7));
Xspeed = xdifference;
if (_root.serve == 0) {
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
}
onClipEvent (enterFrame) {
if (Yspeed > 14) {
Yspeed = 14;
}
if (Xspeed == 0) {
Xspeed = 0.1;
}
if (Yspeed < -14) {
Yspeed = -14;
}
if (Xspeed < -14) {
Xspeed = -14;
}
if (Xspeed > 14) {
Xspeed = 14;
}
}
onClipEvent (enterFrame) {
if (_root.serve == 1) {
_x = _root.paddle._x;
_y = (_root.paddle._y - 10);
}
}
Instance of Symbol 182 MovieClip in Frame 65
onClipEvent (enterFrame) {
stop();
if (_root.hits == _root.hitsneeded) {
tellTarget ("_root") {
gotoAndStop(_currentframe + 2);
};
_root.serve = 1;
_root.hitsneeded = 0;
_root.hits = 0;
}
}
onClipEvent (enterFrame) {
if (_root.lives < 0) {
tellTarget ("_root") {
gotoAndStop ("gameover");
};
}
}
Frame 66
gotoAndStop (42);
Frame 67
gotoAndStop (42);
Instance of Symbol 114 MovieClip "paddle" in Frame 67
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 68
stop();
Mouse.hide();
_root.level = 9;
_root.lives = 400000 /* 0x061A80 */;
Instance of Symbol 372 MovieClip "ball" in Frame 68
onClipEvent (load) {
Xspeed = 0;
yspeed = 0;
_root.fallspeed = 0.28;
_root.fanspeed = 0.3;
_root.serve = 1;
}
onClipEvent (enterFrame) {
if (hitTest(_root.wave) && (Xspeed < 16)) {
Xspeed = Xspeed + _root.fanspeed;
} else if (hitTest(_root.wave) && (Xspeed > 2)) {
Xspeed = Xspeed * (_root.fanspeed * 3);
}
if (hitTest(_root.wave2) && (Xspeed < 16)) {
Xspeed = Xspeed - _root.fanspeed;
} else if (hitTest(_root.wave2) && (Xspeed > 2)) {
Xspeed = Xspeed * (_root.fanspeed * 3);
}
_rotation = (_rotation + (Xspeed * 2));
_x = (_x + Xspeed);
_y = (_y + yspeed);
Yspeed = yspeed + _root.fallspeed;
}
onClipEvent (enterFrame) {
if (hitTest(_root.upperwall)) {
Yspeed = Math.abs(Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.rightwall)) {
Xspeed = -Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (hitTest(_root.leftwall)) {
Xspeed = Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.lowerwall)) {
Yspeed = (-Yspeed) + 5;
Xspeed = 0;
}
if (hitTest(_root.servewall)) {
_root.serve = 1;
tellTarget ("_root.sound") {
gotoAndPlay ("loseball");
_root.lives--;
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.paddle)) {
xdifference = (_x - _root.paddle._x) / 5;
Yspeed = -Math.abs(((-Yspeed) - 2) + (Math.abs(xdifference) / 7));
Xspeed = xdifference;
if (_root.serve == 0) {
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
}
onClipEvent (enterFrame) {
if (Yspeed > 14) {
Yspeed = 14;
}
if (Xspeed == 0) {
Xspeed = 0.1;
}
if (Yspeed < -14) {
Yspeed = -14;
}
if (Xspeed < -14) {
Xspeed = -14;
}
if (Xspeed > 14) {
Xspeed = 14;
}
}
onClipEvent (enterFrame) {
if (_root.serve == 1) {
_x = _root.paddle._x;
_y = (_root.paddle._y - 10);
}
}
Instance of Symbol 182 MovieClip in Frame 68
onClipEvent (enterFrame) {
stop();
if (_root.hits == _root.hitsneeded) {
tellTarget ("_root") {
gotoAndStop(_currentframe + 2);
};
_root.serve = 1;
_root.hitsneeded = 0;
_root.hits = 0;
}
}
onClipEvent (enterFrame) {
if (_root.lives < 0) {
tellTarget ("_root") {
gotoAndStop ("gameover");
};
}
}
Frame 69
gotoAndStop (42);
Frame 70
gotoAndStop (42);
Instance of Symbol 114 MovieClip "paddle" in Frame 70
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 71
stop();
Mouse.hide();
_root.level = 10;
_root.lives = 30000;
Instance of Symbol 372 MovieClip "ball" in Frame 71
onClipEvent (load) {
Xspeed = 0;
yspeed = 0;
_root.fallspeed = 0.28;
_root.fanspeed = 0.3;
_root.serve = 1;
}
onClipEvent (enterFrame) {
if (hitTest(_root.wave) && (Xspeed < 16)) {
Xspeed = Xspeed + _root.fanspeed;
} else if (hitTest(_root.wave) && (Xspeed > 2)) {
Xspeed = Xspeed * (_root.fanspeed * 3);
}
if (hitTest(_root.wave2) && (Xspeed < 16)) {
Xspeed = Xspeed - _root.fanspeed;
} else if (hitTest(_root.wave2) && (Xspeed > 2)) {
Xspeed = Xspeed * (_root.fanspeed * 3);
}
_rotation = (_rotation + (Xspeed * 2));
_x = (_x + Xspeed);
_y = (_y + yspeed);
Yspeed = yspeed + _root.fallspeed;
}
onClipEvent (enterFrame) {
if (hitTest(_root.upperwall)) {
Yspeed = Math.abs(Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.rightwall)) {
Xspeed = -Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (hitTest(_root.leftwall)) {
Xspeed = Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.lowerwall)) {
Yspeed = (-Yspeed) + 5;
Xspeed = 0;
}
if (hitTest(_root.servewall)) {
_root.serve = 1;
tellTarget ("_root.sound") {
gotoAndPlay ("loseball");
_root.lives--;
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.paddle)) {
xdifference = (_x - _root.paddle._x) / 5;
Yspeed = -Math.abs(((-Yspeed) - 2) + (Math.abs(xdifference) / 7));
Xspeed = xdifference;
if (_root.serve == 0) {
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
}
onClipEvent (enterFrame) {
if (Yspeed > 14) {
Yspeed = 14;
}
if (Xspeed == 0) {
Xspeed = 0.1;
}
if (Yspeed < -14) {
Yspeed = -14;
}
if (Xspeed < -14) {
Xspeed = -14;
}
if (Xspeed > 14) {
Xspeed = 14;
}
}
onClipEvent (enterFrame) {
if (_root.serve == 1) {
_x = _root.paddle._x;
_y = (_root.paddle._y - 10);
}
}
Instance of Symbol 182 MovieClip in Frame 71
onClipEvent (enterFrame) {
stop();
if (_root.hits == _root.hitsneeded) {
tellTarget ("_root") {
gotoAndStop(_currentframe + 2);
};
_root.serve = 1;
_root.hitsneeded = 0;
_root.hits = 0;
}
}
onClipEvent (enterFrame) {
if (_root.lives < 0) {
tellTarget ("_root") {
gotoAndStop ("gameover");
};
}
}
Frame 72
gotoAndStop (42);
Frame 73
gotoAndStop (42);
Instance of Symbol 114 MovieClip "paddle" in Frame 73
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 74
stop();
Mouse.hide();
_root.level = 11;
_root.lives = 60000;
Instance of Symbol 179 MovieClip "ball" in Frame 74
onClipEvent (load) {
_root.fallspeed = 0.28;
_root.fanspeed = 0.3;
_root.serve = 1;
Xspeed = 0;
yspeed = 0;
_root.serve = 1;
}
onClipEvent (enterFrame) {
if (hitTest(_root.wave) && (Xspeed < 16)) {
Xspeed = Xspeed + _root.fanspeed;
} else if (hitTest(_root.wave) && (Xspeed > 2)) {
Xspeed = Xspeed * (_root.fanspeed * 3);
}
if (hitTest(_root.wave2) && (Xspeed < 16)) {
Xspeed = Xspeed - _root.fanspeed;
} else if (hitTest(_root.wave2) && (Xspeed > 2)) {
Xspeed = Xspeed * (_root.fanspeed * 3);
}
_rotation = (_rotation + (Xspeed * 2));
_x = (_x + Xspeed);
_y = (_y + yspeed);
Yspeed = yspeed + _root.fallspeed;
}
onClipEvent (enterFrame) {
if (hitTest(_root.upperwall)) {
Yspeed = Math.abs(Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.rightwall)) {
Xspeed = -Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (hitTest(_root.leftwall)) {
Xspeed = Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.lowerwall)) {
Yspeed = (-Yspeed) + 5;
Xspeed = 0;
}
if (hitTest(_root.servewall)) {
_root.serve = 1;
tellTarget ("_root.sound") {
gotoAndPlay ("loseball");
_root.lives--;
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.paddle)) {
xdifference = (_x - _root.paddle._x) / 5;
Yspeed = -Math.abs(((-Yspeed) - 2) + (Math.abs(xdifference) / 7));
Xspeed = xdifference;
if (_root.serve == 0) {
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
}
onClipEvent (enterFrame) {
if (Yspeed > 14) {
Yspeed = 14;
}
if (Xspeed == 0) {
Xspeed = 0.1;
}
if (Yspeed < -14) {
Yspeed = -14;
}
if (Xspeed < -14) {
Xspeed = -14;
}
if (Xspeed > 14) {
Xspeed = 14;
}
}
onClipEvent (enterFrame) {
if (_root.serve == 1) {
_x = _root.paddle._x;
_y = (_root.paddle._y - 10);
}
}
Instance of Symbol 182 MovieClip in Frame 74
onClipEvent (enterFrame) {
if (_root.glowsneeded < 1) {
_root.glow = 1;
} else {
_root.glow = 0;
}
stop();
if (_root.hits == _root.hitsneeded) {
tellTarget ("_root") {
gotoAndStop ("congrats");
};
_root.serve = 1;
_root.hitsneeded = 0;
_root.hits = 0;
}
}
onClipEvent (enterFrame) {
if (_root.lives < 0) {
tellTarget ("_root") {
gotoAndStop ("gameover");
};
}
}
Frame 75
gotoAndStop (42);
Instance of Symbol 114 MovieClip "paddle" in Frame 75
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 76
stop();
Mouse.hide();
_root.level = 11;
_root.lives = 60000;
Instance of Symbol 579 MovieClip "ball" in Frame 76
onClipEvent (load) {
Xspeed = 0;
yspeed = 0;
_root.fallspeed = 1;
_root.serve = 1;
}
onClipEvent (enterFrame) {
_x = (_x + Xspeed);
_y = (_y + yspeed);
Yspeed = Yspeed + _root.fallspeed;
if (hitTest(_root.upperwall)) {
Yspeed = Math.abs(Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (hitTest(_root.rightwall)) {
Xspeed = -Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (hitTest(_root.leftwall)) {
Xspeed = Math.abs(Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (hitTest(_root.lowerwall)) {
Yspeed = (-Yspeed) + 5;
Xspeed = 0;
}
if (hitTest(_root.servewall)) {
_root.serve = 1;
tellTarget ("_root.sound") {
gotoAndPlay ("loseball");
_root.lives--;
};
}
if (hitTest(_root.paddle)) {
xdifference = (_x - _root.paddle._x) / 8;
Yspeed = -Math.abs(((-Yspeed) - 2) + Math.abs(xdifference));
Xspeed = xdifference;
if (_root.serve == 0) {
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
if (Yspeed > 8) {
Yspeed = 3;
}
if (Yspeed < -8) {
Yspeed = -8;
}
if (Xspeed == 0) {
Xspeed = Math.random - 1;
}
if (Xspeed < -8) {
Xspeed = -8;
}
if (Xspeed > 8) {
Xspeed = 8;
}
if (_root.serve == 1) {
_x = _root.paddle._x;
_y = (_root.paddle._y + 10);
}
}
Symbol 1 MovieClip Frame 10
stop();
Instance of Symbol 3 MovieClip in Symbol 1 MovieClip Frame 10
onClipEvent (enterFrame) {
b_loaded = _root.getBytesLoaded();
b_total = _root.getBytesTotal();
percent = Math.round((b_loaded / b_total) * 100);
if (percent >= 100) {
_root.gotoAndStop("loaded");
}
}
Symbol 8 MovieClip Frame 1
if (this.sessionstarted != 1) {
this.arcade = new LoadVars();
this.sessionvars = new LoadVars();
this.arcade.gamename = "gravityball";
this.arcade.sessdo = "sessionstart";
this.arcade.sendAndLoad("arcade.php", sessionvars, "POST");
this.sessionstarted = 1;
}
if (_root.gameover == 1) {
if ((this.askpermission != 1) && (this.sessionvars.connStatus == 1)) {
this.prequestvars = new LoadVars();
this.pranswer = new LoadVars();
this.prequestvars.gametime = this.sessionvars.gametime;
this.prequestvars.fakekey = this.sessionvars.initbar;
if (_root.score != 0) {
this.prequestvars.score = _root.score;
} else {
this.prequestvars.score = -1;
}
this.prequestvars.id = this.sessionvars.lastid;
this.prequestvars.sessdo = "permrequest";
this.prequestvars.note = (this.prequestvars.id * this.prequestvars.score) * this.prequestvars.fakekey;
this.prequestvars.sendAndLoad("./arcade.php", this.pranswer, "POST");
this.askpermission = 1;
}
if ((this.pranswer.validate == 1) && (this.finalsent != 1)) {
this.burnscore = new LoadVars();
this.burnscore.microone = this.pranswer.microone;
this.burnscore.gametime = this.prequestvars.gametime;
this.burnscore.id = this.prequestvars.id;
if (_root.score == 0) {
this.burnscore.noscore = 1;
}
this.burnscore.sessdo = "burn";
this.burnscore.send("./arcade.php", "_self", "POST");
this.finalsent = 1;
}
}
Symbol 13 Button
on (release) {
gotoAndStop (4);
}
Symbol 21 Button
on (release) {
tellTarget ("_root") {
nextFrame();
};
}
Symbol 30 Button
on (keyPress "<Enter>") {
if (_root.password == "skobydob") {
gotoAndStop (42);
}
}
Symbol 37 Button
on (release) {
play();
}
Symbol 38 Button
on (release) {
gotoAndStop (4);
}
Symbol 40 Button
on (release) {
tellTarget ("_root") {
nextFrame();
};
}
Symbol 53 MovieClip Frame 1
stop();
_root.hitsneeded++;
Symbol 53 MovieClip Frame 5
stop();
_root.hits++;
_root.score = _root.score + 100;
Symbol 58 MovieClip Frame 7
stop();
_root.score++;
Instance of Symbol 53 MovieClip in Symbol 62 MovieClip Frame 1
onClipEvent (enterFrame) {
if (blocktop.hitTest(_root.ball)) {
_root.ball.Yspeed = -Math.abs(_root.ball.Yspeed);
gotoAndPlay (1);
tellTarget ("_root.sound") {
gotoAndPlay ("bricksfall");
};
}
if (blockleft.hitTest(_root.ball)) {
gotoAndPlay (1);
_root.ball.Xspeed = -Math.abs(_root.ball.Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay ("bricksfall");
};
}
if (blockbottom.hitTest(_root.ball)) {
gotoAndPlay (1);
_root.ball.Yspeed = Math.abs(_root.ball.Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay ("bricksfall");
};
}
if (blockright.hitTest(_root.ball)) {
gotoAndPlay (1);
_root.ball.Xspeed = Math.abs(_root.ball.Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay ("bricksfall");
};
}
}
onClipEvent (enterFrame) {
if (_root.lights == 0) {
_alpha = 0;
} else if (_root.lights == 1) {
_alpha = 100;
}
}
Symbol 43 MovieClip Frame 1
stop();
stop();
Instance of Symbol 53 MovieClip in Symbol 43 MovieClip Frame 1
onClipEvent (enterFrame) {
if (blocktop.hitTest(_root.ball)) {
_root.ball.Yspeed = -Math.abs(_root.ball.Yspeed);
tellTarget ("_parent") {
gotoAndPlay (2);
};
}
if (blockleft.hitTest(_root.ball)) {
tellTarget ("_parent") {
gotoAndPlay (2);
};
_root.ball.Xspeed = -Math.abs(_root.ball.Xspeed);
}
if (blockbottom.hitTest(_root.ball)) {
tellTarget ("_parent") {
gotoAndPlay (2);
};
_root.ball.Yspeed = Math.abs(_root.ball.Yspeed) / 4;
}
if (blockright.hitTest(_root.ball)) {
tellTarget ("_parent") {
gotoAndPlay (2);
};
_root.ball.Xspeed = Math.abs(_root.ball.Xspeed);
}
}
onClipEvent (enterFrame) {
if (blocktop.hitTest(_root.ball1)) {
tellTarget ("_parent") {
gotoAndPlay (2);
};
_root.ball1.Yspeed = -Math.abs(_root.ball1.Yspeed);
}
if (blockleft.hitTest(_root.ball1)) {
tellTarget ("_parent") {
gotoAndPlay (2);
};
gotoAndPlay (1);
_root.ball1.Xspeed = -Math.abs(_root.ball1.Xspeed);
}
if (blockbottom.hitTest(_root.ball1)) {
tellTarget ("_parent") {
gotoAndPlay (2);
};
_root.ball1.Yspeed = Math.abs(_root.ball1.Yspeed) / 4;
}
if (blockright.hitTest(_root.ball1)) {
tellTarget ("_parent") {
gotoAndPlay (2);
};
_root.ball1.Xspeed = Math.abs(_root.ball1.Xspeed);
}
}
onClipEvent (enterFrame) {
if (blocktop.hitTest(_root.ball2)) {
tellTarget ("_parent") {
gotoAndPlay (2);
};
_root.ball2.Yspeed = -Math.abs(_root.ball2Yspeed);
}
if (blockleft.hitTest(_root.ball2)) {
tellTarget ("_parent") {
gotoAndPlay (2);
};
_root.ball2.Xspeed = -Math.abs(_root.ball2.Xspeed);
}
if (blockbottom.hitTest(_root.ball2)) {
tellTarget ("_parent") {
gotoAndPlay (2);
};
_root.ball2.Yspeed = Math.abs(_root.ball2.Yspeed) / 4;
}
if (blockright.hitTest(_root.ball2)) {
tellTarget ("_parent") {
gotoAndPlay (2);
};
_root.ball2.Xspeed = Math.abs(_root.ball2.Xspeed);
}
}
onClipEvent (enterFrame) {
if (blocktop.hitTest(_root.ball3)) {
tellTarget ("_parent") {
gotoAndPlay (2);
};
_root.ball.Yspeed = -Math.abs(_root.ball.Yspeed);
}
if (blockleft.hitTest(_root.ball3)) {
tellTarget ("_parent") {
gotoAndPlay (2);
};
_root.ball3.Xspeed = -Math.abs(_root.ball3.Xspeed);
}
if (blockbottom.hitTest(_root.ball3)) {
tellTarget ("_parent") {
gotoAndPlay (2);
};
_root.ball3.Yspeed = Math.abs(_root.ball3.Yspeed) / 4;
}
if (blockright.hitTest(_root.ball3)) {
tellTarget ("_parent") {
gotoAndPlay (2);
};
_root.ball3.Xspeed = Math.abs(_root.ball3.Xspeed);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.laser)) {
tellTarget ("_parent") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.wahball)) {
tellTarget ("_parent") {
gotoAndPlay (2);
};
}
}
onClipEvent (enterFrame) {
if ((_root.lights == 0) && (_root.level == 5)) {
_alpha = 0;
} else if (_root.lights == 1) {
_alpha = 100;
}
}
Symbol 43 MovieClip Frame 8
stop();
_root.hits++;
_root.sore = _root.sore + 100;
Symbol 63 Button
on (keyPress "<Enter>") {
if (_root.password == "skobydob") {
gotoAndStop (42);
}
}
Symbol 64 MovieClip Frame 1
stop();
if (_root.level == 1) {
gotoAndPlay (2);
}
if (_root.level == 4) {
gotoAndPlay (2);
}
if (_root.level == 0) {
gotoAndPlay (2);
}
Instance of Symbol 65 MovieClip in Symbol 64 MovieClip Frame 1
onClipEvent (enterFrame) {
if (blocktop.hitTest(_root.ball)) {
_root.ball.Yspeed = -Math.abs(_root.ball.Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockleft.hitTest(_root.ball)) {
_root.ball.Xspeed = -Math.abs(_root.ball.Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = Math.abs(_root.ball.Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockright.hitTest(_root.ball)) {
_root.ball.Xspeed = Math.abs(_root.ball.Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Instance of Symbol 78 MovieClip in Symbol 76 MovieClip Frame 1
onClipEvent (enterFrame) {
if (blocktop.hitTest(_root.ball)) {
randomy = (Math.random() - 0.5) / 6;
xdifference = (_root.ball._x - _parent._x) + randomy;
_root.ball.Yspeed = -_root.ball.Yspeed;
_root.ball.Xspeed = xdifference;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockleft.hitTest(_root.ball)) {
_root.ball.Xspeed = -Math.abs(_root.ball.Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = Math.abs(_root.ball.Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockright.hitTest(_root.ball)) {
_root.ball.Xspeed = Math.abs(_root.ball.Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Symbol 82 MovieClip Frame 1
stop();
_root.glowsneeded++;
Instance of Symbol 83 MovieClip in Symbol 82 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.ball)) {
tellTarget ("_parent") {
play();
};
}
}
Symbol 82 MovieClip Frame 20
_root.glowsneeded--;
Instance of Symbol 83 MovieClip in Symbol 82 MovieClip Frame 21
onClipEvent (enterFrame) {
if (hitTest(_root.ball)) {
tellTarget ("_parent") {
gotoAndPlay ("glowon");
};
}
}
Symbol 97 MovieClip Frame 2
stop();
Symbol 97 MovieClip Frame 5
gotoAndPlay (2);
Symbol 97 MovieClip Frame 25
gotoAndPlay (1);
Symbol 97 MovieClip Frame 36
gotoAndPlay (1);
Symbol 105 Button
on (release) {
play();
}
Symbol 122 Button
on (release) {
tellTarget ("_root") {
nextFrame();
};
}
Symbol 136 Button
on (keyPress "h") {
play();
}
on (keyPress "H") {
play();
}
Symbol 135 MovieClip Frame 1
stop();
Symbol 135 MovieClip Frame 6
stop();
Symbol 141 Button
on (keyPress "2") {
gotoAndStop (7);
}
Symbol 143 Button
on (keyPress "3") {
gotoAndStop (10);
}
Symbol 145 Button
on (keyPress "4") {
gotoAndStop (13);
}
Symbol 147 Button
on (keyPress "5") {
gotoAndStop (16);
}
Symbol 149 Button
on (keyPress "6") {
gotoAndStop (19);
}
Symbol 151 Button
on (keyPress "7") {
gotoAndStop (22);
}
Symbol 153 Button
on (keyPress "8") {
gotoAndStop (25);
}
Symbol 155 Button
on (keyPress "9") {
gotoAndStop (28);
}
Symbol 157 Button
on (keyPress "0") {
gotoAndStop (31);
}
Symbol 159 Button
on (keyPress "<Backspace>") {
gotoAndStop (34);
}
Symbol 161 Button
on (keyPress "1") {
gotoAndStop (4);
}
Symbol 166 Button
on (keyPress "<Space>") {
play();
}
Symbol 163 MovieClip Frame 1
stop();
Symbol 163 MovieClip Frame 2
stopAllSounds();
Symbol 163 MovieClip Frame 3
stop();
Symbol 163 MovieClip Frame 4
stopAllSounds();
Symbol 163 MovieClip Frame 5
stop();
Symbol 163 MovieClip Frame 6
stopAllSounds();
Symbol 163 MovieClip Frame 7
stop();
Symbol 163 MovieClip Frame 8
stopAllSounds();
Symbol 163 MovieClip Frame 9
stop();
Symbol 176 Button
on (keyPress "k") {
_root.serve = 1;
_root.lives--;
}
on (keyPress "K") {
_root.serve = 1;
_root.lives--;
}
Symbol 180 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 184 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 185 MovieClip Frame 2
stop();
Symbol 185 MovieClip Frame 5
gotoAndPlay (2);
Symbol 185 MovieClip Frame 25
gotoAndPlay (1);
Symbol 185 MovieClip Frame 36
gotoAndPlay (1);
Symbol 185 MovieClip Frame 51
gotoAndPlay (1);
Symbol 185 MovieClip Frame 64
gotoAndPlay (1);
Symbol 185 MovieClip Frame 76
gotoAndPlay (1);
Symbol 185 MovieClip Frame 88
gotoAndPlay (1);
Symbol 206 MovieClip Frame 1
stop();
Instance of Symbol 65 MovieClip in Symbol 206 MovieClip Frame 1
onClipEvent (enterFrame) {
if (blocktop.hitTest(_root.ball)) {
tellTarget ("_parent") {
play();
};
_root.score = _root.score + 100;
_root.hits = _root.hits + 2;
tellTarget ("_root.sound") {
gotoAndPlay ("swish");
};
tellTarget ("_parent._parent.net") {
play();
};
}
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = Math.abs(_root.ball.Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Instance of Symbol 65 MovieClip in Symbol 206 MovieClip Frame 1
onClipEvent (enterFrame) {
if (blockleft.hitTest(_root.ball)) {
_root.ball.Xspeed = -1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Instance of Symbol 65 MovieClip in Symbol 206 MovieClip Frame 1
onClipEvent (enterFrame) {
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockright.hitTest(_root.ball)) {
_root.ball.Xspeed = 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Symbol 207 MovieClip Frame 1
stop();
Instance of Symbol 65 MovieClip in Symbol 205 MovieClip Frame 1
onClipEvent (enterFrame) {
if (blocktop.hitTest(_root.ball)) {
_root.ball.Yspeed = ((-Math.abs(_root.ball.Yspeed)) / 2) - 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockleft.hitTest(_root.ball)) {
_root.ball.Xspeed = ((-Math.abs(_root.ball.Xspeed)) / 2) - 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = (Math.abs(_root.ball.Yspeed) / 2) + 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockright.hitTest(_root.ball)) {
_root.ball.Xspeed = (Math.abs(_root.ball.Xspeed) / 2) + 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Instance of Symbol 65 MovieClip in Symbol 205 MovieClip Frame 1
onClipEvent (enterFrame) {
if (blocktop.hitTest(_root.ball)) {
_root.ball.Yspeed = ((-Math.abs(_root.ball.Yspeed)) / 2) - 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockleft.hitTest(_root.ball)) {
_root.ball.Xspeed = ((-Math.abs(_root.ball.Xspeed)) / 2) - 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = (Math.abs(_root.ball.Yspeed) / 2) + 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockright.hitTest(_root.ball)) {
_root.ball.Xspeed = (Math.abs(_root.ball.Xspeed) / 2) + 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Instance of Symbol 65 MovieClip in Symbol 205 MovieClip Frame 1
onClipEvent (enterFrame) {
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = Math.abs(_root.ball.Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Symbol 215 MovieClip Frame 1
stop();
Instance of Symbol 65 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (blocktop.hitTest(_root.ball)) {
tellTarget ("_parent") {
play();
};
_root.score = _root.score + 500;
_root.hits = _root.hits + 6;
tellTarget ("_root.sound") {
gotoAndPlay ("swish");
};
tellTarget ("_parent._parent.net") {
play();
};
}
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = Math.abs(_root.ball.Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Instance of Symbol 65 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (blockleft.hitTest(_root.ball)) {
_root.ball.Xspeed = -1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Instance of Symbol 65 MovieClip in Symbol 215 MovieClip Frame 1
onClipEvent (enterFrame) {
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockright.hitTest(_root.ball)) {
_root.ball.Xspeed = 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Instance of Symbol 65 MovieClip in Symbol 214 MovieClip Frame 1
onClipEvent (enterFrame) {
if (blocktop.hitTest(_root.ball)) {
_root.ball.Yspeed = -Math.abs(_root.ball.Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockleft.hitTest(_root.ball)) {
_root.ball.Xspeed = -Math.abs(_root.ball.Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = Math.abs(_root.ball.Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockright.hitTest(_root.ball)) {
_root.ball.Xspeed = Math.abs(_root.ball.Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Instance of Symbol 65 MovieClip in Symbol 214 MovieClip Frame 1
onClipEvent (enterFrame) {
if (blocktop.hitTest(_root.ball)) {
_root.ball.Yspeed = -Math.abs(_root.ball.Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockleft.hitTest(_root.ball)) {
_root.ball.Xspeed = -Math.abs(_root.ball.Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = Math.abs(_root.ball.Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockright.hitTest(_root.ball)) {
_root.ball.Xspeed = Math.abs(_root.ball.Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Instance of Symbol 65 MovieClip in Symbol 214 MovieClip Frame 1
onClipEvent (enterFrame) {
if (blocktop.hitTest(_root.ball)) {
_root.ball.Yspeed = ((-Math.abs(_root.ball.Yspeed)) / 2) - 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockleft.hitTest(_root.ball)) {
_root.ball.Xspeed = ((-Math.abs(_root.ball.Xspeed)) / 2) - 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = (Math.abs(_root.ball.Yspeed) / 2) + 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockright.hitTest(_root.ball)) {
_root.ball.Xspeed = (Math.abs(_root.ball.Xspeed) / 2) + 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Instance of Symbol 65 MovieClip in Symbol 214 MovieClip Frame 1
onClipEvent (enterFrame) {
if (blocktop.hitTest(_root.ball)) {
_root.ball.Yspeed = ((-Math.abs(_root.ball.Yspeed)) / 2) - 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockleft.hitTest(_root.ball)) {
_root.ball.Xspeed = ((-Math.abs(_root.ball.Xspeed)) / 2) - 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = (Math.abs(_root.ball.Yspeed) / 2) + 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockright.hitTest(_root.ball)) {
_root.ball.Xspeed = (Math.abs(_root.ball.Xspeed) / 2) + 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Instance of Symbol 65 MovieClip in Symbol 214 MovieClip Frame 1
onClipEvent (enterFrame) {
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = Math.abs(_root.ball.Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Symbol 217 MovieClip Frame 1
stop();
Instance of Symbol 65 MovieClip in Symbol 217 MovieClip Frame 1
onClipEvent (enterFrame) {
if (blocktop.hitTest(_root.ball)) {
tellTarget ("_parent") {
play();
};
_root.score = _root.score + 300;
_root.hits = _root.hits + 4;
tellTarget ("_root.sound") {
gotoAndPlay ("swish");
};
tellTarget ("_parent._parent.net") {
play();
};
}
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = Math.abs(_root.ball.Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Instance of Symbol 65 MovieClip in Symbol 217 MovieClip Frame 1
onClipEvent (enterFrame) {
if (blockleft.hitTest(_root.ball)) {
_root.ball.Xspeed = -1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Instance of Symbol 65 MovieClip in Symbol 217 MovieClip Frame 1
onClipEvent (enterFrame) {
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockright.hitTest(_root.ball)) {
_root.ball.Xspeed = 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Instance of Symbol 65 MovieClip in Symbol 216 MovieClip Frame 1
onClipEvent (enterFrame) {
if (blocktop.hitTest(_root.ball)) {
_root.ball.Yspeed = ((-Math.abs(_root.ball.Yspeed)) / 2) - 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockleft.hitTest(_root.ball)) {
_root.ball.Xspeed = ((-Math.abs(_root.ball.Xspeed)) / 2) - 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = (Math.abs(_root.ball.Yspeed) / 2) + 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockright.hitTest(_root.ball)) {
_root.ball.Xspeed = (Math.abs(_root.ball.Xspeed) / 2) + 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Instance of Symbol 65 MovieClip in Symbol 216 MovieClip Frame 1
onClipEvent (enterFrame) {
if (blocktop.hitTest(_root.ball)) {
_root.ball.Yspeed = ((-Math.abs(_root.ball.Yspeed)) / 2) - 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockleft.hitTest(_root.ball)) {
_root.ball.Xspeed = ((-Math.abs(_root.ball.Xspeed)) / 2) - 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = (Math.abs(_root.ball.Yspeed) / 2) + 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockright.hitTest(_root.ball)) {
_root.ball.Xspeed = (Math.abs(_root.ball.Xspeed) / 2) + 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Instance of Symbol 65 MovieClip in Symbol 216 MovieClip Frame 1
onClipEvent (enterFrame) {
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = Math.abs(_root.ball.Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Symbol 226 Button
on (release) {
tellTarget ("_root") {
nextFrame();
};
}
Symbol 232 MovieClip Frame 42
_root.time--;
if (_root.time < 1) {
_root.tries--;
if (_root.hits >= 10) {
tellTarget ("_root") {
gotoAndStop(_currentframe + 2);
};
} else if ((_root.hits < 10) && (_root.tries > 0)) {
stopAllSounds();
tellTarget ("_root") {
prevFrame();
};
} else if (_root.tries < 1) {
tellTarget ("_root") {
gotoAndStop ("gameover");
};
}
}
Symbol 239 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 240 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 249 MovieClip Frame 2
stop();
Symbol 249 MovieClip Frame 5
gotoAndPlay (2);
Symbol 249 MovieClip Frame 25
gotoAndPlay (1);
Symbol 249 MovieClip Frame 36
gotoAndPlay (1);
Symbol 249 MovieClip Frame 51
gotoAndPlay (1);
Symbol 249 MovieClip Frame 64
gotoAndPlay (1);
Symbol 249 MovieClip Frame 76
gotoAndPlay (1);
Symbol 249 MovieClip Frame 88
gotoAndPlay (1);
Symbol 256 MovieClip Frame 1
stop();
Instance of Symbol 258 MovieClip in Symbol 256 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.ball)) {
tellTarget ("_parent") {
play();
};
_root.score = _root.score + 50;
}
}
Symbol 256 MovieClip Frame 5
stop();
Symbol 262 MovieClip Frame 1
stop();
_root.hitsneeded++;
Instance of Symbol 258 MovieClip in Symbol 262 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.ball)) {
tellTarget ("_parent") {
play();
};
_root.score = _root.score + 50;
}
}
Instance of Symbol 65 MovieClip in Symbol 262 MovieClip Frame 1
onClipEvent (enterFrame) {
if (blocktop.hitTest(_root.ball)) {
_root.ball.Yspeed = ((-Math.abs(_root.ball.Yspeed)) / 2) - 0.7;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockleft.hitTest(_root.ball)) {
_root.ball.Xspeed = ((-Math.abs(_root.ball.Xspeed)) / 2) - 0.7;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = (Math.abs(_root.ball.Yspeed) / 2) + 0.7;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockright.hitTest(_root.ball)) {
_root.ball.Xspeed = (Math.abs(_root.ball.Xspeed) / 2) + 0.7;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Instance of Symbol 65 MovieClip in Symbol 262 MovieClip Frame 1
onClipEvent (enterFrame) {
if (blocktop.hitTest(_root.ball)) {
_root.ball.Yspeed = ((-Math.abs(_root.ball.Yspeed)) / 2) - 0.7;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockleft.hitTest(_root.ball)) {
_root.ball.Xspeed = ((-Math.abs(_root.ball.Xspeed)) / 2) - 0.7;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = (Math.abs(_root.ball.Yspeed) / 2) + 0.7;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockright.hitTest(_root.ball)) {
_root.ball.Xspeed = (Math.abs(_root.ball.Xspeed) / 2) + 0.7;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Symbol 262 MovieClip Frame 5
stop();
_root.hits++;
Symbol 265 MovieClip Frame 1
stop();
_root.hitsneeded++;
Instance of Symbol 258 MovieClip in Symbol 265 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.ball)) {
tellTarget ("_parent") {
play();
};
_root.score = _root.score + 150;
}
}
Instance of Symbol 65 MovieClip in Symbol 265 MovieClip Frame 1
onClipEvent (enterFrame) {
if (blocktop.hitTest(_root.ball)) {
_root.ball.Yspeed = ((-Math.abs(_root.ball.Yspeed)) / 2) - 0.7;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockleft.hitTest(_root.ball)) {
_root.ball.Xspeed = ((-Math.abs(_root.ball.Xspeed)) / 2) - 0.7;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = (Math.abs(_root.ball.Yspeed) / 2) + 0.7;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockright.hitTest(_root.ball)) {
_root.ball.Xspeed = (Math.abs(_root.ball.Xspeed) / 2) + 0.7;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Instance of Symbol 65 MovieClip in Symbol 265 MovieClip Frame 1
onClipEvent (enterFrame) {
if (blocktop.hitTest(_root.ball)) {
_root.ball.Yspeed = ((-Math.abs(_root.ball.Yspeed)) / 2) - 0.7;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockleft.hitTest(_root.ball)) {
_root.ball.Xspeed = ((-Math.abs(_root.ball.Xspeed)) / 2) - 0.7;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = (Math.abs(_root.ball.Yspeed) / 2) + 0.7;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockright.hitTest(_root.ball)) {
_root.ball.Xspeed = (Math.abs(_root.ball.Xspeed) / 2) + 0.7;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Symbol 265 MovieClip Frame 5
stop();
_root.hits++;
Symbol 272 Button
on (release) {
tellTarget ("_root") {
nextFrame();
};
}
Symbol 276 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 277 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 285 Button
on (release) {
tellTarget ("_root") {
nextFrame();
};
}
Symbol 287 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 288 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 289 MovieClip Frame 2
stop();
Symbol 289 MovieClip Frame 5
gotoAndPlay (2);
Symbol 289 MovieClip Frame 25
gotoAndPlay (1);
Symbol 289 MovieClip Frame 36
gotoAndPlay (1);
Symbol 289 MovieClip Frame 51
gotoAndPlay (1);
Symbol 289 MovieClip Frame 64
gotoAndPlay (1);
Symbol 289 MovieClip Frame 76
gotoAndPlay (1);
Symbol 289 MovieClip Frame 88
gotoAndPlay (1);
Instance of Symbol 78 MovieClip in Symbol 296 MovieClip Frame 1
onClipEvent (enterFrame) {
if (blocktop.hitTest(_root.ball)) {
_root.ball.Yspeed = -Math.abs(_root.ball.Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockleft.hitTest(_root.ball)) {
_root.ball.Xspeed = -Math.abs(_root.ball.Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = Math.abs(_root.ball.Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockright.hitTest(_root.ball)) {
_root.ball.Xspeed = Math.abs(_root.ball.Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Symbol 299 MovieClip Frame 1
stop();
Instance of Symbol 300 MovieClip in Symbol 299 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.ball)) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
tellTarget ("_parent") {
play();
};
}
}
Symbol 299 MovieClip Frame 42
_root.serve = 1;
_root.score = _root.score + 500;
_root.hits++;
Symbol 312 Button
on (release) {
tellTarget ("_root") {
nextFrame();
};
}
Symbol 313 MovieClip Frame 42
_root.time--;
if (_root.time < 1) {
if (_root.hits >= 5) {
tellTarget ("_root") {
gotoAndStop(_currentframe + 2);
};
} else if (_root.hits < 5) {
tellTarget ("_root") {
gotoAndStop ("gameover");
};
}
}
Symbol 321 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 322 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 328 Button
on (release) {
tellTarget ("_root") {
nextFrame();
};
}
Symbol 330 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 331 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 332 MovieClip Frame 2
stop();
Symbol 332 MovieClip Frame 5
gotoAndPlay (2);
Symbol 332 MovieClip Frame 25
gotoAndPlay (1);
Symbol 332 MovieClip Frame 36
gotoAndPlay (1);
Symbol 332 MovieClip Frame 51
gotoAndPlay (1);
Symbol 332 MovieClip Frame 64
gotoAndPlay (1);
Symbol 332 MovieClip Frame 76
gotoAndPlay (1);
Symbol 332 MovieClip Frame 88
gotoAndPlay (1);
Symbol 339 MovieClip Frame 1
stop();
Instance of Symbol 342 MovieClip in Symbol 339 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.ball)) {
tellTarget ("_root.warp2") {
gotoAndPlay (2);
};
_root.ball._y = _root.warp2._y;
_root.ball._x = _root.warp2._x;
}
}
Symbol 344 MovieClip Frame 1
stop();
Instance of Symbol 342 MovieClip in Symbol 344 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.ball)) {
tellTarget ("_root.warp1") {
gotoAndPlay (2);
};
_root.ball._y = _root.warp1._y;
_root.ball._x = _root.warp1._x;
}
}
Instance of Symbol 78 MovieClip in Symbol 345 MovieClip Frame 1
onClipEvent (enterFrame) {
if (blockleft.hitTest(_root.ball)) {
_root.ball.Xspeed = -Math.abs(_root.ball.Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockbottom.hitTest(_root.ball) && (_root.ball.Yspeed < 1)) {
_root.ball.Yspeed = 1;
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
if (blockright.hitTest(_root.ball)) {
_root.ball.Xspeed = Math.abs(_root.ball.Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Symbol 350 Button
on (release) {
tellTarget ("_root") {
nextFrame();
};
}
Symbol 354 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 355 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 364 Button
on (release) {
tellTarget ("_root") {
nextFrame();
};
}
Symbol 365 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 366 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 371 Button
on (release) {
tellTarget ("_root") {
nextFrame();
};
}
Symbol 374 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 375 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 382 Button
on (release) {
tellTarget ("_root") {
nextFrame();
};
}
Symbol 383 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 384 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Instance of Symbol 53 MovieClip in Symbol 388 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.glow == 1) {
_alpha = 100;
if (blocktop.hitTest(_root.ball)) {
_root.ball.Yspeed = -Math.abs(_root.ball.Yspeed);
gotoAndPlay (1);
tellTarget ("_root.sound") {
gotoAndPlay ("bricksfall");
};
}
if (blockleft.hitTest(_root.ball)) {
gotoAndPlay (1);
_root.ball.Xspeed = -Math.abs(_root.ball.Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay ("bricksfall");
};
}
if (blockbottom.hitTest(_root.ball)) {
gotoAndPlay (1);
_root.ball.Yspeed = Math.abs(_root.ball.Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay ("bricksfall");
};
}
if (blockright.hitTest(_root.ball)) {
gotoAndPlay (1);
_root.ball.Xspeed = Math.abs(_root.ball.Xspeed);
tellTarget ("_root.sound") {
gotoAndPlay ("bricksfall");
};
}
}
}
onClipEvent (enterFrame) {
if (_root.glow == 0) {
_alpha = 0;
}
}
Symbol 392 Button
on (release) {
tellTarget ("_root") {
nextFrame();
};
}
Symbol 393 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 397 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 398 Button
on (keyPress "k") {
_root.serve = 1;
_root.lives--;
}
on (keyPress "K") {
_root.serve = 1;
_root.lives--;
}
Symbol 402 Button
on (release) {
gotoAndStop (2);
Mouse.show();
}
Symbol 406 Button
on (release) {
gotoAndStop (2);
Mouse.show();
}
Symbol 407 Button
on (keyPress "2") {
gotoAndStop (7);
}
Symbol 408 Button
on (keyPress "3") {
gotoAndStop (10);
}
Symbol 409 Button
on (keyPress "4") {
gotoAndStop (13);
}
Symbol 410 Button
on (keyPress "5") {
gotoAndStop (16);
}
Symbol 411 Button
on (keyPress "6") {
gotoAndStop (19);
}
Symbol 412 Button
on (keyPress "7") {
gotoAndStop (22);
}
Symbol 413 Button
on (keyPress "8") {
gotoAndStop (25);
}
Symbol 414 Button
on (keyPress "9") {
gotoAndStop (28);
}
Symbol 415 Button
on (keyPress "0") {
gotoAndStop (31);
}
Symbol 416 Button
on (keyPress "<Backspace>") {
gotoAndStop (34);
}
Symbol 417 Button
on (keyPress "1") {
gotoAndStop (4);
}
Symbol 420 Button
on (release) {
gotoAndStop (2);
}
Symbol 423 Button
on (release) {
gotoAndStop (44);
}
Symbol 426 Button
on (release) {
gotoAndStop (47);
}
Symbol 428 Button
on (release) {
gotoAndStop (50);
}
Symbol 430 Button
on (release) {
gotoAndStop (53);
}
Symbol 432 Button
on (release) {
gotoAndStop (56);
}
Symbol 434 Button
on (release) {
gotoAndStop (59);
}
Symbol 436 Button
on (release) {
gotoAndStop (62);
}
Symbol 438 Button
on (release) {
gotoAndStop (65);
}
Symbol 440 Button
on (release) {
gotoAndStop (68);
}
Symbol 442 Button
on (release) {
gotoAndStop (71);
}
Symbol 444 Button
on (release) {
gotoAndStop (74);
}
Symbol 446 Button
on (release) {
gotoAndStop (76);
}
Symbol 449 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 451 Button
on (release) {
gotoAndStop (2);
}
Symbol 452 Button
on (release) {
gotoAndStop (44);
}
Symbol 453 Button
on (release) {
gotoAndStop (47);
}
Symbol 454 Button
on (release) {
gotoAndStop (50);
}
Symbol 455 Button
on (release) {
gotoAndStop (53);
}
Symbol 456 Button
on (release) {
gotoAndStop (56);
}
Symbol 457 Button
on (release) {
gotoAndStop (59);
}
Symbol 458 Button
on (release) {
gotoAndStop (62);
}
Symbol 459 Button
on (release) {
gotoAndStop (65);
}
Symbol 460 Button
on (release) {
gotoAndStop (68);
}
Symbol 461 Button
on (release) {
gotoAndStop (71);
}
Symbol 462 Button
on (release) {
gotoAndStop (74);
}
Symbol 463 Button
on (release) {
gotoAndStop (76);
}
Symbol 469 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 470 Button
on (keyPress "k") {
_root.serve = 1;
_root.lives--;
}
on (keyPress "K") {
_root.serve = 1;
_root.lives--;
}
Symbol 471 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 472 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 473 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 474 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 485 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 486 MovieClip Frame 42
_root.time--;
if (_root.time < 1) {
tellTarget ("_root") {
nextFrame();
};
}
Symbol 491 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 492 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 493 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 499 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 501 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 502 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 503 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 504 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 505 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 507 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 509 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 510 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 511 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 512 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 518 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 520 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 521 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 522 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 523 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 525 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 527 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 528 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 529 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 530 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 532 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 533 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 534 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 535 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 536 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 538 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 539 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 540 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 541 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 542 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 544 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 545 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 546 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 547 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 548 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 549 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 550 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 551 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 552 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 553 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 554 Button
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 555 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 559 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y - 20;
_root.serve = 0;
}
}
Symbol 560 MovieClip Frame 1
stop();
Instance of Symbol 561 MovieClip in Symbol 560 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.ball)) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
tellTarget ("_parent") {
play();
};
}
}
Symbol 560 MovieClip Frame 42
_root.serve = 1;
_root.score = _root.score + 5000;
Symbol 564 MovieClip Frame 1
stop();
Instance of Symbol 565 MovieClip in Symbol 564 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.ball)) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
tellTarget ("_parent") {
play();
};
}
}
Symbol 564 MovieClip Frame 42
_root.serve = 1;
_root.score = _root.score + 100;
Symbol 568 MovieClip Frame 1
stop();
Instance of Symbol 569 MovieClip in Symbol 568 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.ball)) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
tellTarget ("_parent") {
play();
};
}
}
Symbol 568 MovieClip Frame 42
_root.serve = 1;
_root.score = _root.score + 10000;
Symbol 578 Button
on (release) {
if (_root.serve == 1) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
_root.ball._x = _root.paddle._x;
_root.ball._y = _root.paddle._y + 20;
_root.serve = 0;
}
}