Frame 1 (26 B)
stop();
stopAllSounds();
Frame 4 (135 B)
stop();
_quality = LOW;
_root.level = 1;
_root.hitsneeded = 0;
_root.hits = 0;
_root.lives = 6;
_root.score = 0;
Mouse.show();
Instance of Symbol 112 MovieClip "paddle" in Frame 4 (74 B)
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 5 (41 B)
stop();
_root.tries = 3;
Mouse.hide();
Instance of Symbol 171 MovieClip "ball" in Frame 5 (1.4 KiB) ●
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 175 MovieClip in Frame 5 (323 B)
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 (18 B)
gotoAndStop (40);
Frame 7 (81 B)
stop();
Mouse.show();
_root.hitsneeded = 0;
_root.hits = 0;
_root.level = 2;
Instance of Symbol 112 MovieClip "paddle" in Frame 7 (74 B)
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 8 (41 B)
stop();
Mouse.hide();
_root.serve = 1;
Instance of Symbol 217 MovieClip in Frame 8 (40 B)
onClipEvent (load) {
_root.time = 60;
}
Instance of Symbol 219 MovieClip "ball" in Frame 8 (1.43 KiB) ●
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 (18 B)
gotoAndStop (40);
Frame 10 (99 B)
stop();
_root.level = 3;
_root.hitsneeded = 0;
_root.hits = 0;
_root.lives = 5;
Mouse.show();
Instance of Symbol 112 MovieClip "paddle" in Frame 10 (74 B)
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 11 (23 B)
stop();
Mouse.hide();
Instance of Symbol 248 MovieClip "ball" in Frame 11 (1.42 KiB) ●
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 175 MovieClip in Frame 11 (323 B)
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 (18 B)
gotoAndStop (40);
Frame 13 (99 B)
stop();
_root.level = 4;
_root.hitsneeded = 0;
_root.hits = 0;
_root.lives = 4;
Mouse.show();
Instance of Symbol 112 MovieClip "paddle" in Frame 13 (74 B)
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 14 (23 B)
stop();
Mouse.hide();
Instance of Symbol 248 MovieClip "ball" in Frame 14 (1.42 KiB) ●
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 175 MovieClip in Frame 14 (323 B)
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 (18 B)
gotoAndStop (40);
Frame 16 (102 B)
stop();
_root.level = 5;
_root.hitsneeded = 0;
_root.hits = 0;
_root.lives = 5000;
Mouse.show();
Instance of Symbol 112 MovieClip "paddle" in Frame 16 (89 B)
onClipEvent (enterFrame) {
if (_parent._xmouse < 342) {
_x = _parent._xmouse;
}
}
Frame 17 (41 B)
stop();
Mouse.hide();
_root.level = 5;
Instance of Symbol 280 MovieClip in Frame 17 (40 B)
onClipEvent (load) {
_root.time = 60;
}
Instance of Symbol 283 MovieClip "ball" in Frame 17 (1.72 KiB) ●
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 (18 B)
gotoAndStop (40);
Frame 19 (99 B)
stop();
_root.level = 4;
_root.hitsneeded = 0;
_root.hits = 0;
_root.lives = 4;
Mouse.show();
Instance of Symbol 112 MovieClip "paddle" in Frame 19 (74 B)
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 20 (23 B)
stop();
Mouse.hide();
Instance of Symbol 283 MovieClip "ball" in Frame 20 (1.92 KiB) ●
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 175 MovieClip in Frame 20 (323 B)
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 (18 B)
gotoAndStop (40);
Frame 22 (99 B)
stop();
_root.level = 4;
_root.hitsneeded = 0;
_root.hits = 0;
_root.lives = 4;
Mouse.show();
Instance of Symbol 112 MovieClip "paddle" in Frame 22 (74 B)
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Instance of Symbol 112 MovieClip "paddle2" in Frame 22 (253 B)
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 (23 B)
stop();
Mouse.hide();
Instance of Symbol 309 MovieClip "ball" in Frame 23 (1.7 KiB) ●
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 175 MovieClip in Frame 23 (323 B)
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 (18 B)
gotoAndStop (40);
Frame 25 (99 B)
stop();
_root.level = 4;
_root.hitsneeded = 0;
_root.hits = 0;
_root.lives = 4;
Mouse.show();
Instance of Symbol 69 MovieClip in Frame 25 (598 B)
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 112 MovieClip "paddle" in Frame 25 (74 B)
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 26 (23 B)
stop();
Mouse.hide();
Instance of Symbol 248 MovieClip "ball" in Frame 26 (1.92 KiB) ●
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 175 MovieClip in Frame 26 (323 B)
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 (18 B)
gotoAndStop (40);
Frame 28 (99 B)
stop();
_root.level = 4;
_root.hitsneeded = 0;
_root.hits = 0;
_root.lives = 4;
Mouse.show();
Instance of Symbol 112 MovieClip "paddle" in Frame 28 (74 B)
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 29 (23 B)
stop();
Mouse.hide();
Instance of Symbol 323 MovieClip "ball" in Frame 29 (1.92 KiB) ●
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 175 MovieClip in Frame 29 (323 B)
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 (18 B)
gotoAndStop (40);
Frame 31 (99 B)
stop();
_root.level = 4;
_root.hitsneeded = 0;
_root.hits = 0;
_root.lives = 3;
Mouse.show();
Instance of Symbol 112 MovieClip "paddle" in Frame 31 (74 B)
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 32 (23 B)
stop();
Mouse.hide();
Instance of Symbol 323 MovieClip "ball" in Frame 32 (1.92 KiB) ●
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 175 MovieClip in Frame 32 (323 B)
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 (18 B)
gotoAndStop (40);
Frame 34 (140 B)
stop();
_root.level = 4;
_root.hitsneeded = 0;
_root.hits = 0;
_root.lives = 6;
_root.glow = 0;
_root.glowsneeded = 0;
Mouse.show();
Instance of Symbol 112 MovieClip "paddle" in Frame 34 (74 B)
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 35 (23 B)
stop();
Mouse.hide();
Instance of Symbol 171 MovieClip "ball" in Frame 35 (1.94 KiB) ●
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 175 MovieClip in Frame 35 (399 B)
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 (32 B)
Mouse.show();
stopAllSounds();
Frame 37 (18 B)
gotoAndStop (40);
Frame 38 (32 B)
Mouse.show();
stopAllSounds();
Frame 39 (18 B)
gotoAndStop (40);
Frame 40 (32 B)
Mouse.show();
stopAllSounds();
Frame 41 (18 B)
gotoAndStop (40);
Frame 42 (149 B)
stopAllSounds();
Mouse.show();
_root.hitsneeded = 0;
_root.hits = 0;
_root.time = 60;
_root.glow = 0;
_root.glowsneeded = 0;
_root.score = 0;
Frame 43 (18 B)
gotoAndStop (42);
Instance of Symbol 112 MovieClip "paddle" in Frame 43 (74 B)
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 44 (81 B)
stop();
Mouse.hide();
_root.level = 0;
_root.lives = 20000;
_root.score = 0;
Instance of Symbol 171 MovieClip "ball" in Frame 44 (1.4 KiB) ●
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 175 MovieClip in Frame 44 (323 B)
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 (18 B)
gotoAndStop (42);
Frame 46 (18 B)
gotoAndStop (42);
Instance of Symbol 112 MovieClip "paddle" in Frame 46 (74 B)
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 47 (59 B)
stop();
Mouse.hide();
_root.serve = 1;
_root.level = 2;
Instance of Symbol 219 MovieClip "ball" in Frame 47 (1.43 KiB) ●
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 (18 B)
gotoAndStop (42);
Frame 49 (18 B)
gotoAndStop (42);
Instance of Symbol 112 MovieClip "paddle" in Frame 49 (74 B)
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 50 (45 B)
stop();
Mouse.hide();
_root.lives = 50000;
Instance of Symbol 248 MovieClip "ball" in Frame 50 (1.42 KiB) ●
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 175 MovieClip in Frame 50 (323 B)
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 (18 B)
gotoAndStop (42);
Frame 52 (18 B)
gotoAndStop (42);
Instance of Symbol 112 MovieClip "paddle" in Frame 52 (74 B)
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 53 (79 B)
stop();
Mouse.hide();
_root.lives = 400000 /* 0x061A80 */;
_root.level = 4;
Instance of Symbol 248 MovieClip "ball" in Frame 53 (1.42 KiB) ●
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 175 MovieClip in Frame 53 (323 B)
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 (18 B)
gotoAndStop (42);
Frame 55 (18 B)
gotoAndStop (42);
Instance of Symbol 112 MovieClip "paddle" in Frame 55 (89 B)
onClipEvent (enterFrame) {
if (_parent._xmouse < 342) {
_x = _parent._xmouse;
}
}
Frame 56 (62 B)
stop();
Mouse.hide();
_root.level = 5;
_root.lives = 5000;
Instance of Symbol 283 MovieClip "ball" in Frame 56 (1.72 KiB) ●
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 (18 B)
gotoAndStop (42);
Frame 58 (18 B)
gotoAndStop (42);
Instance of Symbol 112 MovieClip "paddle" in Frame 58 (74 B)
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 59 (45 B)
stop();
Mouse.hide();
_root.lives = 40000;
Instance of Symbol 283 MovieClip "ball" in Frame 59 (1.92 KiB) ●
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 175 MovieClip in Frame 59 (323 B)
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 (18 B)
gotoAndStop (42);
Frame 61 (18 B)
gotoAndStop (42);
Instance of Symbol 112 MovieClip "paddle" in Frame 61 (74 B)
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Instance of Symbol 112 MovieClip "paddle2" in Frame 61 (253 B)
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 (45 B)
stop();
Mouse.hide();
_root.lives = 40000;
Instance of Symbol 309 MovieClip "ball" in Frame 62 (1.7 KiB) ●
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 175 MovieClip in Frame 62 (323 B)
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 (18 B)
gotoAndStop (42);
Frame 64 (18 B)
gotoAndStop (42);
Instance of Symbol 69 MovieClip in Frame 64 (598 B)
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 112 MovieClip "paddle" in Frame 64 (74 B)
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 65 (63 B)
stop();
Mouse.hide();
_root.level = 8;
_root.lives = 40000;
Instance of Symbol 248 MovieClip "ball" in Frame 65 (1.92 KiB) ●
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 175 MovieClip in Frame 65 (323 B)
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 (18 B)
gotoAndStop (42);
Frame 67 (18 B)
gotoAndStop (42);
Instance of Symbol 112 MovieClip "paddle" in Frame 67 (74 B)
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 68 (79 B)
stop();
Mouse.hide();
_root.level = 9;
_root.lives = 400000 /* 0x061A80 */;
Instance of Symbol 323 MovieClip "ball" in Frame 68 (1.92 KiB) ●
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 175 MovieClip in Frame 68 (323 B)
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 (18 B)
gotoAndStop (42);
Frame 70 (18 B)
gotoAndStop (42);
Instance of Symbol 112 MovieClip "paddle" in Frame 70 (74 B)
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 71 (64 B)
stop();
Mouse.hide();
_root.level = 10;
_root.lives = 30000;
Instance of Symbol 323 MovieClip "ball" in Frame 71 (1.92 KiB) ●
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 175 MovieClip in Frame 71 (323 B)
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 (18 B)
gotoAndStop (42);
Frame 73 (18 B)
gotoAndStop (42);
Instance of Symbol 112 MovieClip "paddle" in Frame 73 (74 B)
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 74 (64 B)
stop();
Mouse.hide();
_root.level = 11;
_root.lives = 60000;
Instance of Symbol 171 MovieClip "ball" in Frame 74 (1.94 KiB) ●
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 175 MovieClip in Frame 74 (399 B)
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 (18 B)
gotoAndStop (42);
Instance of Symbol 112 MovieClip "paddle" in Frame 75 (74 B)
onClipEvent (enterFrame) {
_x = (_x + ((_parent._xmouse - _x) * 0.8));
}
Frame 76 (64 B)
stop();
Mouse.hide();
_root.level = 11;
_root.lives = 60000;
Instance of Symbol 429 MovieClip "ball" in Frame 76 (1.29 KiB) ●
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 7 MovieClip Frame 10 (8 B)
stop();
Instance of Symbol 6 MovieClip in Symbol 7 MovieClip Frame 10 (209 B)
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 17 Button (34 B)
on (release) {
gotoAndStop (4);
}
Symbol 23 Button (59 B)
on (release) {
tellTarget ("_root") {
nextFrame();
};
}
Symbol 32 Button (93 B)
on (keyPress "<Enter>") {
if (_root.password == "skobydob") {
gotoAndStop (42);
}
}
Symbol 38 Button (25 B)
on (release) {
play();
}
Symbol 54 MovieClip Frame 1 (29 B)
stop();
_root.hitsneeded++;
Symbol 54 MovieClip Frame 5 (57 B)
stop();
_root.hits++;
_root.score = _root.score + 100;
Symbol 58 MovieClip Frame 7 (24 B)
stop();
_root.score++;
Instance of Symbol 54 MovieClip in Symbol 60 MovieClip Frame 1 (867 B)
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 61 MovieClip Frame 1 (18 B)
stop();
stop();
Instance of Symbol 54 MovieClip in Symbol 61 MovieClip Frame 1 (2.82 KiB) ●
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 61 MovieClip Frame 8 (55 B)
stop();
_root.hits++;
_root.sore = _root.sore + 100;
Symbol 70 MovieClip Frame 1 (149 B)
stop();
if (_root.level == 1) {
gotoAndPlay (2);
}
if (_root.level == 4) {
gotoAndPlay (2);
}
if (_root.level == 0) {
gotoAndPlay (2);
}
Instance of Symbol 69 MovieClip in Symbol 70 MovieClip Frame 1 (624 B)
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 69 MovieClip in Symbol 70 MovieClip Frame 50 (1.7 KiB) ●
onClipEvent (enterFrame) {
if (blocktop.hitTest(_root.ball)) {
_root.ball.Yspeed = -Math.abs(_root.ball.Yspeed);
}
if (blockleft.hitTest(_root.ball)) {
_root.ball.Xspeed = -Math.abs(_root.ball.Xspeed);
}
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = Math.abs(_root.ball.Yspeed);
}
if (blockright.hitTest(_root.ball)) {
_root.ball.Xspeed = Math.abs(_root.ball.Xspeed);
}
}
onClipEvent (enterFrame) {
if (blocktop.hitTest(_root.ball1)) {
_root.ball1.Yspeed = -Math.abs(_root.ball1.Yspeed);
}
if (blockleft.hitTest(_root.ball1)) {
_root.ball1.Xspeed = -Math.abs(_root.ball1.Xspeed);
}
if (blockbottom.hitTest(_root.ball1)) {
_root.ball1.Yspeed = Math.abs(_root.ball1.Yspeed);
}
if (blockright.hitTest(_root.ball1)) {
_root.ball1.Xspeed = Math.abs(_root.ball1.Xspeed);
}
}
onClipEvent (enterFrame) {
if (blocktop.hitTest(_root.ball2)) {
_root.ball2.Yspeed = -Math.abs(_root.ball2.Yspeed);
}
if (blockleft.hitTest(_root.ball2)) {
gotoAndPlay (1);
_root.ball2.Xspeed = -Math.abs(_root.ball2.Xspeed);
}
if (blockbottom.hitTest(_root.ball2)) {
_root.ball2.Yspeed = Math.abs(_root.ball2.Yspeed);
}
if (blockright.hitTest(_root.ball2)) {
_root.ball2.Xspeed = Math.abs(_root.ball2.Xspeed);
}
}
onClipEvent (enterFrame) {
if (blocktop.hitTest(_root.ball3)) {
_root.ball3.Yspeed = -Math.abs(_root.ball3.Yspeed);
}
if (blockleft.hitTest(_root.ball3)) {
_root.ball3.Xspeed = -Math.abs(_root.ball3.Xspeed);
}
if (blockbottom.hitTest(_root.ball3)) {
_root.ball3.Yspeed = Math.abs(_root.ball3.Yspeed);
}
if (blockright.hitTest(_root.ball3)) {
_root.ball3.Xspeed = Math.abs(_root.ball3.Xspeed);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.laser)) {
_root.shootability = 1;
}
}
Instance of Symbol 76 MovieClip in Symbol 77 MovieClip Frame 1 (744 B)
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 86 MovieClip Frame 1 (30 B)
stop();
_root.glowsneeded++;
Instance of Symbol 81 MovieClip in Symbol 86 MovieClip Frame 1 (102 B)
onClipEvent (enterFrame) {
if (hitTest(_root.ball)) {
tellTarget ("_parent") {
play();
};
}
}
Symbol 86 MovieClip Frame 20 (21 B)
_root.glowsneeded--;
Instance of Symbol 81 MovieClip in Symbol 86 MovieClip Frame 21 (118 B)
onClipEvent (enterFrame) {
if (hitTest(_root.ball)) {
tellTarget ("_parent") {
gotoAndPlay ("glowon");
};
}
}
Symbol 99 MovieClip Frame 2 (8 B)
stop();
Symbol 99 MovieClip Frame 5 (17 B)
gotoAndPlay (2);
Symbol 99 MovieClip Frame 25 (17 B)
gotoAndPlay (1);
Symbol 99 MovieClip Frame 36 (17 B)
gotoAndPlay (1);
Symbol 118 Button (59 B)
on (release) {
tellTarget ("_root") {
nextFrame();
};
}
Symbol 129 Button (61 B)
on (keyPress "h") {
play();
}
on (keyPress "H") {
play();
}
Symbol 132 MovieClip Frame 1 (8 B)
stop();
Symbol 132 MovieClip Frame 6 (8 B)
stop();
Symbol 134 Button (39 B)
on (keyPress "2") {
gotoAndStop (7);
}
Symbol 136 Button (40 B)
on (keyPress "3") {
gotoAndStop (10);
}
Symbol 138 Button (40 B)
on (keyPress "4") {
gotoAndStop (13);
}
Symbol 140 Button (40 B)
on (keyPress "5") {
gotoAndStop (16);
}
Symbol 142 Button (40 B)
on (keyPress "6") {
gotoAndStop (19);
}
Symbol 144 Button (40 B)
on (keyPress "7") {
gotoAndStop (22);
}
Symbol 146 Button (40 B)
on (keyPress "8") {
gotoAndStop (25);
}
Symbol 148 Button (40 B)
on (keyPress "9") {
gotoAndStop (28);
}
Symbol 150 Button (40 B)
on (keyPress "0") {
gotoAndStop (31);
}
Symbol 152 Button (56 B)
on (keyPress "<Backspace>") {
gotoAndStop (34);
}
Symbol 154 Button (39 B)
on (keyPress "1") {
gotoAndStop (4);
}
Symbol 157 Button (42 B)
on (keyPress "<Space>") {
play();
}
Symbol 167 MovieClip Frame 1 (8 B)
stop();
Symbol 167 MovieClip Frame 2 (17 B)
stopAllSounds();
Symbol 167 MovieClip Frame 3 (8 B)
stop();
Symbol 167 MovieClip Frame 4 (17 B)
stopAllSounds();
Symbol 167 MovieClip Frame 5 (8 B)
stop();
Symbol 167 MovieClip Frame 6 (17 B)
stopAllSounds();
Symbol 167 MovieClip Frame 7 (8 B)
stop();
Symbol 167 MovieClip Frame 8 (17 B)
stopAllSounds();
Symbol 167 MovieClip Frame 9 (8 B)
stop();
Symbol 169 Button (111 B)
on (keyPress "k") {
_root.serve = 1;
_root.lives--;
}
on (keyPress "K") {
_root.serve = 1;
_root.lives--;
}
Symbol 173 Button (188 B)
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 180 MovieClip Frame 2 (8 B)
stop();
Symbol 180 MovieClip Frame 5 (17 B)
gotoAndPlay (2);
Symbol 180 MovieClip Frame 25 (17 B)
gotoAndPlay (1);
Symbol 180 MovieClip Frame 36 (17 B)
gotoAndPlay (1);
Symbol 180 MovieClip Frame 51 (17 B)
gotoAndPlay (1);
Symbol 180 MovieClip Frame 64 (17 B)
gotoAndPlay (1);
Symbol 180 MovieClip Frame 76 (17 B)
gotoAndPlay (1);
Symbol 180 MovieClip Frame 88 (17 B)
gotoAndPlay (1);
Symbol 192 MovieClip Frame 1 (8 B)
stop();
Instance of Symbol 69 MovieClip in Symbol 192 MovieClip Frame 1 (444 B)
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 69 MovieClip in Symbol 192 MovieClip Frame 1 (275 B)
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 69 MovieClip in Symbol 192 MovieClip Frame 1 (275 B)
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 197 MovieClip Frame 1 (8 B)
stop();
Instance of Symbol 69 MovieClip in Symbol 200 MovieClip Frame 1 (668 B)
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 69 MovieClip in Symbol 200 MovieClip Frame 1 (668 B)
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 69 MovieClip in Symbol 200 MovieClip Frame 1 (178 B)
onClipEvent (enterFrame) {
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = Math.abs(_root.ball.Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Symbol 201 MovieClip Frame 1 (8 B)
stop();
Instance of Symbol 69 MovieClip in Symbol 201 MovieClip Frame 1 (444 B)
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 69 MovieClip in Symbol 201 MovieClip Frame 1 (275 B)
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 69 MovieClip in Symbol 201 MovieClip Frame 1 (275 B)
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 69 MovieClip in Symbol 202 MovieClip Frame 1 (624 B)
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 69 MovieClip in Symbol 202 MovieClip Frame 1 (624 B)
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 69 MovieClip in Symbol 202 MovieClip Frame 1 (668 B)
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 69 MovieClip in Symbol 202 MovieClip Frame 1 (668 B)
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 69 MovieClip in Symbol 202 MovieClip Frame 1 (178 B)
onClipEvent (enterFrame) {
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = Math.abs(_root.ball.Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Symbol 203 MovieClip Frame 1 (8 B)
stop();
Instance of Symbol 69 MovieClip in Symbol 203 MovieClip Frame 1 (444 B)
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 69 MovieClip in Symbol 203 MovieClip Frame 1 (275 B)
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 69 MovieClip in Symbol 203 MovieClip Frame 1 (275 B)
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 69 MovieClip in Symbol 204 MovieClip Frame 1 (668 B)
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 69 MovieClip in Symbol 204 MovieClip Frame 1 (668 B)
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 69 MovieClip in Symbol 204 MovieClip Frame 1 (178 B)
onClipEvent (enterFrame) {
if (blockbottom.hitTest(_root.ball)) {
_root.ball.Yspeed = Math.abs(_root.ball.Yspeed);
tellTarget ("_root.sound") {
gotoAndPlay (2);
};
}
}
Symbol 217 MovieClip Frame 42 (396 B)
_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 226 MovieClip Frame 2 (8 B)
stop();
Symbol 226 MovieClip Frame 5 (17 B)
gotoAndPlay (2);
Symbol 226 MovieClip Frame 25 (17 B)
gotoAndPlay (1);
Symbol 226 MovieClip Frame 36 (17 B)
gotoAndPlay (1);
Symbol 226 MovieClip Frame 51 (17 B)
gotoAndPlay (1);
Symbol 226 MovieClip Frame 64 (17 B)
gotoAndPlay (1);
Symbol 226 MovieClip Frame 76 (17 B)
gotoAndPlay (1);
Symbol 226 MovieClip Frame 88 (17 B)
gotoAndPlay (1);
Symbol 234 MovieClip Frame 1 (8 B)
stop();
Instance of Symbol 232 MovieClip in Symbol 234 MovieClip Frame 1 (136 B)
onClipEvent (enterFrame) {
if (hitTest(_root.ball)) {
tellTarget ("_parent") {
play();
};
_root.score = _root.score + 50;
}
}
Symbol 234 MovieClip Frame 5 (8 B)
stop();
Symbol 238 MovieClip Frame 1 (29 B)
stop();
_root.hitsneeded++;
Instance of Symbol 232 MovieClip in Symbol 238 MovieClip Frame 1 (136 B)
onClipEvent (enterFrame) {
if (hitTest(_root.ball)) {
tellTarget ("_parent") {
play();
};
_root.score = _root.score + 50;
}
}
Instance of Symbol 69 MovieClip in Symbol 238 MovieClip Frame 1 (676 B)
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 69 MovieClip in Symbol 238 MovieClip Frame 1 (676 B)
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 238 MovieClip Frame 5 (23 B)
stop();
_root.hits++;
Symbol 242 MovieClip Frame 1 (29 B)
stop();
_root.hitsneeded++;
Instance of Symbol 232 MovieClip in Symbol 242 MovieClip Frame 1 (137 B)
onClipEvent (enterFrame) {
if (hitTest(_root.ball)) {
tellTarget ("_parent") {
play();
};
_root.score = _root.score + 150;
}
}
Instance of Symbol 69 MovieClip in Symbol 242 MovieClip Frame 1 (676 B)
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 69 MovieClip in Symbol 242 MovieClip Frame 1 (676 B)
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 242 MovieClip Frame 5 (23 B)
stop();
_root.hits++;
Symbol 260 MovieClip Frame 2 (8 B)
stop();
Symbol 260 MovieClip Frame 5 (17 B)
gotoAndPlay (2);
Symbol 260 MovieClip Frame 25 (17 B)
gotoAndPlay (1);
Symbol 260 MovieClip Frame 36 (17 B)
gotoAndPlay (1);
Symbol 260 MovieClip Frame 51 (17 B)
gotoAndPlay (1);
Symbol 260 MovieClip Frame 64 (17 B)
gotoAndPlay (1);
Symbol 260 MovieClip Frame 76 (17 B)
gotoAndPlay (1);
Symbol 260 MovieClip Frame 88 (17 B)
gotoAndPlay (1);
Instance of Symbol 76 MovieClip in Symbol 264 MovieClip Frame 1 (624 B)
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 269 MovieClip Frame 1 (8 B)
stop();
Instance of Symbol 267 MovieClip in Symbol 269 MovieClip Frame 1 (152 B)
onClipEvent (enterFrame) {
if (hitTest(_root.ball)) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
tellTarget ("_parent") {
play();
};
}
}
Symbol 269 MovieClip Frame 42 (66 B)
_root.serve = 1;
_root.score = _root.score + 500;
_root.hits++;
Symbol 280 MovieClip Frame 42 (239 B)
_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 291 MovieClip Frame 2 (8 B)
stop();
Symbol 291 MovieClip Frame 5 (17 B)
gotoAndPlay (2);
Symbol 291 MovieClip Frame 25 (17 B)
gotoAndPlay (1);
Symbol 291 MovieClip Frame 36 (17 B)
gotoAndPlay (1);
Symbol 291 MovieClip Frame 51 (17 B)
gotoAndPlay (1);
Symbol 291 MovieClip Frame 64 (17 B)
gotoAndPlay (1);
Symbol 291 MovieClip Frame 76 (17 B)
gotoAndPlay (1);
Symbol 291 MovieClip Frame 88 (17 B)
gotoAndPlay (1);
Symbol 300 MovieClip Frame 1 (8 B)
stop();
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1 (183 B)
onClipEvent (enterFrame) {
if (hitTest(_root.ball)) {
tellTarget ("_root.warp2") {
gotoAndPlay (2);
};
_root.ball._y = _root.warp2._y;
_root.ball._x = _root.warp2._x;
}
}
Symbol 301 MovieClip Frame 1 (8 B)
stop();
Instance of Symbol 299 MovieClip in Symbol 301 MovieClip Frame 1 (183 B)
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 76 MovieClip in Symbol 303 MovieClip Frame 1 (488 B)
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);
};
}
}
Instance of Symbol 54 MovieClip in Symbol 333 MovieClip Frame 1 (887 B)
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 341 Button (34 B)
on (release) {
gotoAndStop (2);
}
Symbol 346 Button (49 B)
on (release) {
gotoAndStop (2);
Mouse.show();
}
Symbol 350 Button (34 B)
on (release) {
gotoAndStop (2);
}
Symbol 355 Button (35 B)
on (release) {
gotoAndStop (44);
}
Symbol 357 Button (35 B)
on (release) {
gotoAndStop (47);
}
Symbol 359 Button (35 B)
on (release) {
gotoAndStop (50);
}
Symbol 361 Button (35 B)
on (release) {
gotoAndStop (53);
}
Symbol 363 Button (35 B)
on (release) {
gotoAndStop (56);
}
Symbol 365 Button (35 B)
on (release) {
gotoAndStop (59);
}
Symbol 367 Button (35 B)
on (release) {
gotoAndStop (62);
}
Symbol 369 Button (35 B)
on (release) {
gotoAndStop (65);
}
Symbol 371 Button (35 B)
on (release) {
gotoAndStop (68);
}
Symbol 373 Button (35 B)
on (release) {
gotoAndStop (71);
}
Symbol 375 Button (35 B)
on (release) {
gotoAndStop (74);
}
Symbol 377 Button (35 B)
on (release) {
gotoAndStop (76);
}
Symbol 380 Button (81 B)
on (keyPress "q") {
gotoAndStop (42);
}
on (keyPress "Q") {
gotoAndStop (42);
}
Symbol 392 MovieClip Frame 42 (89 B)
_root.time--;
if (_root.time < 1) {
tellTarget ("_root") {
nextFrame();
};
}
Symbol 414 MovieClip Frame 1 (8 B)
stop();
Instance of Symbol 412 MovieClip in Symbol 414 MovieClip Frame 1 (152 B)
onClipEvent (enterFrame) {
if (hitTest(_root.ball)) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
tellTarget ("_parent") {
play();
};
}
}
Symbol 414 MovieClip Frame 42 (52 B)
_root.serve = 1;
_root.score = _root.score + 5000;
Symbol 418 MovieClip Frame 1 (8 B)
stop();
Instance of Symbol 416 MovieClip in Symbol 418 MovieClip Frame 1 (152 B)
onClipEvent (enterFrame) {
if (hitTest(_root.ball)) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
tellTarget ("_parent") {
play();
};
}
}
Symbol 418 MovieClip Frame 42 (51 B)
_root.serve = 1;
_root.score = _root.score + 100;
Symbol 422 MovieClip Frame 1 (8 B)
stop();
Instance of Symbol 420 MovieClip in Symbol 422 MovieClip Frame 1 (152 B)
onClipEvent (enterFrame) {
if (hitTest(_root.ball)) {
_root.ball.Xspeed = 0;
_root.ball.Yspeed = 0;
tellTarget ("_parent") {
play();
};
}
}
Symbol 422 MovieClip Frame 42 (53 B)
_root.serve = 1;
_root.score = _root.score + 10000;
Symbol 427 Button (188 B)
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;
}
}