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

swfchan turned sixteen years old yesterday! (5may2024)

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

Gravity Ball 2.swf

This is the info page for
Flash #26634

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


Text
000

play

Gravity Ball

instructions

2

password

© 2002 Tomorrow's Nobody

www.tomorrowsnobody.com

Instructions

Press Spacebar to change song.  Use the mouse to control the
paddle. click to serve. Juslt follow the objectives for each
level.  If the ball gets stuck press "k" it will take a life a way
so only use it if you have to.

- one hit brick

- two hit brick

- unbreakable brick

- ring

- fan

- plinko peg

- orb

- warp

sound

-objective-

Break All the
Blocks.
You have 6 balls.

level 1 - ol skool

0

10

score

x

10

0

"H" for help

Don't get
frustrated! If the
ball is stuck
somewhere in play,
press "K" to kill
the ball, making you
lose a life and
starting a fresh
ball.

help

2

3

4

5

6

7

8

9

10

11

1

sound

2 pt

6 pts

4 pts

0

60

get 10pts in 60sec.

level 2 - hoops

You have

0

left

if a ball gets stuck press "k"

0

0

60

60

0

10

10

0

sound

Light up All rings by
passing through
them
You have 5 balls.

level 3 - rings

Break all the
bricks and light up
all the rings.
You have 4 balls.

level 4 - Mixed up

sound

500

60

Get at least 1 ball
into the trash in
60sec.

level 5 - blow ball

60

60

Get all Bricks and
rings, watch out
for the fans.
You have 4 balls.

level 6 - mixed up2

sound

Get all Bricks. use
the warps for the
hard to reach ones.
You have 4 balls.

level 7 - warps

break all of the
bricks and light up
all of the rings.
You have 4 balls.

level 8 - Mixed up 3

level 9 - Mixed up 4

break all of the
bricks and light up
all of the rings.
You have 3 balls.

level 10 - Mixed up 5

light up all orbs to
turn on the blocks.
The orbs will turn
off, so be quick.
You have 3 balls.

Final level - orbs

Game over

Play again

Congratulations

You beat the game
You can now put in the
password "skobydob" (no quotes)
into the password box,
and press enter..

Cheating is Wrong

press "Q" at any time to return to this menu

regular game

Practice Mode

level 1 - ol skool

level 2 -  hoops

level 3- rings

level 4 - mixed up

level 5 - blow ball

level 6 - mixed up 2

level 7 - warps

level 8 - mixed up 3

level 9 - mixed up 4

level 10 - mixed up 5

Final level - orbs

special level

(click a level to play)

Q

0

0

0

60

0

0

60

60

0

0

60

5,000

100

10,000

0

0

ActionScript [AS1/AS2]

Frame 1
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 112 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 160 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 164 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 112 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 206 MovieClip in Frame 8
onClipEvent (load) { _root.time = 60; }
Instance of Symbol 208 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 112 MovieClip "paddle" in Frame 10
onClipEvent (enterFrame) { _x = (_x + ((_parent._xmouse - _x) * 0.8)); }
Frame 11
stop(); Mouse.hide();
Instance of Symbol 237 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 164 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 112 MovieClip "paddle" in Frame 13
onClipEvent (enterFrame) { _x = (_x + ((_parent._xmouse - _x) * 0.8)); }
Frame 14
stop(); Mouse.hide();
Instance of Symbol 237 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 164 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 112 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 267 MovieClip in Frame 17
onClipEvent (load) { _root.time = 60; }
Instance of Symbol 270 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 112 MovieClip "paddle" in Frame 19
onClipEvent (enterFrame) { _x = (_x + ((_parent._xmouse - _x) * 0.8)); }
Frame 20
stop(); Mouse.hide();
Instance of Symbol 270 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 164 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 112 MovieClip "paddle" in Frame 22
onClipEvent (enterFrame) { _x = (_x + ((_parent._xmouse - _x) * 0.8)); }
Instance of Symbol 112 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 296 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 164 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 69 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 112 MovieClip "paddle" in Frame 25
onClipEvent (enterFrame) { _x = (_x + ((_parent._xmouse - _x) * 0.8)); }
Frame 26
stop(); Mouse.hide();
Instance of Symbol 237 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 164 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 112 MovieClip "paddle" in Frame 28
onClipEvent (enterFrame) { _x = (_x + ((_parent._xmouse - _x) * 0.8)); }
Frame 29
stop(); Mouse.hide();
Instance of Symbol 308 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 164 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 112 MovieClip "paddle" in Frame 31
onClipEvent (enterFrame) { _x = (_x + ((_parent._xmouse - _x) * 0.8)); }
Frame 32
stop(); Mouse.hide();
Instance of Symbol 308 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 164 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 112 MovieClip "paddle" in Frame 34
onClipEvent (enterFrame) { _x = (_x + ((_parent._xmouse - _x) * 0.8)); }
Frame 35
stop(); Mouse.hide();
Instance of Symbol 160 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 164 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();
Frame 37
gotoAndStop (40);
Frame 38
Mouse.show(); stopAllSounds();
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 112 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 160 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 164 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 112 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 208 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 112 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 237 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 164 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 112 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 237 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 164 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 112 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 270 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 112 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 270 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 164 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 112 MovieClip "paddle" in Frame 61
onClipEvent (enterFrame) { _x = (_x + ((_parent._xmouse - _x) * 0.8)); }
Instance of Symbol 112 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 296 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 164 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 69 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 112 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 237 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 164 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 112 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 308 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 164 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 112 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 308 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 164 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 112 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 160 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 164 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 112 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 411 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 7 MovieClip Frame 10
stop();
Instance of Symbol 6 MovieClip in Symbol 7 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 17 Button
on (release) { gotoAndStop (4); }
Symbol 24 Button
on (release) { tellTarget ("_root") { nextFrame(); }; }
Symbol 33 Button
on (keyPress "<Enter>") { if (_root.password == "skobydob") { gotoAndStop (42); } }
Symbol 38 Button
on (release) { play(); }
Symbol 54 MovieClip Frame 1
stop(); _root.hitsneeded++;
Symbol 54 MovieClip Frame 5
stop(); _root.hits++; _root.score = _root.score + 100;
Symbol 58 MovieClip Frame 7
stop(); _root.score++;
Instance of Symbol 54 MovieClip in Symbol 60 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 61 MovieClip Frame 1
stop(); stop();
Instance of Symbol 54 MovieClip in Symbol 61 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 61 MovieClip Frame 8
stop(); _root.hits++; _root.sore = _root.sore + 100;
Symbol 70 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 69 MovieClip in Symbol 70 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 69 MovieClip in Symbol 70 MovieClip Frame 50
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
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
stop(); _root.glowsneeded++;
Instance of Symbol 81 MovieClip in Symbol 86 MovieClip Frame 1
onClipEvent (enterFrame) { if (hitTest(_root.ball)) { tellTarget ("_parent") { play(); }; } }
Symbol 86 MovieClip Frame 20
_root.glowsneeded--;
Instance of Symbol 81 MovieClip in Symbol 86 MovieClip Frame 21
onClipEvent (enterFrame) { if (hitTest(_root.ball)) { tellTarget ("_parent") { gotoAndPlay ("glowon"); }; } }
Symbol 99 MovieClip Frame 2
stop();
Symbol 99 MovieClip Frame 5
gotoAndPlay (2);
Symbol 99 MovieClip Frame 25
gotoAndPlay (1);
Symbol 99 MovieClip Frame 36
gotoAndPlay (1);
Symbol 118 Button
on (release) { tellTarget ("_root") { nextFrame(); }; }
Symbol 129 Button
on (keyPress "h") { play(); } on (keyPress "H") { play(); }
Symbol 133 MovieClip Frame 1
stop();
Symbol 133 MovieClip Frame 6
stop();
Symbol 135 Button
on (keyPress "2") { gotoAndStop (7); }
Symbol 137 Button
on (keyPress "3") { gotoAndStop (10); }
Symbol 139 Button
on (keyPress "4") { gotoAndStop (13); }
Symbol 141 Button
on (keyPress "5") { gotoAndStop (16); }
Symbol 143 Button
on (keyPress "6") { gotoAndStop (19); }
Symbol 145 Button
on (keyPress "7") { gotoAndStop (22); }
Symbol 147 Button
on (keyPress "8") { gotoAndStop (25); }
Symbol 149 Button
on (keyPress "9") { gotoAndStop (28); }
Symbol 151 Button
on (keyPress "0") { gotoAndStop (31); }
Symbol 153 Button
on (keyPress "<Backspace>") { gotoAndStop (34); }
Symbol 155 Button
on (keyPress "1") { gotoAndStop (4); }
Symbol 157 Button
on (keyPress "k") { _root.serve = 1; _root.lives--; } on (keyPress "K") { _root.serve = 1; _root.lives--; }
Symbol 162 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 169 MovieClip Frame 2
stop();
Symbol 169 MovieClip Frame 5
gotoAndPlay (2);
Symbol 169 MovieClip Frame 25
gotoAndPlay (1);
Symbol 169 MovieClip Frame 36
gotoAndPlay (1);
Symbol 169 MovieClip Frame 51
gotoAndPlay (1);
Symbol 169 MovieClip Frame 64
gotoAndPlay (1);
Symbol 169 MovieClip Frame 76
gotoAndPlay (1);
Symbol 169 MovieClip Frame 88
gotoAndPlay (1);
Symbol 181 MovieClip Frame 1
stop();
Instance of Symbol 69 MovieClip in Symbol 181 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 69 MovieClip in Symbol 181 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 69 MovieClip in Symbol 181 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 186 MovieClip Frame 1
stop();
Instance of Symbol 69 MovieClip in Symbol 189 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 69 MovieClip in Symbol 189 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 69 MovieClip in Symbol 189 MovieClip Frame 1
onClipEvent (enterFrame) { if (blockbottom.hitTest(_root.ball)) { _root.ball.Yspeed = Math.abs(_root.ball.Yspeed); tellTarget ("_root.sound") { gotoAndPlay (2); }; } }
Symbol 190 MovieClip Frame 1
stop();
Instance of Symbol 69 MovieClip in Symbol 190 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 69 MovieClip in Symbol 190 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 69 MovieClip in Symbol 190 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 69 MovieClip in Symbol 191 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 69 MovieClip in Symbol 191 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 69 MovieClip in Symbol 191 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 69 MovieClip in Symbol 191 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 69 MovieClip in Symbol 191 MovieClip Frame 1
onClipEvent (enterFrame) { if (blockbottom.hitTest(_root.ball)) { _root.ball.Yspeed = Math.abs(_root.ball.Yspeed); tellTarget ("_root.sound") { gotoAndPlay (2); }; } }
Symbol 192 MovieClip Frame 1
stop();
Instance of Symbol 69 MovieClip in Symbol 192 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 69 MovieClip in Symbol 192 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 69 MovieClip in Symbol 192 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 69 MovieClip in Symbol 193 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 69 MovieClip in Symbol 193 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 69 MovieClip in Symbol 193 MovieClip Frame 1
onClipEvent (enterFrame) { if (blockbottom.hitTest(_root.ball)) { _root.ball.Yspeed = Math.abs(_root.ball.Yspeed); tellTarget ("_root.sound") { gotoAndPlay (2); }; } }
Symbol 206 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 215 MovieClip Frame 2
stop();
Symbol 215 MovieClip Frame 5
gotoAndPlay (2);
Symbol 215 MovieClip Frame 25
gotoAndPlay (1);
Symbol 215 MovieClip Frame 36
gotoAndPlay (1);
Symbol 215 MovieClip Frame 51
gotoAndPlay (1);
Symbol 215 MovieClip Frame 64
gotoAndPlay (1);
Symbol 215 MovieClip Frame 76
gotoAndPlay (1);
Symbol 215 MovieClip Frame 88
gotoAndPlay (1);
Symbol 223 MovieClip Frame 1
stop();
Instance of Symbol 221 MovieClip in Symbol 223 MovieClip Frame 1
onClipEvent (enterFrame) { if (hitTest(_root.ball)) { tellTarget ("_parent") { play(); }; _root.score = _root.score + 50; } }
Symbol 223 MovieClip Frame 5
stop();
Symbol 227 MovieClip Frame 1
stop(); _root.hitsneeded++;
Instance of Symbol 221 MovieClip in Symbol 227 MovieClip Frame 1
onClipEvent (enterFrame) { if (hitTest(_root.ball)) { tellTarget ("_parent") { play(); }; _root.score = _root.score + 50; } }
Instance of Symbol 69 MovieClip in Symbol 227 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 69 MovieClip in Symbol 227 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 227 MovieClip Frame 5
stop(); _root.hits++;
Symbol 231 MovieClip Frame 1
stop(); _root.hitsneeded++;
Instance of Symbol 221 MovieClip in Symbol 231 MovieClip Frame 1
onClipEvent (enterFrame) { if (hitTest(_root.ball)) { tellTarget ("_parent") { play(); }; _root.score = _root.score + 150; } }
Instance of Symbol 69 MovieClip in Symbol 231 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 69 MovieClip in Symbol 231 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 231 MovieClip Frame 5
stop(); _root.hits++;
Symbol 247 MovieClip Frame 2
stop();
Symbol 247 MovieClip Frame 5
gotoAndPlay (2);
Symbol 247 MovieClip Frame 25
gotoAndPlay (1);
Symbol 247 MovieClip Frame 36
gotoAndPlay (1);
Symbol 247 MovieClip Frame 51
gotoAndPlay (1);
Symbol 247 MovieClip Frame 64
gotoAndPlay (1);
Symbol 247 MovieClip Frame 76
gotoAndPlay (1);
Symbol 247 MovieClip Frame 88
gotoAndPlay (1);
Instance of Symbol 76 MovieClip in Symbol 251 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 256 MovieClip Frame 1
stop();
Instance of Symbol 254 MovieClip in Symbol 256 MovieClip Frame 1
onClipEvent (enterFrame) { if (hitTest(_root.ball)) { _root.ball.Xspeed = 0; _root.ball.Yspeed = 0; tellTarget ("_parent") { play(); }; } }
Symbol 256 MovieClip Frame 42
_root.serve = 1; _root.score = _root.score + 500; _root.hits++;
Symbol 267 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 278 MovieClip Frame 2
stop();
Symbol 278 MovieClip Frame 5
gotoAndPlay (2);
Symbol 278 MovieClip Frame 25
gotoAndPlay (1);
Symbol 278 MovieClip Frame 36
gotoAndPlay (1);
Symbol 278 MovieClip Frame 51
gotoAndPlay (1);
Symbol 278 MovieClip Frame 64
gotoAndPlay (1);
Symbol 278 MovieClip Frame 76
gotoAndPlay (1);
Symbol 278 MovieClip Frame 88
gotoAndPlay (1);
Symbol 287 MovieClip Frame 1
stop();
Instance of Symbol 286 MovieClip in Symbol 287 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 288 MovieClip Frame 1
stop();
Instance of Symbol 286 MovieClip in Symbol 288 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 76 MovieClip in Symbol 290 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); }; } }
Instance of Symbol 54 MovieClip in Symbol 318 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 326 Button
on (release) { gotoAndStop (2); }
Symbol 331 Button
on (release) { gotoAndStop (2); Mouse.show(); }
Symbol 335 Button
on (release) { gotoAndStop (2); }
Symbol 340 Button
on (release) { gotoAndStop (44); }
Symbol 342 Button
on (release) { gotoAndStop (47); }
Symbol 344 Button
on (release) { gotoAndStop (50); }
Symbol 346 Button
on (release) { gotoAndStop (53); }
Symbol 348 Button
on (release) { gotoAndStop (56); }
Symbol 350 Button
on (release) { gotoAndStop (59); }
Symbol 352 Button
on (release) { gotoAndStop (62); }
Symbol 354 Button
on (release) { gotoAndStop (65); }
Symbol 356 Button
on (release) { gotoAndStop (68); }
Symbol 358 Button
on (release) { gotoAndStop (71); }
Symbol 360 Button
on (release) { gotoAndStop (74); }
Symbol 362 Button
on (release) { gotoAndStop (76); }
Symbol 365 Button
on (keyPress "q") { gotoAndStop (42); } on (keyPress "Q") { gotoAndStop (42); }
Symbol 377 MovieClip Frame 42
_root.time--; if (_root.time < 1) { tellTarget ("_root") { nextFrame(); }; }
Symbol 395 MovieClip Frame 1
stop();
Instance of Symbol 393 MovieClip in Symbol 395 MovieClip Frame 1
onClipEvent (enterFrame) { if (hitTest(_root.ball)) { _root.ball.Xspeed = 0; _root.ball.Yspeed = 0; tellTarget ("_parent") { play(); }; } }
Symbol 395 MovieClip Frame 42
_root.serve = 1; _root.score = _root.score + 5000;
Symbol 399 MovieClip Frame 1
stop();
Instance of Symbol 397 MovieClip in Symbol 399 MovieClip Frame 1
onClipEvent (enterFrame) { if (hitTest(_root.ball)) { _root.ball.Xspeed = 0; _root.ball.Yspeed = 0; tellTarget ("_parent") { play(); }; } }
Symbol 399 MovieClip Frame 42
_root.serve = 1; _root.score = _root.score + 100;
Symbol 403 MovieClip Frame 1
stop();
Instance of Symbol 401 MovieClip in Symbol 403 MovieClip Frame 1
onClipEvent (enterFrame) { if (hitTest(_root.ball)) { _root.ball.Xspeed = 0; _root.ball.Yspeed = 0; tellTarget ("_parent") { play(); }; } }
Symbol 403 MovieClip Frame 42
_root.serve = 1; _root.score = _root.score + 10000;
Symbol 408 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; } }

Library Items

Symbol 1 GraphicUsed by:7
Symbol 2 GraphicUsed by:6
Symbol 3 MovieClipUsed by:6
Symbol 4 FontUsed by:5 122 134 136 138 140 142 144 146 148 150 152 154 323 324 328 329 332 366 367 372 373 378 379 404 405
Symbol 5 EditableTextUses:4Used by:6
Symbol 6 MovieClipUses:2 3 5Used by:7
Symbol 7 MovieClipUses:1 6Used by:Timeline
Symbol 8 BitmapUsed by:9
Symbol 9 GraphicUses:8Used by:10 303  Timeline
Symbol 10 MovieClipUses:9Used by:Timeline
Symbol 11 GraphicUsed by:Timeline
Symbol 12 GraphicUsed by:Timeline
Symbol 13 GraphicUsed by:17 38 118 335
Symbol 14 FontUsed by:15 22 28 39 115 116 117 132 194 195 196 197 198 199 209 212 232 233 241 242 262 263 273 274 291 292 300 301 305 312 313 319 320 337 339 341 343 345 347 349 351 353 355 357 359 361 363 364
Symbol 15 TextUses:14Used by:17 38 118 335
Symbol 16 GraphicUsed by:17 38 118 335
Symbol 17 ButtonUses:13 15 16Used by:Timeline
Symbol 18 FontUsed by:19
Symbol 19 TextUses:18Used by:Timeline
Symbol 20 GraphicUsed by:Timeline
Symbol 21 GraphicUsed by:24
Symbol 22 TextUses:14Used by:24
Symbol 23 GraphicUsed by:24
Symbol 24 ButtonUses:21 22 23Used by:Timeline
Symbol 25 FontUsed by:26 179 204 205 257 265 266 370 375 376 382
Symbol 26 TextUses:25Used by:Timeline
Symbol 27 GraphicUsed by:Timeline
Symbol 28 EditableTextUses:14Used by:Timeline
Symbol 29 FontUsed by:30 31
Symbol 30 TextUses:29Used by:Timeline
Symbol 31 TextUses:29Used by:Timeline
Symbol 32 GraphicUsed by:33
Symbol 33 ButtonUses:32Used by:Timeline
Symbol 34 GraphicUsed by:Timeline
Symbol 35 BitmapUsed by:36
Symbol 36 GraphicUses:35Used by:37 271  Timeline
Symbol 37 MovieClipUses:36Used by:Timeline
Symbol 38 ButtonUses:13 15 16Used by:Timeline
Symbol 39 TextUses:14Used by:Timeline
Symbol 40 FontUsed by:41 87 88 89 90 91 92 93 94 120 121 123 124 125 201 202 210 211 255 394 398 402
Symbol 41 TextUses:40Used by:Timeline
Symbol 42 GraphicUsed by:54 61
Symbol 43 GraphicUsed by:44 68
Symbol 44 MovieClipUses:43Used by:54 61
Symbol 45 GraphicUsed by:46 63
Symbol 46 MovieClipUses:45Used by:54 61
Symbol 47 GraphicUsed by:48
Symbol 48 MovieClipUses:47Used by:54 61
Symbol 49 GraphicUsed by:50
Symbol 50 MovieClipUses:49Used by:54 61
Symbol 51 GraphicUsed by:54
Symbol 52 GraphicUsed by:54
Symbol 53 GraphicUsed by:54
Symbol 54 MovieClipUses:42 44 46 48 50 51 52 53Used by:60 61 318
Symbol 55 GraphicUsed by:58
Symbol 56 GraphicUsed by:58
Symbol 57 GraphicUsed by:58
Symbol 58 MovieClipUses:55 56 57Used by:61
Symbol 59 SoundUsed by:61 99 169 215 247 278
Symbol 60 MovieClipUses:54Used by:61  Timeline
Symbol 61 MovieClipUses:42 44 46 48 50 54 58 59 60Used by:Timeline
Symbol 62 GraphicUsed by:69
Symbol 63 MovieClipUses:45Used by:69 76
Symbol 64 GraphicUsed by:65
Symbol 65 MovieClipUses:64Used by:69 76
Symbol 66 GraphicUsed by:67
Symbol 67 MovieClipUses:66Used by:69 76
Symbol 68 MovieClipUses:43Used by:69 76
Symbol 69 MovieClipUses:62 63 65 67 68Used by:70 181 189 190 191 192 193 227 231  Timeline
Symbol 70 MovieClipUses:69Used by:Timeline
Symbol 71 GraphicUsed by:Timeline
Symbol 72 GraphicUsed by:73
Symbol 73 MovieClipUses:72Used by:Timeline
Symbol 74 GraphicUsed by:77
Symbol 75 GraphicUsed by:76
Symbol 76 MovieClipUses:75 63 65 67 68Used by:77 251 290
Symbol 77 MovieClipUses:74 76Used by:Timeline
Symbol 78 BitmapUsed by:79 283
Symbol 79 GraphicUses:78Used by:Timeline
Symbol 80 GraphicUsed by:81
Symbol 81 MovieClipUses:80Used by:86
Symbol 82 ShapeTweeningUsed by:86
Symbol 83 GraphicUsed by:86
Symbol 84 ShapeTweeningUsed by:86
Symbol 85 GraphicUsed by:86
Symbol 86 MovieClipUses:81 82 83 84 85Used by:Timeline
Symbol 87 TextUses:40Used by:Timeline
Symbol 88 TextUses:40Used by:Timeline
Symbol 89 TextUses:40Used by:Timeline
Symbol 90 TextUses:40Used by:Timeline
Symbol 91 TextUses:40Used by:Timeline
Symbol 92 TextUses:40Used by:Timeline
Symbol 93 TextUses:40Used by:Timeline
Symbol 94 TextUses:40Used by:Timeline
Symbol 95 FontUsed by:96 165 175 176 177 178 213 244 277 369
Symbol 96 EditableTextUses:95Used by:99
Symbol 97 SoundUsed by:99 278
Symbol 98 SoundUsed by:99
Symbol 99 MovieClipUses:96 97 59 98Used by:Timeline
Symbol 100 BitmapUsed by:101
Symbol 101 GraphicUses:100Used by:102  Timeline
Symbol 102 MovieClipUses:101Used by:Timeline
Symbol 103 GraphicUsed by:104
Symbol 104 MovieClipUses:103Used by:Timeline
Symbol 105 GraphicUsed by:106
Symbol 106 MovieClipUses:105Used by:Timeline
Symbol 107 GraphicUsed by:108
Symbol 108 MovieClipUses:107Used by:Timeline
Symbol 109 GraphicUsed by:110
Symbol 110 MovieClipUses:109Used by:Timeline
Symbol 111 GraphicUsed by:112
Symbol 112 MovieClipUses:111Used by:Timeline
Symbol 113 GraphicUsed by:Timeline
Symbol 114 GraphicUsed by:119 234 243 264 275 293 302 306
Symbol 115 TextUses:14Used by:119 200 234 243 264 275 293 302 306 314 321
Symbol 116 TextUses:14Used by:119
Symbol 117 TextUses:14Used by:119
Symbol 118 ButtonUses:13 15 16Used by:119 200 234 243 264 275 293 302 306 314 321
Symbol 119 MovieClipUses:114 115 116 117 118Used by:Timeline
Symbol 120 EditableTextUses:40Used by:Timeline
Symbol 121 EditableTextUses:40Used by:Timeline
Symbol 122 TextUses:4Used by:Timeline
Symbol 123 TextUses:40Used by:Timeline
Symbol 124 EditableTextUses:40Used by:Timeline
Symbol 125 EditableTextUses:40Used by:Timeline
Symbol 126 GraphicUsed by:Timeline
Symbol 127 FontUsed by:128 131 334 336
Symbol 128 TextUses:127Used by:129
Symbol 129 ButtonUses:128Used by:133
Symbol 130 GraphicUsed by:133 200 314 321
Symbol 131 TextUses:127Used by:133
Symbol 132 TextUses:14Used by:133
Symbol 133 MovieClipUses:129 130 131 132Used by:Timeline
Symbol 134 TextUses:4Used by:135
Symbol 135 ButtonUses:134Used by:Timeline
Symbol 136 TextUses:4Used by:137
Symbol 137 ButtonUses:136Used by:Timeline
Symbol 138 TextUses:4Used by:139
Symbol 139 ButtonUses:138Used by:Timeline
Symbol 140 TextUses:4Used by:141
Symbol 141 ButtonUses:140Used by:Timeline
Symbol 142 TextUses:4Used by:143
Symbol 143 ButtonUses:142Used by:Timeline
Symbol 144 TextUses:4Used by:145
Symbol 145 ButtonUses:144Used by:Timeline
Symbol 146 TextUses:4Used by:147
Symbol 147 ButtonUses:146Used by:Timeline
Symbol 148 TextUses:4Used by:149
Symbol 149 ButtonUses:148Used by:Timeline
Symbol 150 TextUses:4Used by:151
Symbol 151 ButtonUses:150Used by:Timeline
Symbol 152 TextUses:4Used by:153
Symbol 153 ButtonUses:152Used by:Timeline
Symbol 154 TextUses:4Used by:155
Symbol 155 ButtonUses:154Used by:Timeline
Symbol 156 GraphicUsed by:157
Symbol 157 ButtonUses:156Used by:Timeline
Symbol 158 GraphicUsed by:Timeline
Symbol 159 GraphicUsed by:160  Timeline
Symbol 160 MovieClipUses:159Used by:Timeline
Symbol 161 GraphicUsed by:162 408
Symbol 162 ButtonUses:161Used by:Timeline
Symbol 163 GraphicUsed by:164
Symbol 164 MovieClipUses:163Used by:Timeline
Symbol 165 EditableTextUses:95Used by:169
Symbol 166 SoundUsed by:169
Symbol 167 SoundUsed by:169 215
Symbol 168 SoundUsed by:169
Symbol 169 MovieClipUses:165 166 59 167 168Used by:Timeline
Symbol 170 BitmapUsed by:171
Symbol 171 GraphicUses:170Used by:172  Timeline
Symbol 172 MovieClipUses:171Used by:Timeline
Symbol 173 GraphicUsed by:174
Symbol 174 MovieClipUses:173Used by:Timeline
Symbol 175 TextUses:95Used by:Timeline
Symbol 176 TextUses:95Used by:Timeline
Symbol 177 TextUses:95Used by:Timeline
Symbol 178 EditableTextUses:95Used by:Timeline
Symbol 179 EditableTextUses:25Used by:Timeline
Symbol 180 GraphicUsed by:Timeline
Symbol 181 MovieClipUses:69Used by:189
Symbol 182 GraphicUsed by:186
Symbol 183 GraphicUsed by:186
Symbol 184 GraphicUsed by:186
Symbol 185 GraphicUsed by:186
Symbol 186 MovieClipUses:182 183 184 185Used by:189 191 193
Symbol 187 GraphicUsed by:188
Symbol 188 MovieClipUses:187Used by:189 191 193
Symbol 189 MovieClipUses:69 181 186 188Used by:Timeline
Symbol 190 MovieClipUses:69Used by:191
Symbol 191 MovieClipUses:69 190 186 188Used by:Timeline
Symbol 192 MovieClipUses:69Used by:193
Symbol 193 MovieClipUses:192 69 186 188Used by:Timeline
Symbol 194 TextUses:14Used by:200
Symbol 195 TextUses:14Used by:200
Symbol 196 TextUses:14Used by:200
Symbol 197 EditableTextUses:14Used by:200
Symbol 198 TextUses:14Used by:200
Symbol 199 TextUses:14Used by:200
Symbol 200 MovieClipUses:130 115 194 195 196 197 198 199 118Used by:Timeline
Symbol 201 EditableTextUses:40Used by:Timeline
Symbol 202 EditableTextUses:40Used by:Timeline
Symbol 203 GraphicUsed by:Timeline
Symbol 204 EditableTextUses:25Used by:206
Symbol 205 EditableTextUses:25Used by:206
Symbol 206 MovieClipUses:204 205Used by:Timeline
Symbol 207 GraphicUsed by:208
Symbol 208 MovieClipUses:207Used by:Timeline
Symbol 209 EditableTextUses:14Used by:Timeline
Symbol 210 EditableTextUses:40Used by:Timeline
Symbol 211 EditableTextUses:40Used by:Timeline
Symbol 212 EditableTextUses:14Used by:Timeline
Symbol 213 EditableTextUses:95Used by:215
Symbol 214 SoundUsed by:215
Symbol 215 MovieClipUses:213 214 59 167Used by:Timeline
Symbol 216 BitmapUsed by:217
Symbol 217 GraphicUses:216Used by:218  Timeline
Symbol 218 MovieClipUses:217Used by:Timeline
Symbol 219 GraphicUsed by:223
Symbol 220 GraphicUsed by:221
Symbol 221 MovieClipUses:220Used by:223 227 231
Symbol 222 GraphicUsed by:223
Symbol 223 MovieClipUses:219 221 222Used by:Timeline
Symbol 224 GraphicUsed by:Timeline
Symbol 225 GraphicUsed by:227
Symbol 226 GraphicUsed by:227
Symbol 227 MovieClipUses:225 221 69 226Used by:Timeline
Symbol 228 GraphicUsed by:231
Symbol 229 GraphicUsed by:231
Symbol 230 GraphicUsed by:231
Symbol 231 MovieClipUses:228 221 69 229 230Used by:Timeline
Symbol 232 TextUses:14Used by:234
Symbol 233 TextUses:14Used by:234
Symbol 234 MovieClipUses:114 115 232 233 118Used by:Timeline
Symbol 235 GraphicUsed by:Timeline
Symbol 236 GraphicUsed by:237
Symbol 237 MovieClipUses:236Used by:Timeline
Symbol 238 BitmapUsed by:239
Symbol 239 GraphicUses:238Used by:240  Timeline
Symbol 240 MovieClipUses:239Used by:Timeline
Symbol 241 TextUses:14Used by:243
Symbol 242 TextUses:14Used by:243
Symbol 243 MovieClipUses:114 115 241 242 118Used by:Timeline
Symbol 244 EditableTextUses:95Used by:247
Symbol 245 SoundUsed by:247
Symbol 246 SoundUsed by:247
Symbol 247 MovieClipUses:244 245 59 246Used by:Timeline
Symbol 248 BitmapUsed by:249
Symbol 249 GraphicUses:248Used by:Timeline
Symbol 250 GraphicUsed by:251
Symbol 251 MovieClipUses:76 250Used by:Timeline
Symbol 252 GraphicUsed by:Timeline
Symbol 253 GraphicUsed by:254
Symbol 254 MovieClipUses:253Used by:256
Symbol 255 TextUses:40Used by:256
Symbol 256 MovieClipUses:254 255Used by:Timeline
Symbol 257 EditableTextUses:25Used by:Timeline
Symbol 258 GraphicUsed by:Timeline
Symbol 259 GraphicUsed by:Timeline
Symbol 260 GraphicUsed by:261
Symbol 261 MovieClipUses:260Used by:Timeline
Symbol 262 TextUses:14Used by:264
Symbol 263 TextUses:14Used by:264
Symbol 264 MovieClipUses:114 115 262 263 118Used by:Timeline
Symbol 265 EditableTextUses:25Used by:267
Symbol 266 EditableTextUses:25Used by:267
Symbol 267 MovieClipUses:265 266Used by:Timeline
Symbol 268 GraphicUsed by:Timeline
Symbol 269 GraphicUsed by:270
Symbol 270 MovieClipUses:269Used by:Timeline
Symbol 271 MovieClipUses:36Used by:Timeline
Symbol 272 GraphicUsed by:Timeline
Symbol 273 TextUses:14Used by:275
Symbol 274 TextUses:14Used by:275
Symbol 275 MovieClipUses:114 115 273 274 118Used by:Timeline
Symbol 276 GraphicUsed by:Timeline
Symbol 277 EditableTextUses:95Used by:278
Symbol 278 MovieClipUses:277 97 59Used by:Timeline
Symbol 279 BitmapUsed by:280
Symbol 280 GraphicUses:279Used by:281  Timeline
Symbol 281 MovieClipUses:280Used by:Timeline
Symbol 282 GraphicUsed by:Timeline
Symbol 283 GraphicUses:78Used by:284 288
Symbol 284 MovieClipUses:283Used by:287
Symbol 285 GraphicUsed by:286
Symbol 286 MovieClipUses:285Used by:287 288
Symbol 287 MovieClipUses:284 286Used by:Timeline
Symbol 288 MovieClipUses:283 286Used by:Timeline
Symbol 289 GraphicUsed by:290
Symbol 290 MovieClipUses:76 289Used by:Timeline
Symbol 291 TextUses:14Used by:293
Symbol 292 TextUses:14Used by:293
Symbol 293 MovieClipUses:114 115 291 292 118Used by:Timeline
Symbol 294 GraphicUsed by:Timeline
Symbol 295 GraphicUsed by:296
Symbol 296 MovieClipUses:295Used by:Timeline
Symbol 297 BitmapUsed by:298
Symbol 298 GraphicUses:297Used by:299  Timeline
Symbol 299 MovieClipUses:298Used by:Timeline
Symbol 300 TextUses:14Used by:302 306
Symbol 301 TextUses:14Used by:302
Symbol 302 MovieClipUses:114 115 300 301 118Used by:Timeline
Symbol 303 MovieClipUses:9Used by:Timeline
Symbol 304 GraphicUsed by:Timeline
Symbol 305 TextUses:14Used by:306
Symbol 306 MovieClipUses:114 115 300 305 118Used by:Timeline
Symbol 307 GraphicUsed by:308
Symbol 308 MovieClipUses:307Used by:Timeline
Symbol 309 BitmapUsed by:310
Symbol 310 GraphicUses:309Used by:311  Timeline
Symbol 311 MovieClipUses:310Used by:Timeline
Symbol 312 TextUses:14Used by:314
Symbol 313 TextUses:14Used by:314
Symbol 314 MovieClipUses:130 115 312 313 118Used by:Timeline
Symbol 315 BitmapUsed by:316 322
Symbol 316 GraphicUses:315Used by:317  Timeline
Symbol 317 MovieClipUses:316Used by:Timeline
Symbol 318 MovieClipUses:54Used by:Timeline
Symbol 319 TextUses:14Used by:321
Symbol 320 TextUses:14Used by:321
Symbol 321 MovieClipUses:130 115 319 320 118Used by:Timeline
Symbol 322 GraphicUses:315Used by:Timeline
Symbol 323 TextUses:4Used by:Timeline
Symbol 324 TextUses:4Used by:326 331
Symbol 325 GraphicUsed by:326 331
Symbol 326 ButtonUses:324 325Used by:Timeline
Symbol 327 GraphicUsed by:Timeline
Symbol 328 TextUses:4Used by:Timeline
Symbol 329 TextUses:4Used by:Timeline
Symbol 330 GraphicUsed by:Timeline
Symbol 331 ButtonUses:324 325Used by:Timeline
Symbol 332 TextUses:4Used by:Timeline
Symbol 333 GraphicUsed by:Timeline
Symbol 334 TextUses:127Used by:Timeline
Symbol 335 ButtonUses:13 15 16Used by:Timeline
Symbol 336 TextUses:127Used by:Timeline
Symbol 337 TextUses:14Used by:Timeline
Symbol 338 GraphicUsed by:340 342 344 346 348 350 352 354 356 358 360 362
Symbol 339 TextUses:14Used by:340
Symbol 340 ButtonUses:338 339Used by:Timeline
Symbol 341 TextUses:14Used by:342
Symbol 342 ButtonUses:338 341Used by:Timeline
Symbol 343 TextUses:14Used by:344
Symbol 344 ButtonUses:338 343Used by:Timeline
Symbol 345 TextUses:14Used by:346
Symbol 346 ButtonUses:338 345Used by:Timeline
Symbol 347 TextUses:14Used by:348
Symbol 348 ButtonUses:338 347Used by:Timeline
Symbol 349 TextUses:14Used by:350
Symbol 350 ButtonUses:338 349Used by:Timeline
Symbol 351 TextUses:14Used by:352
Symbol 352 ButtonUses:338 351Used by:Timeline
Symbol 353 TextUses:14Used by:354
Symbol 354 ButtonUses:338 353Used by:Timeline
Symbol 355 TextUses:14Used by:356
Symbol 356 ButtonUses:338 355Used by:Timeline
Symbol 357 TextUses:14Used by:358
Symbol 358 ButtonUses:338 357Used by:Timeline
Symbol 359 TextUses:14Used by:360
Symbol 360 ButtonUses:338 359Used by:Timeline
Symbol 361 TextUses:14Used by:362
Symbol 362 ButtonUses:338 361Used by:Timeline
Symbol 363 TextUses:14Used by:Timeline
Symbol 364 TextUses:14Used by:365
Symbol 365 ButtonUses:364Used by:Timeline
Symbol 366 EditableTextUses:4Used by:Timeline
Symbol 367 EditableTextUses:4Used by:Timeline
Symbol 368 GraphicUsed by:Timeline
Symbol 369 EditableTextUses:95Used by:Timeline
Symbol 370 EditableTextUses:25Used by:Timeline
Symbol 371 GraphicUsed by:Timeline
Symbol 372 EditableTextUses:4Used by:Timeline
Symbol 373 EditableTextUses:4Used by:Timeline
Symbol 374 GraphicUsed by:Timeline
Symbol 375 EditableTextUses:25Used by:377
Symbol 376 EditableTextUses:25Used by:377
Symbol 377 MovieClipUses:375 376Used by:Timeline
Symbol 378 EditableTextUses:4Used by:Timeline
Symbol 379 EditableTextUses:4Used by:Timeline
Symbol 380 GraphicUsed by:Timeline
Symbol 381 GraphicUsed by:Timeline
Symbol 382 EditableTextUses:25Used by:Timeline
Symbol 383 GraphicUsed by:Timeline
Symbol 384 GraphicUsed by:Timeline
Symbol 385 GraphicUsed by:Timeline
Symbol 386 GraphicUsed by:Timeline
Symbol 387 GraphicUsed by:Timeline
Symbol 388 GraphicUsed by:Timeline
Symbol 389 GraphicUsed by:Timeline
Symbol 390 BitmapUsed by:391
Symbol 391 GraphicUses:390Used by:Timeline
Symbol 392 GraphicUsed by:393
Symbol 393 MovieClipUses:392Used by:395
Symbol 394 TextUses:40Used by:395
Symbol 395 MovieClipUses:393 394Used by:Timeline
Symbol 396 GraphicUsed by:397
Symbol 397 MovieClipUses:396Used by:399
Symbol 398 TextUses:40Used by:399
Symbol 399 MovieClipUses:397 398Used by:Timeline
Symbol 400 GraphicUsed by:401
Symbol 401 MovieClipUses:400Used by:403
Symbol 402 TextUses:40Used by:403
Symbol 403 MovieClipUses:401 402Used by:Timeline
Symbol 404 EditableTextUses:4Used by:Timeline
Symbol 405 EditableTextUses:4Used by:Timeline
Symbol 406 GraphicUsed by:Timeline
Symbol 407 GraphicUsed by:Timeline
Symbol 408 ButtonUses:161Used by:Timeline
Symbol 409 GraphicUsed by:Timeline
Symbol 410 GraphicUsed by:411
Symbol 411 MovieClipUses:410Used by:Timeline

Instance Names

"sound"Frame 4Symbol 99 MovieClip
"leftwall"Frame 4Symbol 104 MovieClip
"rightwall"Frame 4Symbol 106 MovieClip
"upperwall"Frame 4Symbol 108 MovieClip
"servewall"Frame 4Symbol 110 MovieClip
"paddle"Frame 4Symbol 112 MovieClip
"ball"Frame 5Symbol 160 MovieClip
"sound"Frame 7Symbol 169 MovieClip
"leftwall"Frame 7Symbol 104 MovieClip
"rightwall"Frame 7Symbol 106 MovieClip
"upperwall"Frame 7Symbol 108 MovieClip
"servewall"Frame 7Symbol 110 MovieClip
"paddle"Frame 7Symbol 112 MovieClip
"rightwall"Frame 8Symbol 106 MovieClip
"ball"Frame 8Symbol 208 MovieClip
"sound"Frame 10Symbol 215 MovieClip
"leftwall"Frame 10Symbol 104 MovieClip
"rightwall"Frame 10Symbol 106 MovieClip
"upperwall"Frame 10Symbol 108 MovieClip
"servewall"Frame 10Symbol 110 MovieClip
"rightwall"Frame 10Symbol 106 MovieClip
"paddle"Frame 10Symbol 112 MovieClip
"ball"Frame 11Symbol 237 MovieClip
"sound"Frame 13Symbol 215 MovieClip
"leftwall"Frame 13Symbol 104 MovieClip
"rightwall"Frame 13Symbol 106 MovieClip
"upperwall"Frame 13Symbol 108 MovieClip
"servewall"Frame 13Symbol 110 MovieClip
"paddle"Frame 13Symbol 112 MovieClip
"rightwall"Frame 14Symbol 106 MovieClip
"upperwall"Frame 14Symbol 108 MovieClip
"ball"Frame 14Symbol 237 MovieClip
"sound"Frame 16Symbol 247 MovieClip
"leftwall"Frame 16Symbol 104 MovieClip
"rightwall"Frame 16Symbol 106 MovieClip
"upperwall"Frame 16Symbol 108 MovieClip
"servewall"Frame 16Symbol 110 MovieClip
"paddle"Frame 16Symbol 112 MovieClip
"wave"Frame 16Symbol 261 MovieClip
"ball"Frame 17Symbol 270 MovieClip
"sound"Frame 19Symbol 247 MovieClip
"leftwall"Frame 19Symbol 104 MovieClip
"rightwall"Frame 19Symbol 106 MovieClip
"upperwall"Frame 19Symbol 108 MovieClip
"servewall"Frame 19Symbol 110 MovieClip
"paddle"Frame 19Symbol 112 MovieClip
"wave"Frame 19Symbol 261 MovieClip
"wave2"Frame 19Symbol 261 MovieClip
"ball"Frame 20Symbol 270 MovieClip
"sound"Frame 22Symbol 278 MovieClip
"leftwall"Frame 22Symbol 104 MovieClip
"rightwall"Frame 22Symbol 106 MovieClip
"upperwall"Frame 22Symbol 108 MovieClip
"servewall"Frame 22Symbol 110 MovieClip
"paddle"Frame 22Symbol 112 MovieClip
"paddle2"Frame 22Symbol 112 MovieClip
"warp1"Frame 22Symbol 287 MovieClip
"warp2"Frame 22Symbol 288 MovieClip
"ball"Frame 23Symbol 296 MovieClip
"sound"Frame 25Symbol 215 MovieClip
"leftwall"Frame 25Symbol 104 MovieClip
"rightwall"Frame 25Symbol 106 MovieClip
"upperwall"Frame 25Symbol 108 MovieClip
"servewall"Frame 25Symbol 110 MovieClip
"paddle"Frame 25Symbol 112 MovieClip
"wave"Frame 25Symbol 261 MovieClip
"warp1"Frame 25Symbol 287 MovieClip
"warp2"Frame 25Symbol 288 MovieClip
"wave2"Frame 25Symbol 261 MovieClip
"leftwall"Frame 26Symbol 104 MovieClip
"rightwall"Frame 26Symbol 106 MovieClip
"ball"Frame 26Symbol 237 MovieClip
"sound"Frame 28Symbol 215 MovieClip
"leftwall"Frame 28Symbol 104 MovieClip
"rightwall"Frame 28Symbol 106 MovieClip
"upperwall"Frame 28Symbol 108 MovieClip
"servewall"Frame 28Symbol 110 MovieClip
"paddle"Frame 28Symbol 112 MovieClip
"warp1"Frame 28Symbol 287 MovieClip
"warp2"Frame 28Symbol 288 MovieClip
"wave2"Frame 28Symbol 261 MovieClip
"ball"Frame 29Symbol 308 MovieClip
"sound"Frame 31Symbol 215 MovieClip
"leftwall"Frame 31Symbol 104 MovieClip
"rightwall"Frame 31Symbol 106 MovieClip
"upperwall"Frame 31Symbol 108 MovieClip
"servewall"Frame 31Symbol 110 MovieClip
"paddle"Frame 31Symbol 112 MovieClip
"warp1"Frame 31Symbol 287 MovieClip
"warp2"Frame 31Symbol 288 MovieClip
"wave2"Frame 31Symbol 261 MovieClip
"ball"Frame 32Symbol 308 MovieClip
"sound"Frame 34Symbol 99 MovieClip
"leftwall"Frame 34Symbol 104 MovieClip
"rightwall"Frame 34Symbol 106 MovieClip
"upperwall"Frame 34Symbol 108 MovieClip
"servewall"Frame 34Symbol 110 MovieClip
"paddle"Frame 34Symbol 112 MovieClip
"leftwall"Frame 35Symbol 104 MovieClip
"ball"Frame 35Symbol 160 MovieClip
"sound"Frame 43Symbol 99 MovieClip
"leftwall"Frame 43Symbol 104 MovieClip
"rightwall"Frame 43Symbol 106 MovieClip
"upperwall"Frame 43Symbol 108 MovieClip
"servewall"Frame 43Symbol 110 MovieClip
"paddle"Frame 43Symbol 112 MovieClip
"leftwall"Frame 44Symbol 104 MovieClip
"upperwall"Frame 44Symbol 108 MovieClip
"ball"Frame 44Symbol 160 MovieClip
"sound"Frame 46Symbol 169 MovieClip
"leftwall"Frame 46Symbol 104 MovieClip
"rightwall"Frame 46Symbol 106 MovieClip
"upperwall"Frame 46Symbol 108 MovieClip
"servewall"Frame 46Symbol 110 MovieClip
"paddle"Frame 46Symbol 112 MovieClip
"upperwall"Frame 47Symbol 108 MovieClip
"rightwall"Frame 47Symbol 106 MovieClip
"ball"Frame 47Symbol 208 MovieClip
"sound"Frame 49Symbol 215 MovieClip
"leftwall"Frame 49Symbol 104 MovieClip
"rightwall"Frame 49Symbol 106 MovieClip
"upperwall"Frame 49Symbol 108 MovieClip
"servewall"Frame 49Symbol 110 MovieClip
"rightwall"Frame 49Symbol 106 MovieClip
"paddle"Frame 49Symbol 112 MovieClip
"ball"Frame 50Symbol 237 MovieClip
"sound"Frame 52Symbol 215 MovieClip
"leftwall"Frame 52Symbol 104 MovieClip
"rightwall"Frame 52Symbol 106 MovieClip
"upperwall"Frame 52Symbol 108 MovieClip
"servewall"Frame 52Symbol 110 MovieClip
"paddle"Frame 52Symbol 112 MovieClip
"ball"Frame 53Symbol 237 MovieClip
"sound"Frame 55Symbol 247 MovieClip
"leftwall"Frame 55Symbol 104 MovieClip
"rightwall"Frame 55Symbol 106 MovieClip
"upperwall"Frame 55Symbol 108 MovieClip
"servewall"Frame 55Symbol 110 MovieClip
"paddle"Frame 55Symbol 112 MovieClip
"wave"Frame 55Symbol 261 MovieClip
"ball"Frame 56Symbol 270 MovieClip
"sound"Frame 58Symbol 247 MovieClip
"leftwall"Frame 58Symbol 104 MovieClip
"rightwall"Frame 58Symbol 106 MovieClip
"upperwall"Frame 58Symbol 108 MovieClip
"servewall"Frame 58Symbol 110 MovieClip
"paddle"Frame 58Symbol 112 MovieClip
"wave"Frame 58Symbol 261 MovieClip
"wave2"Frame 58Symbol 261 MovieClip
"ball"Frame 59Symbol 270 MovieClip
"sound"Frame 61Symbol 278 MovieClip
"leftwall"Frame 61Symbol 104 MovieClip
"rightwall"Frame 61Symbol 106 MovieClip
"upperwall"Frame 61Symbol 108 MovieClip
"servewall"Frame 61Symbol 110 MovieClip
"paddle"Frame 61Symbol 112 MovieClip
"paddle2"Frame 61Symbol 112 MovieClip
"warp1"Frame 61Symbol 287 MovieClip
"warp2"Frame 61Symbol 288 MovieClip
"ball"Frame 62Symbol 296 MovieClip
"sound"Frame 64Symbol 215 MovieClip
"leftwall"Frame 64Symbol 104 MovieClip
"rightwall"Frame 64Symbol 106 MovieClip
"upperwall"Frame 64Symbol 108 MovieClip
"servewall"Frame 64Symbol 110 MovieClip
"paddle"Frame 64Symbol 112 MovieClip
"wave"Frame 64Symbol 261 MovieClip
"warp1"Frame 64Symbol 287 MovieClip
"warp2"Frame 64Symbol 288 MovieClip
"wave2"Frame 64Symbol 261 MovieClip
"ball"Frame 65Symbol 237 MovieClip
"sound"Frame 67Symbol 215 MovieClip
"leftwall"Frame 67Symbol 104 MovieClip
"rightwall"Frame 67Symbol 106 MovieClip
"upperwall"Frame 67Symbol 108 MovieClip
"servewall"Frame 67Symbol 110 MovieClip
"paddle"Frame 67Symbol 112 MovieClip
"warp1"Frame 67Symbol 287 MovieClip
"warp2"Frame 67Symbol 288 MovieClip
"wave2"Frame 67Symbol 261 MovieClip
"ball"Frame 68Symbol 308 MovieClip
"sound"Frame 70Symbol 215 MovieClip
"leftwall"Frame 70Symbol 104 MovieClip
"rightwall"Frame 70Symbol 106 MovieClip
"upperwall"Frame 70Symbol 108 MovieClip
"servewall"Frame 70Symbol 110 MovieClip
"paddle"Frame 70Symbol 112 MovieClip
"warp1"Frame 70Symbol 287 MovieClip
"warp2"Frame 70Symbol 288 MovieClip
"wave2"Frame 70Symbol 261 MovieClip
"ball"Frame 71Symbol 308 MovieClip
"sound"Frame 73Symbol 99 MovieClip
"leftwall"Frame 73Symbol 104 MovieClip
"rightwall"Frame 73Symbol 106 MovieClip
"upperwall"Frame 73Symbol 108 MovieClip
"servewall"Frame 73Symbol 110 MovieClip
"paddle"Frame 73Symbol 112 MovieClip
"ball"Frame 74Symbol 160 MovieClip
"paddle"Frame 75Symbol 112 MovieClip
"sound"Frame 76Symbol 99 MovieClip
"ball"Frame 76Symbol 411 MovieClip
"redbar"Symbol 6 MovieClip Frame 1Symbol 3 MovieClip
"blocktop"Symbol 54 MovieClip Frame 1Symbol 44 MovieClip
"blockbottom"Symbol 54 MovieClip Frame 1Symbol 46 MovieClip
"blockleft"Symbol 54 MovieClip Frame 1Symbol 48 MovieClip
"blockright"Symbol 54 MovieClip Frame 1Symbol 50 MovieClip
"blocktop"Symbol 61 MovieClip Frame 1Symbol 44 MovieClip
"blockbottom"Symbol 61 MovieClip Frame 1Symbol 46 MovieClip
"blockleft"Symbol 61 MovieClip Frame 1Symbol 48 MovieClip
"blockright"Symbol 61 MovieClip Frame 1Symbol 50 MovieClip
"blockbottom"Symbol 69 MovieClip Frame 1Symbol 63 MovieClip
"blockleft"Symbol 69 MovieClip Frame 1Symbol 65 MovieClip
"blockright"Symbol 69 MovieClip Frame 1Symbol 67 MovieClip
"blocktop"Symbol 69 MovieClip Frame 1Symbol 68 MovieClip
"blockbottom"Symbol 76 MovieClip Frame 1Symbol 63 MovieClip
"blockleft"Symbol 76 MovieClip Frame 1Symbol 65 MovieClip
"blockright"Symbol 76 MovieClip Frame 1Symbol 67 MovieClip
"blocktop"Symbol 76 MovieClip Frame 1Symbol 68 MovieClip
"net"Symbol 189 MovieClip Frame 1Symbol 186 MovieClip
"net"Symbol 191 MovieClip Frame 1Symbol 186 MovieClip
"net"Symbol 193 MovieClip Frame 1Symbol 186 MovieClip

Special Tags

Protect (24)Timeline Frame 131 bytes "..$1$6.$ZSkVHpxsFEO9T9BVAskXO0."

Labels

"loaded"Frame 2
"one"Frame 4
"two"Frame 7
"three"Frame 10
"four"Frame 13
"five"Frame 16
"six"Frame 19
"seven"Frame 22
"eight"Frame 25
"nine"Frame 28
"ten"Frame 31
"eleven"Frame 34
"gameover"Frame 36
"congrats"Frame 38
"cheating"Frame 40
"level1"Frame 44
"level2"Frame 47
"level3"Frame 50
"level4"Frame 53
"level5"Frame 56
"level6"Frame 59
"level7"Frame 62
"level8"Frame 65
"level9"Frame 68
"level10"Frame 71
"level11"Frame 74
"level12"Frame 76
"glowon"Symbol 86 MovieClip Frame 21
"blip"Symbol 99 MovieClip Frame 2
"bricksfall"Symbol 99 MovieClip Frame 6
"loseball"Symbol 99 MovieClip Frame 26
"normal"Symbol 112 MovieClip Frame 1
"blip"Symbol 169 MovieClip Frame 2
"bricksfall"Symbol 169 MovieClip Frame 6
"shrink"Symbol 169 MovieClip Frame 26
"grow"Symbol 169 MovieClip Frame 37
"laserfire"Symbol 169 MovieClip Frame 52
"loseball"Symbol 169 MovieClip Frame 65
"swish"Symbol 169 MovieClip Frame 77
"blip"Symbol 215 MovieClip Frame 2
"bricksfall"Symbol 215 MovieClip Frame 6
"shrink"Symbol 215 MovieClip Frame 26
"grow"Symbol 215 MovieClip Frame 37
"laserfire"Symbol 215 MovieClip Frame 52
"loseball"Symbol 215 MovieClip Frame 65
"swish"Symbol 215 MovieClip Frame 77
"blip"Symbol 247 MovieClip Frame 2
"bricksfall"Symbol 247 MovieClip Frame 6
"shrink"Symbol 247 MovieClip Frame 26
"grow"Symbol 247 MovieClip Frame 37
"laserfire"Symbol 247 MovieClip Frame 52
"loseball"Symbol 247 MovieClip Frame 65
"swish"Symbol 247 MovieClip Frame 77
"blip"Symbol 278 MovieClip Frame 2
"bricksfall"Symbol 278 MovieClip Frame 6
"shrink"Symbol 278 MovieClip Frame 26
"grow"Symbol 278 MovieClip Frame 37
"laserfire"Symbol 278 MovieClip Frame 52
"loseball"Symbol 278 MovieClip Frame 65
"swish"Symbol 278 MovieClip Frame 77

Dynamic Text Variables

percentSymbol 5 EditableText"000"
_root.passwordSymbol 28 EditableText"password"
TextField8Symbol 96 EditableText"sound"
_root.scoreSymbol 120 EditableText"0"
_root.livesSymbol 121 EditableText"10"
_root.livesSymbol 124 EditableText"10"
_root.scoreSymbol 125 EditableText"0"
TextField8Symbol 165 EditableText"sound"
_root.hitsSymbol 178 EditableText"0"
_root.timeSymbol 179 EditableText"60"
_root.triesSymbol 197 EditableText"0"
_root.scoreSymbol 201 EditableText"0"
_root.scoreSymbol 202 EditableText"0"
_root.timeSymbol 204 EditableText"60"
_root.timeSymbol 205 EditableText"60"
_root.scoreSymbol 209 EditableText"0"
_root.livesSymbol 210 EditableText"10"
_root.livesSymbol 211 EditableText"10"
_root.scoreSymbol 212 EditableText"0"
TextField8Symbol 213 EditableText"sound"
TextField8Symbol 244 EditableText"sound"
_root.timeSymbol 257 EditableText"60"
_root.timeSymbol 265 EditableText"60"
_root.timeSymbol 266 EditableText"60"
TextField8Symbol 277 EditableText"sound"
_root.scoreSymbol 366 EditableText"0"
_root.scoreSymbol 367 EditableText"0"
_root.hitsSymbol 369 EditableText"0"
_root.timeSymbol 370 EditableText"60"
_root.scoreSymbol 372 EditableText"0"
_root.scoreSymbol 373 EditableText"0"
_root.timeSymbol 375 EditableText"60"
_root.timeSymbol 376 EditableText"60"
_root.scoreSymbol 378 EditableText"0"
_root.scoreSymbol 379 EditableText"0"
_root.timeSymbol 382 EditableText"60"
_root.scoreSymbol 404 EditableText"0"
_root.scoreSymbol 405 EditableText"0"




http://swfchan.com/6/26634/info.shtml
Created: 22/5 -2019 11:38:55 Last modified: 22/5 -2019 11:38:55 Server time: 06/05 -2024 17:39:31