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

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

Gravity Ball.swf

This is the info page for
Flash #47983

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


Text
sound

sound

sound

Loading

Start

Start

Start

Gravity Ball

Play

Play

Instructions

Instructions

Presents:

Level 1

3

2

1

GO

break all the blcoks

Music

Music

Music

Music

Music

Music

0

1-UP

low gravity

High Gravity

small paddle

Large PAddle

0

level 2

3

2

1

Go

0

level 3

3

2

1

Go

0

level 4

3

2

1

GO

0

level 5
lights
Out

3

2

1

GO

0

Instructions

Power-ups

controls

move   -  Mouse

serve  - left click

shoot  -  space bar

low gravity   -

high gravity  -

laser gun      -

small paddle -

large paddle  -

Wah ball        -

multiball        -

back

hit ball with paddle.
Dont let the ball hit the
ground.  Break all of the
blocks to move on to the
next level.

Extra Life      -

1-up

Game OVer

Try Again

Congratulations

Replay

ActionScript [AS1/AS2]

Frame 1
stop(); _quality = "HIGH";
Instance of Symbol 47 MovieClip "paddle" in Frame 1
onClipEvent (load) { moveSpeed = 12; } onClipEvent (enterFrame) { if (Key.isDown(39) && (_x < 500)) { play(); this._x = this._x + moveSpeed; } else if (Key.isDown(37) && (_x > 55)) { play(); this._x = this._x - moveSpeed; } } onClipEvent (enterFrame) { _x = (_x + ((_parent._xmouse - _x) * 0.8)); }
Instance of Symbol 65 MovieClip in Frame 1
onClipEvent (enterFrame) { if (_root._framesloaded > 1) { gotoAndStop (2); } if (_root._framesloaded > 3) { gotoAndStop (3); } if (_root._framesloaded > 5) { gotoAndStop (4); } if (_root._framesloaded > 7) { gotoAndStop (5); } if (_root._framesloaded > 9) { gotoAndStop (6); } if (_root._framesloaded > 11) { gotoAndStop (7); } if (_root._framesloaded > 13) { gotoAndStop (8); } if (_root._framesloaded > 19) { gotoAndStop (9); } if (_root._framesloaded > 21) { gotoAndStop (13); } }
Instance of Symbol 67 MovieClip "laser" in Frame 1
onClipEvent (load) { speed = 0; } onClipEvent (enterFrame) { _y = (_y - speed); if (hitTest(_root.upperwall)) { _root.shootability = 1; } if (_root.shootability == 1) { _x = _root.paddle._x; _y = (_root.paddle._y - 20); } }
Instance of Symbol 75 MovieClip "ball" in Frame 1
onClipEvent (load) { Xspeed = 0; yspeed = 0; _root.fallspeed = 0.5; _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 (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"); }; } } 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 (2); }; } } } onClipEvent (enterFrame) { if (Yspeed > 40) { Yspeed = 40; } if (Xspeed == 0) { Xspeed = 0.1; } if (Yspeed < -30) { Yspeed = -30; } } onClipEvent (enterFrame) { if (_root.serve == 1) { _x = _root.paddle._x; _y = (_root.paddle._y - 10); } }
Frame 2
_root.score = 0; stopAllSounds(); stop();
Frame 3
stop(); _quality = "LOW"; if (_root.balls == 0) { gotoAndPlay (14); }
Instance of Symbol 145 MovieClip "balls" in Frame 3
onClipEvent (load) { gotoAndStop (6); } onClipEvent (enterFrame) { if (_root.balls == 0) { tellTarget ("_root") { gotoAndStop (21); }; } }
Frame 4
stop(); Mouse.hide(); stop(); _quality = LOW; stop(); stop(); stop(); stop(); _root.level = 1; tellTarget ("_root.music") { gotoAndPlay ("maxit"); };
Instance of Symbol 160 MovieClip in Frame 4
onClipEvent (enterFrame) { stop(); if ((_root.score == 17) && (_root.level == 1)) { tellTarget ("_root") { gotoAndStop (5); _root.serve = 1; }; } }
Instance of Symbol 47 MovieClip "paddle" in Frame 4
onClipEvent (load) { moveSpeed = 12; } onClipEvent (enterFrame) { if (Key.isDown(39) && (_x < 500)) { play(); this._x = this._x + moveSpeed; } else if (Key.isDown(37) && (_x > 55)) { play(); this._x = this._x - moveSpeed; } } onClipEvent (enterFrame) { _x = (_x + ((_parent._xmouse - _x) * 0.8)); }
Instance of Symbol 75 MovieClip "ball" in Frame 4
onClipEvent (load) { Xspeed = 0; yspeed = 0; _root.fallspeed = 0.5; _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) / 1.3; 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"); tellTarget ("_root.balls") { nextFrame(); }; }; } } 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 (2); }; } } } onClipEvent (enterFrame) { if (Yspeed > 40) { Yspeed = 40; } if (Xspeed == 0) { Xspeed = 0.1; } if (Yspeed < -30) { Yspeed = -30; } } onClipEvent (enterFrame) { if (_root.serve == 1) { _x = _root.paddle._x; _y = (_root.paddle._y - 10); } }
Instance of Symbol 75 MovieClip "ball3" in Frame 4
onClipEvent (load) { Xspeed = 0; yspeed = 0; } onClipEvent (enterFrame) { _x = (_x + Xspeed); _y = (_y + yspeed); yspeed = yspeed + _root.fallspeed; } onClipEvent (enterFrame) { if (hitTest(_root.upperwall)) { Yspeed = Math.abs(Yspeed) / 1.3; 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; serve = 1; } } onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { xdifference = (_x - _root.paddle._x) / 8; Yspeed = -Math.abs(((-Yspeed) - 2) + Math.abs(xdifference)); Xspeed = xdifference; tellTarget ("_root.sound") { gotoAndPlay (2); }; } } onClipEvent (enterFrame) { if (Yspeed > 40) { Yspeed = 40; } if (Xspeed == 0) { Xspeed = 0.1; } if (Yspeed < -30) { Yspeed = -30; } }
Instance of Symbol 75 MovieClip "ball2" in Frame 4
onClipEvent (load) { Xspeed = 0; yspeed = 0; fallspeed = 0.5; } onClipEvent (enterFrame) { _x = (_x + Xspeed); _y = (_y + yspeed); yspeed = yspeed + _root.fallspeed; } onClipEvent (enterFrame) { if (hitTest(_root.upperwall)) { Yspeed = Math.abs(Yspeed) / 1.3; 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); } } onClipEvent (enterFrame) { if (hitTest(_root.lowerwall)) { Yspeed = (-Yspeed) + 5; Xspeed = 0; serve = 1; } } onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { xdifference = (_x - _root.paddle._x) / 8; Yspeed = -Math.abs(((-Yspeed) - 2) + Math.abs(xdifference)); Xspeed = xdifference; tellTarget ("_root.sound") { gotoAndPlay (2); }; } } onClipEvent (enterFrame) { if (Yspeed > 40) { Yspeed = 40; } if (Xspeed == 0) { Xspeed = 0.1; } if (Yspeed < -30) { Yspeed = -30; } }
Instance of Symbol 75 MovieClip "ball1" in Frame 4
onClipEvent (load) { Xspeed = 0; yspeed = 0; fallspeed = 0.5; } onClipEvent (enterFrame) { _x = (_x + Xspeed); _y = (_y + yspeed); yspeed = yspeed + _root.fallspeed; } onClipEvent (enterFrame) { if (hitTest(_root.upperwall)) { Yspeed = Math.abs(Yspeed) / 1.3; 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); } } onClipEvent (enterFrame) { if (hitTest(_root.lowerwall)) { Yspeed = (-Yspeed) + 5; Xspeed = 0; serve = 1; } } onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { xdifference = (_x - _root.paddle._x) / 8; Yspeed = -Math.abs(((-Yspeed) - 2) + Math.abs(xdifference)); Xspeed = xdifference; tellTarget ("_root.sound") { gotoAndPlay (2); }; } } onClipEvent (enterFrame) { if (Yspeed > 40) { Yspeed = 40; } if (Xspeed == 0) { Xspeed = 0.1; } if (Yspeed < -30) { Yspeed = -30; } }
Instance of Symbol 179 MovieClip "wahball" in Frame 4
onClipEvent (load) { Xspeed = 0; yspeed = 0; _root.fallspeed = 0.5; } onClipEvent (enterFrame) { _x = (_x + Xspeed); _y = (_y + yspeed); Yspeed = yspeed + _root.fallspeed; } onClipEvent (enterFrame) { if (hitTest(_root.upperwall)) { Yspeed = Math.abs(Yspeed); } } onClipEvent (enterFrame) { if (hitTest(_root.rightwall)) { Xspeed = -Math.abs(Xspeed); } if (hitTest(_root.leftwall)) { Xspeed = Math.abs(Xspeed); } } onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { xdifference = (_x - _root.paddle._x) / 3; Yspeed = -Math.abs(((-Yspeed) - 2) + Math.abs(xdifference)); Xspeed = xdifference; } } onClipEvent (enterFrame) { if (Yspeed > 40) { Yspeed = 40; } if (Xspeed == 0) { Xspeed = 0.1; } if (Yspeed < -30) { Yspeed = -30; } }
Instance of Symbol 67 MovieClip "laser" in Frame 4
onClipEvent (load) { speed = 0; } onClipEvent (enterFrame) { _y = (_y - speed); if (hitTest(_root.upperwall)) { _root.shootability = 1; } if (_root.shootability == 1) { _x = _root.paddle._x; _y = (_root.paddle._y - 20); } }
Frame 5
stopAllSounds();
Frame 6
stop(); stop(); stop(); stop(); stop(); _root.score = 0; _root.level = 2; tellTarget ("_root.music") { gotoAndPlay ("neo"); };
Instance of Symbol 160 MovieClip "score" in Frame 6
onClipEvent (enterFrame) { stop(); if ((_root.score == 20) && (_root.level == 2)) { tellTarget ("_root") { gotoAndStop (7); _root.serve = 1; }; } }
Instance of Symbol 47 MovieClip "paddle" in Frame 6
onClipEvent (load) { moveSpeed = 12; } onClipEvent (enterFrame) { if (Key.isDown(39) && (_x < 500)) { play(); this._x = this._x + moveSpeed; } else if (Key.isDown(37) && (_x > 55)) { play(); this._x = this._x - moveSpeed; } } onClipEvent (enterFrame) { _x = (_x + ((_parent._xmouse - _x) * 0.8)); }
Instance of Symbol 179 MovieClip "wahball" in Frame 6
onClipEvent (load) { Xspeed = 0; yspeed = 0; _root.fallspeed = 0.5; } onClipEvent (enterFrame) { _x = (_x + Xspeed); _y = (_y + yspeed); Yspeed = yspeed + _root.fallspeed; } onClipEvent (enterFrame) { if (hitTest(_root.upperwall)) { Yspeed = Math.abs(Yspeed); } } onClipEvent (enterFrame) { if (hitTest(_root.rightwall)) { Xspeed = -Math.abs(Xspeed); } if (hitTest(_root.leftwall)) { Xspeed = Math.abs(Xspeed); } } onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { xdifference = (_x - _root.paddle._x) / 3; Yspeed = -Math.abs(((-Yspeed) - 2) + Math.abs(xdifference)); Xspeed = xdifference; } } onClipEvent (enterFrame) { if (Yspeed > 40) { Yspeed = 40; } if (Xspeed == 0) { Xspeed = 0.1; } if (Yspeed < -30) { Yspeed = -30; } }
Instance of Symbol 67 MovieClip "laser" in Frame 6
onClipEvent (load) { speed = 0; } onClipEvent (enterFrame) { _y = (_y - speed); if (hitTest(_root.upperwall)) { _root.shootability = 1; } if (_root.shootability == 1) { _x = _root.paddle._x; _y = (_root.paddle._y - 20); } }
Instance of Symbol 75 MovieClip "ball" in Frame 6
onClipEvent (load) { Xspeed = 0; yspeed = 0; _root.fallspeed = 0.5; _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) / 1.3; 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"); tellTarget ("_root.balls") { nextFrame(); }; }; } } 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 (2); }; } } } onClipEvent (enterFrame) { if (Yspeed > 40) { Yspeed = 40; } if (Xspeed == 0) { Xspeed = 0.1; } if (Yspeed < -30) { Yspeed = -30; } } onClipEvent (enterFrame) { if (_root.serve == 1) { _x = _root.paddle._x; _y = (_root.paddle._y - 10); } }
Instance of Symbol 75 MovieClip "ball3" in Frame 6
onClipEvent (load) { Xspeed = 0; yspeed = 0; } onClipEvent (enterFrame) { _x = (_x + Xspeed); _y = (_y + yspeed); yspeed = yspeed + _root.fallspeed; } onClipEvent (enterFrame) { if (hitTest(_root.upperwall)) { Yspeed = Math.abs(Yspeed) / 1.3; 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; serve = 1; } } onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { xdifference = (_x - _root.paddle._x) / 8; Yspeed = -Math.abs(((-Yspeed) - 2) + Math.abs(xdifference)); Xspeed = xdifference; tellTarget ("_root.sound") { gotoAndPlay (2); }; } } onClipEvent (enterFrame) { if (Yspeed > 40) { Yspeed = 40; } if (Xspeed == 0) { Xspeed = 0.1; } if (Yspeed < -30) { Yspeed = -30; } }
Instance of Symbol 75 MovieClip "ball2" in Frame 6
onClipEvent (load) { Xspeed = 0; yspeed = 0; fallspeed = 0.5; } onClipEvent (enterFrame) { _x = (_x + Xspeed); _y = (_y + yspeed); yspeed = yspeed + _root.fallspeed; } onClipEvent (enterFrame) { if (hitTest(_root.upperwall)) { Yspeed = Math.abs(Yspeed) / 1.3; 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); } } onClipEvent (enterFrame) { if (hitTest(_root.lowerwall)) { Yspeed = (-Yspeed) + 5; Xspeed = 0; serve = 1; } } onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { xdifference = (_x - _root.paddle._x) / 8; Yspeed = -Math.abs(((-Yspeed) - 2) + Math.abs(xdifference)); Xspeed = xdifference; tellTarget ("_root.sound") { gotoAndPlay (2); }; } } onClipEvent (enterFrame) { if (Yspeed > 40) { Yspeed = 40; } if (Xspeed == 0) { Xspeed = 0.1; } if (Yspeed < -30) { Yspeed = -30; } }
Instance of Symbol 75 MovieClip "ball1" in Frame 6
onClipEvent (load) { Xspeed = 0; yspeed = 0; fallspeed = 0.5; } onClipEvent (enterFrame) { _x = (_x + Xspeed); _y = (_y + yspeed); yspeed = yspeed + _root.fallspeed; } onClipEvent (enterFrame) { if (hitTest(_root.upperwall)) { Yspeed = Math.abs(Yspeed) / 1.3; 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); } } onClipEvent (enterFrame) { if (hitTest(_root.lowerwall)) { Yspeed = (-Yspeed) + 5; Xspeed = 0; serve = 1; } } onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { xdifference = (_x - _root.paddle._x) / 8; Yspeed = -Math.abs(((-Yspeed) - 2) + Math.abs(xdifference)); Xspeed = xdifference; tellTarget ("_root.sound") { gotoAndPlay (2); }; } } onClipEvent (enterFrame) { if (Yspeed > 40) { Yspeed = 40; } if (Xspeed == 0) { Xspeed = 0.1; } if (Yspeed < -30) { Yspeed = -30; } }
Frame 7
stopAllSounds();
Frame 8
stop(); stop(); stop(); stop(); stop(); _root.score = 0; _root.level = 3; tellTarget ("_root.music") { gotoAndPlay ("intruder"); };
Instance of Symbol 160 MovieClip "score" in Frame 8
onClipEvent (enterFrame) { stop(); if ((_root.score == 17) && (_root.level == 3)) { tellTarget ("_root") { gotoAndStop (9); _root.serve = 1; }; } }
Instance of Symbol 47 MovieClip "paddle" in Frame 8
onClipEvent (load) { moveSpeed = 12; } onClipEvent (enterFrame) { if (Key.isDown(39) && (_x < 500)) { play(); this._x = this._x + moveSpeed; } else if (Key.isDown(37) && (_x > 55)) { play(); this._x = this._x - moveSpeed; } } onClipEvent (enterFrame) { _x = (_x + ((_parent._xmouse - _x) * 0.8)); }
Instance of Symbol 179 MovieClip "wahball" in Frame 8
onClipEvent (load) { Xspeed = 0; yspeed = 0; _root.fallspeed = 0.5; } onClipEvent (enterFrame) { _x = (_x + Xspeed); _y = (_y + yspeed); Yspeed = yspeed + _root.fallspeed; } onClipEvent (enterFrame) { if (hitTest(_root.upperwall)) { Yspeed = Math.abs(Yspeed); } } onClipEvent (enterFrame) { if (hitTest(_root.rightwall)) { Xspeed = -Math.abs(Xspeed); } if (hitTest(_root.leftwall)) { Xspeed = Math.abs(Xspeed); } } onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { xdifference = (_x - _root.paddle._x) / 3; Yspeed = -Math.abs(((-Yspeed) - 2) + Math.abs(xdifference)); Xspeed = xdifference; } } onClipEvent (enterFrame) { if (Yspeed > 40) { Yspeed = 40; } if (Xspeed == 0) { Xspeed = 0.1; } if (Yspeed < -30) { Yspeed = -30; } }
Instance of Symbol 67 MovieClip "laser" in Frame 8
onClipEvent (load) { speed = 0; } onClipEvent (enterFrame) { _y = (_y - speed); if (hitTest(_root.upperwall)) { _root.shootability = 1; } if (_root.shootability == 1) { _x = _root.paddle._x; _y = (_root.paddle._y - 20); } }
Instance of Symbol 75 MovieClip "ball" in Frame 8
onClipEvent (load) { Xspeed = 0; yspeed = 0; _root.fallspeed = 0.5; _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) / 1.3; 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"); tellTarget ("_root.balls") { nextFrame(); }; }; } } 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 (2); }; } } } onClipEvent (enterFrame) { if (Yspeed > 40) { Yspeed = 40; } if (Xspeed == 0) { Xspeed = 0.1; } if (Yspeed < -30) { Yspeed = -30; } } onClipEvent (enterFrame) { if (_root.serve == 1) { _x = _root.paddle._x; _y = (_root.paddle._y - 10); } }
Instance of Symbol 75 MovieClip "ball3" in Frame 8
onClipEvent (load) { Xspeed = 0; yspeed = 0; } onClipEvent (enterFrame) { _x = (_x + Xspeed); _y = (_y + yspeed); yspeed = yspeed + _root.fallspeed; } onClipEvent (enterFrame) { if (hitTest(_root.upperwall)) { Yspeed = Math.abs(Yspeed) / 1.3; 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; serve = 1; } } onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { xdifference = (_x - _root.paddle._x) / 8; Yspeed = -Math.abs(((-Yspeed) - 2) + Math.abs(xdifference)); Xspeed = xdifference; tellTarget ("_root.sound") { gotoAndPlay (2); }; } } onClipEvent (enterFrame) { if (Yspeed > 40) { Yspeed = 40; } if (Xspeed == 0) { Xspeed = 0.1; } if (Yspeed < -30) { Yspeed = -30; } }
Instance of Symbol 75 MovieClip "ball2" in Frame 8
onClipEvent (load) { Xspeed = 0; yspeed = 0; fallspeed = 0.5; } onClipEvent (enterFrame) { _x = (_x + Xspeed); _y = (_y + yspeed); yspeed = yspeed + _root.fallspeed; } onClipEvent (enterFrame) { if (hitTest(_root.upperwall)) { Yspeed = Math.abs(Yspeed) / 1.3; 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); } } onClipEvent (enterFrame) { if (hitTest(_root.lowerwall)) { Yspeed = (-Yspeed) + 5; Xspeed = 0; serve = 1; } } onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { xdifference = (_x - _root.paddle._x) / 8; Yspeed = -Math.abs(((-Yspeed) - 2) + Math.abs(xdifference)); Xspeed = xdifference; tellTarget ("_root.sound") { gotoAndPlay (2); }; } } onClipEvent (enterFrame) { if (Yspeed > 40) { Yspeed = 40; } if (Xspeed == 0) { Xspeed = 0.1; } if (Yspeed < -30) { Yspeed = -30; } }
Instance of Symbol 75 MovieClip "ball1" in Frame 8
onClipEvent (load) { Xspeed = 0; yspeed = 0; fallspeed = 0.5; } onClipEvent (enterFrame) { _x = (_x + Xspeed); _y = (_y + yspeed); yspeed = yspeed + _root.fallspeed; } onClipEvent (enterFrame) { if (hitTest(_root.upperwall)) { Yspeed = Math.abs(Yspeed) / 1.3; 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); } } onClipEvent (enterFrame) { if (hitTest(_root.lowerwall)) { Yspeed = (-Yspeed) + 5; Xspeed = 0; serve = 1; } } onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { xdifference = (_x - _root.paddle._x) / 8; Yspeed = -Math.abs(((-Yspeed) - 2) + Math.abs(xdifference)); Xspeed = xdifference; tellTarget ("_root.sound") { gotoAndPlay (2); }; } } onClipEvent (enterFrame) { if (Yspeed > 40) { Yspeed = 40; } if (Xspeed == 0) { Xspeed = 0.1; } if (Yspeed < -30) { Yspeed = -30; } }
Frame 9
stopAllSounds();
Frame 10
stop(); stop(); stop(); stop(); stop(); _root.score = 0; _root.level = 4; tellTarget ("_root.music") { gotoAndPlay ("mintruder"); };
Instance of Symbol 160 MovieClip "score" in Frame 10
onClipEvent (enterFrame) { stop(); if ((_root.score == 16) && (_root.level == 4)) { tellTarget ("_root") { gotoAndStop (11); _root.serve = 1; }; } }
Instance of Symbol 47 MovieClip "paddle" in Frame 10
onClipEvent (load) { moveSpeed = 12; } onClipEvent (enterFrame) { if (Key.isDown(39) && (_x < 500)) { play(); this._x = this._x + moveSpeed; } else if (Key.isDown(37) && (_x > 55)) { play(); this._x = this._x - moveSpeed; } } onClipEvent (enterFrame) { _x = (_x + ((_parent._xmouse - _x) * 0.8)); }
Instance of Symbol 179 MovieClip "wahball" in Frame 10
onClipEvent (load) { Xspeed = 0; yspeed = 0; _root.fallspeed = 0.5; } onClipEvent (enterFrame) { _x = (_x + Xspeed); _y = (_y + yspeed); Yspeed = yspeed + _root.fallspeed; } onClipEvent (enterFrame) { if (hitTest(_root.upperwall)) { Yspeed = Math.abs(Yspeed); } } onClipEvent (enterFrame) { if (hitTest(_root.rightwall)) { Xspeed = -Math.abs(Xspeed); } if (hitTest(_root.leftwall)) { Xspeed = Math.abs(Xspeed); } } onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { xdifference = (_x - _root.paddle._x) / 3; Yspeed = -Math.abs(((-Yspeed) - 2) + Math.abs(xdifference)); Xspeed = xdifference; } } onClipEvent (enterFrame) { if (Yspeed > 40) { Yspeed = 40; } if (Xspeed == 0) { Xspeed = 0.1; } if (Yspeed < -30) { Yspeed = -30; } }
Instance of Symbol 67 MovieClip "laser" in Frame 10
onClipEvent (load) { speed = 0; } onClipEvent (enterFrame) { _y = (_y - speed); if (hitTest(_root.upperwall)) { _root.shootability = 1; } if (_root.shootability == 1) { _x = _root.paddle._x; _y = (_root.paddle._y - 20); } }
Instance of Symbol 75 MovieClip "ball" in Frame 10
onClipEvent (load) { Xspeed = 0; yspeed = 0; _root.fallspeed = 0.5; _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) / 1.3; 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"); tellTarget ("_root.balls") { nextFrame(); }; }; } } 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 (2); }; } } } onClipEvent (enterFrame) { if (Yspeed > 40) { Yspeed = 40; } if (Xspeed == 0) { Xspeed = 0.1; } if (Yspeed < -30) { Yspeed = -30; } } onClipEvent (enterFrame) { if (_root.serve == 1) { _x = _root.paddle._x; _y = (_root.paddle._y - 10); } }
Instance of Symbol 75 MovieClip "ball3" in Frame 10
onClipEvent (load) { Xspeed = 0; yspeed = 0; } onClipEvent (enterFrame) { _x = (_x + Xspeed); _y = (_y + yspeed); yspeed = yspeed + _root.fallspeed; } onClipEvent (enterFrame) { if (hitTest(_root.upperwall)) { Yspeed = Math.abs(Yspeed) / 1.3; 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; serve = 1; } } onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { xdifference = (_x - _root.paddle._x) / 8; Yspeed = -Math.abs(((-Yspeed) - 2) + Math.abs(xdifference)); Xspeed = xdifference; tellTarget ("_root.sound") { gotoAndPlay (2); }; } } onClipEvent (enterFrame) { if (Yspeed > 40) { Yspeed = 40; } if (Xspeed == 0) { Xspeed = 0.1; } if (Yspeed < -30) { Yspeed = -30; } }
Instance of Symbol 75 MovieClip "ball2" in Frame 10
onClipEvent (load) { Xspeed = 0; yspeed = 0; fallspeed = 0.5; } onClipEvent (enterFrame) { _x = (_x + Xspeed); _y = (_y + yspeed); yspeed = yspeed + _root.fallspeed; } onClipEvent (enterFrame) { if (hitTest(_root.upperwall)) { Yspeed = Math.abs(Yspeed) / 1.3; 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); } } onClipEvent (enterFrame) { if (hitTest(_root.lowerwall)) { Yspeed = (-Yspeed) + 5; Xspeed = 0; serve = 1; } } onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { xdifference = (_x - _root.paddle._x) / 8; Yspeed = -Math.abs(((-Yspeed) - 2) + Math.abs(xdifference)); Xspeed = xdifference; tellTarget ("_root.sound") { gotoAndPlay (2); }; } } onClipEvent (enterFrame) { if (Yspeed > 40) { Yspeed = 40; } if (Xspeed == 0) { Xspeed = 0.1; } if (Yspeed < -30) { Yspeed = -30; } }
Instance of Symbol 75 MovieClip "ball1" in Frame 10
onClipEvent (load) { Xspeed = 0; yspeed = 0; fallspeed = 0.5; } onClipEvent (enterFrame) { _x = (_x + Xspeed); _y = (_y + yspeed); yspeed = yspeed + _root.fallspeed; } onClipEvent (enterFrame) { if (hitTest(_root.upperwall)) { Yspeed = Math.abs(Yspeed) / 1.3; 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); } } onClipEvent (enterFrame) { if (hitTest(_root.lowerwall)) { Yspeed = (-Yspeed) + 5; Xspeed = 0; serve = 1; } } onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { xdifference = (_x - _root.paddle._x) / 8; Yspeed = -Math.abs(((-Yspeed) - 2) + Math.abs(xdifference)); Xspeed = xdifference; tellTarget ("_root.sound") { gotoAndPlay (2); }; } } onClipEvent (enterFrame) { if (Yspeed > 40) { Yspeed = 40; } if (Xspeed == 0) { Xspeed = 0.1; } if (Yspeed < -30) { Yspeed = -30; } }
Frame 11
stopAllSounds();
Instance of Symbol 243 MovieClip in Frame 11
onClipEvent (enterFrame) { if ((_root.lights == 0) && (_root.level == 5)) { _alpha = 0; } else if (_root.lights == 1) { _alpha = 100; } }
Instance of Symbol 250 MovieClip in Frame 11
onClipEvent (enterFrame) { _root.lights = 0; }
Frame 12
stop(); stop(); stop(); stop(); stop(); _root.score = 0; _root.level = 5; tellTarget ("_root.music") { gotoAndPlay ("shadow"); };
Instance of Symbol 160 MovieClip in Frame 12
onClipEvent (enterFrame) { stop(); if ((_root.score == 18) && (_root.level == 5)) { tellTarget ("_root") { gotoAndStop (22); }; } }
Instance of Symbol 251 MovieClip in Frame 12
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 192 MovieClip in Frame 12
onClipEvent (enterFrame) { if ((_root.lights == 0) && (_root.level == 5)) { _alpha = 0; } else if (_root.lights == 1) { _alpha = 100; } }
Instance of Symbol 251 MovieClip in Frame 12
onClipEvent (enterFrame) { if (hitTest(_root.ball)) { if (_currentframe == 1) { gotoAndStop (2); } else if (_currentframe == 2) { gotoAndStop (1); } } } onClipEvent (enterFrame) { if (hitTest(_root.ball1)) { if (_currentframe == 1) { gotoAndStop (2); } else if (_currentframe == 2) { gotoAndStop (1); } } } onClipEvent (enterFrame) { if (hitTest(_root.ball2)) { if (_currentframe == 1) { gotoAndStop (2); } else if (_currentframe == 2) { gotoAndStop (1); } } } onClipEvent (enterFrame) { if (hitTest(_root.ball3)) { if (_currentframe == 1) { gotoAndStop (2); } else if (_currentframe == 2) { gotoAndStop (1); } } }
Instance of Symbol 256 MovieClip in Frame 12
onClipEvent (enterFrame) { if (hitTest(_root.ball)) { if (_currentframe == 1) { gotoAndStop (2); } else if (_currentframe == 2) { gotoAndStop (1); } } } onClipEvent (enterFrame) { if (hitTest(_root.ball1)) { if (_currentframe == 1) { gotoAndStop (2); } else if (_currentframe == 2) { gotoAndStop (1); } } } onClipEvent (enterFrame) { if (hitTest(_root.ball2)) { if (_currentframe == 1) { gotoAndStop (2); } else if (_currentframe == 2) { gotoAndStop (1); } } } onClipEvent (enterFrame) { if (hitTest(_root.ball3)) { if (_currentframe == 1) { gotoAndStop (2); } else if (_currentframe == 2) { gotoAndStop (1); } } }
Instance of Symbol 47 MovieClip "paddle" in Frame 12
onClipEvent (enterFrame) { _x = (_x + ((_parent._xmouse - _x) * 0.8)); }
Instance of Symbol 179 MovieClip "wahball" in Frame 12
onClipEvent (load) { Xspeed = 0; yspeed = 0; _root.fallspeed = 0.5; } onClipEvent (enterFrame) { _x = (_x + Xspeed); _y = (_y + yspeed); Yspeed = yspeed + _root.fallspeed; } onClipEvent (enterFrame) { if (hitTest(_root.upperwall)) { Yspeed = Math.abs(Yspeed); } } onClipEvent (enterFrame) { if (hitTest(_root.rightwall)) { Xspeed = -Math.abs(Xspeed); } if (hitTest(_root.leftwall)) { Xspeed = Math.abs(Xspeed); } } onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { xdifference = (_x - _root.paddle._x) / 3; Yspeed = -Math.abs(((-Yspeed) - 2) + Math.abs(xdifference)); Xspeed = xdifference; } } onClipEvent (enterFrame) { if (Yspeed > 40) { Yspeed = 40; } if (Xspeed == 0) { Xspeed = 0.1; } if (Yspeed < -30) { Yspeed = -30; } }
Instance of Symbol 67 MovieClip "laser" in Frame 12
onClipEvent (load) { speed = 0; } onClipEvent (enterFrame) { _y = (_y - speed); if (hitTest(_root.upperwall)) { _root.shootability = 1; } if (_root.shootability == 1) { _x = _root.paddle._x; _y = (_root.paddle._y - 20); } }
Instance of Symbol 75 MovieClip "ball" in Frame 12
onClipEvent (load) { Xspeed = 0; yspeed = 0; _root.fallspeed = 0.5; _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) / 1.3; 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"); tellTarget ("_root.balls") { nextFrame(); }; }; } } 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 (2); }; } } } onClipEvent (enterFrame) { if (Yspeed > 40) { Yspeed = 40; } if (Xspeed == 0) { Xspeed = 0.1; } if (Yspeed < -30) { Yspeed = -30; } } onClipEvent (enterFrame) { if (_root.serve == 1) { _x = _root.paddle._x; _y = (_root.paddle._y - 10); } }
Instance of Symbol 75 MovieClip "ball3" in Frame 12
onClipEvent (load) { Xspeed = 0; yspeed = 0; } onClipEvent (enterFrame) { _x = (_x + Xspeed); _y = (_y + yspeed); yspeed = yspeed + _root.fallspeed; } onClipEvent (enterFrame) { if (hitTest(_root.upperwall)) { Yspeed = Math.abs(Yspeed) / 1.3; 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; serve = 1; } } onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { xdifference = (_x - _root.paddle._x) / 8; Yspeed = -Math.abs(((-Yspeed) - 2) + Math.abs(xdifference)); Xspeed = xdifference; tellTarget ("_root.sound") { gotoAndPlay (2); }; } } onClipEvent (enterFrame) { if (Yspeed > 40) { Yspeed = 40; } if (Xspeed == 0) { Xspeed = 0.1; } if (Yspeed < -30) { Yspeed = -30; } }
Instance of Symbol 75 MovieClip "ball2" in Frame 12
onClipEvent (load) { Xspeed = 0; yspeed = 0; fallspeed = 0.5; } onClipEvent (enterFrame) { _x = (_x + Xspeed); _y = (_y + yspeed); yspeed = yspeed + _root.fallspeed; } onClipEvent (enterFrame) { if (hitTest(_root.upperwall)) { Yspeed = Math.abs(Yspeed) / 1.3; 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); } } onClipEvent (enterFrame) { if (hitTest(_root.lowerwall)) { Yspeed = (-Yspeed) + 5; Xspeed = 0; serve = 1; } } onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { xdifference = (_x - _root.paddle._x) / 8; Yspeed = -Math.abs(((-Yspeed) - 2) + Math.abs(xdifference)); Xspeed = xdifference; tellTarget ("_root.sound") { gotoAndPlay (2); }; } } onClipEvent (enterFrame) { if (Yspeed > 40) { Yspeed = 40; } if (Xspeed == 0) { Xspeed = 0.1; } if (Yspeed < -30) { Yspeed = -30; } }
Instance of Symbol 75 MovieClip "ball1" in Frame 12
onClipEvent (load) { Xspeed = 0; yspeed = 0; fallspeed = 0.5; } onClipEvent (enterFrame) { _x = (_x + Xspeed); _y = (_y + yspeed); yspeed = yspeed + _root.fallspeed; } onClipEvent (enterFrame) { if (hitTest(_root.upperwall)) { Yspeed = Math.abs(Yspeed) / 1.3; 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); } } onClipEvent (enterFrame) { if (hitTest(_root.lowerwall)) { Yspeed = (-Yspeed) + 5; Xspeed = 0; serve = 1; } } onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { xdifference = (_x - _root.paddle._x) / 8; Yspeed = -Math.abs(((-Yspeed) - 2) + Math.abs(xdifference)); Xspeed = xdifference; tellTarget ("_root.sound") { gotoAndPlay (2); }; } } onClipEvent (enterFrame) { if (Yspeed > 40) { Yspeed = 40; } if (Xspeed == 0) { Xspeed = 0.1; } if (Yspeed < -30) { Yspeed = -30; } }
Frame 21
_root.level = gameover; stopAllSounds(); tellTarget ("_root.music") { gotoAndPlay ("maxit"); }; stop(); Mouse.show(); stop();
Instance of Symbol 75 MovieClip "ball" in Frame 21
onClipEvent (load) { Xspeed = 0; yspeed = 0; _root.fallspeed = 0.5; } onClipEvent (enterFrame) { _x = (_x + Xspeed); _y = (_y + yspeed); Yspeed = yspeed + _root.fallspeed; } onClipEvent (enterFrame) { if (Yspeed > 40) { Yspeed = 40; } if (Yspeed < -30) { Yspeed = -30; } }
Frame 22
_root.level = congratulations; stopAllSounds(); tellTarget ("_root.music") { gotoAndPlay ("mintruder"); }; stop(); Mouse.show(); stop();
Instance of Symbol 10 MovieClip in Symbol 11 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) + 0.5; tellTarget ("_root.sound") { gotoAndPlay (2); }; } }
Instance of Symbol 10 MovieClip in Symbol 11 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)) - 0.5; 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 10 MovieClip in Symbol 11 MovieClip Frame 1
onClipEvent (enterFrame) { if (blocktop.hitTest(_root.ball)) { _root.ball.Yspeed = (-Math.abs(_root.ball.Yspeed)) + 2; 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 22 MovieClip Frame 2
stop();
Symbol 22 MovieClip Frame 5
gotoAndPlay (2);
Symbol 22 MovieClip Frame 25
gotoAndPlay (1);
Symbol 22 MovieClip Frame 36
gotoAndPlay (1);
Symbol 22 MovieClip Frame 51
gotoAndPlay (1);
Symbol 22 MovieClip Frame 64
gotoAndPlay (1);
Symbol 22 MovieClip Frame 76
gotoAndPlay (1);
Symbol 24 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 45 MovieClip Frame 23
gotoAndPlay (1);
Symbol 47 MovieClip Frame 1
stop(); tellTarget ("_root.laser") { _x = -2000; };
Symbol 47 MovieClip Frame 3
stop();
Instance of Symbol 45 MovieClip in Symbol 47 MovieClip Frame 3
onClipEvent (load) { _root.shootability = 1; _root.lasers = 5; } onClipEvent (enterFrame) { if (Key.isDown(32) && (_root.shootability == 1)) { tellTarget ("_root.laser") { gotoAndStop (1); speed = 20; _root.lasers--; _root.shootability = 0; tellTarget ("_root.sound") { gotoAndPlay ("laserfire"); }; }; } if ((_root.lasers < 0) && (_root.shootability == 1)) { tellTarget ("_root.laser") { _x = -2000; _root.lasers = 0; _root.shootability = 0; }; tellTarget ("_root.paddle") { gotoAndStop (1); }; } }
Symbol 64 Button
on (release) { tellTarget ("_root") { gotoAndStop (2); }; }
Symbol 65 MovieClip Frame 1
stop();
Symbol 65 MovieClip Frame 2
stop();
Symbol 65 MovieClip Frame 3
stop();
Symbol 65 MovieClip Frame 13
stop();
Symbol 67 MovieClip Frame 1
stop();
Symbol 67 MovieClip Frame 2
stop();
Symbol 81 Button
on (release) { gotoAndPlay (3); } on (release) { _root.balls = 15; gotoAndPlay (3); }
Symbol 84 Button
on (release) { gotoAndStop (20); }
Symbol 88 Button
on (release) { getURL ("http://members.cox.net/tomorrowsnobody/", "_self"); }
Symbol 114 MovieClip Frame 5
tellTarget ("_root.sound") { gotoAndPlay (1); };
Symbol 114 MovieClip Frame 15
tellTarget ("_root.sound") { gotoAndPlay (1); };
Symbol 114 MovieClip Frame 20
tellTarget ("_root.sound") { gotoAndPlay (1); };
Symbol 114 MovieClip Frame 25
tellTarget ("_root.sound") { gotoAndPlay (1); };
Symbol 114 MovieClip Frame 30
tellTarget ("_root.sound") { gotoAndPlay (1); };
Symbol 114 MovieClip Frame 37
tellTarget ("_root.sound") { gotoAndPlay (1); };
Symbol 114 MovieClip Frame 42
tellTarget ("_root.sound") { gotoAndPlay (1); };
Symbol 114 MovieClip Frame 48
tellTarget ("_root.sound") { gotoAndPlay (1); };
Symbol 114 MovieClip Frame 57
tellTarget ("_root.sound") { gotoAndPlay (1); };
Symbol 114 MovieClip Frame 66
tellTarget ("_root.sound") { gotoAndPlay (1); };
Symbol 114 MovieClip Frame 77
tellTarget ("_root.sound") { gotoAndPlay (1); };
Symbol 114 MovieClip Frame 95
stop();
Symbol 123 MovieClip Frame 200
stop(); tellTarget ("_root") { gotoAndPlay (4); };
Symbol 145 MovieClip Frame 1
stop();
Symbol 145 MovieClip Frame 2
stop();
Symbol 145 MovieClip Frame 3
stop();
Symbol 145 MovieClip Frame 4
stop();
Symbol 145 MovieClip Frame 5
stop();
Symbol 145 MovieClip Frame 6
stop(); balls = 15;
Symbol 145 MovieClip Frame 7
stop();
Symbol 145 MovieClip Frame 8
stop();
Symbol 145 MovieClip Frame 9
stop();
Symbol 145 MovieClip Frame 10
stop();
Symbol 145 MovieClip Frame 11
stop();
Symbol 145 MovieClip Frame 12
stop();
Symbol 145 MovieClip Frame 13
stop();
Symbol 145 MovieClip Frame 14
stop();
Symbol 145 MovieClip Frame 15
stop();
Symbol 145 MovieClip Frame 16
stop();
Symbol 145 MovieClip Frame 17
stop();
Symbol 145 MovieClip Frame 18
stop();
Symbol 145 MovieClip Frame 19
stop();
Symbol 145 MovieClip Frame 20
stop();
Symbol 145 MovieClip Frame 21
stop();
Symbol 145 MovieClip Frame 22
stop(); _root.balls = 0;
Symbol 157 MovieClip Frame 1
stop();
Symbol 157 MovieClip Frame 2
stop();
Symbol 157 MovieClip Frame 3
stop();
Symbol 157 MovieClip Frame 4
stop();
Symbol 157 MovieClip Frame 5
stop();
Symbol 157 MovieClip Frame 6
stop();
Symbol 172 MovieClip Frame 1
stop();
Symbol 174 MovieClip Frame 1
stop();
Symbol 176 MovieClip Frame 1
stop();
Symbol 181 MovieClip Frame 1
stop();
Symbol 185 MovieClip Frame 1
stop();
Symbol 185 MovieClip Frame 5
powerup = random(60); _root.score++; if (powerup <= 5) { gotoAndPlay (10); } if ((powerup <= 10) && (powerup > 5)) { gotoAndPlay (150); } if ((powerup <= 13) && (powerup > 10)) { gotoAndStop (280); } if ((powerup <= 18) && (powerup > 13)) { gotoAndPlay (440); } if ((powerup <= 22) && (powerup > 18)) { gotoAndPlay (590); } if ((powerup <= 25) && (powerup > 22)) { gotoAndStop (695); } if ((powerup <= 28) && (powerup > 25)) { gotoAndStop (700); } if ((powerup <= 30) && (powerup > 28)) { gotoAndStop (701); } if (powerup > 30) { stop(); }
Instance of Symbol 172 MovieClip in Symbol 185 MovieClip Frame 10
onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { gotoAndStop (2); tellTarget ("_root.speedup") { gotoAndStop (2); tellTarget ("_root.speedup.speedupcounter") { _height = 27.8; }; }; tellTarget ("_root.slowdown") { gotoAndStop (1); }; } }
Symbol 185 MovieClip Frame 148
stop();
Instance of Symbol 174 MovieClip in Symbol 185 MovieClip Frame 150
onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { gotoAndStop (2); tellTarget ("_root.slowdown") { gotoAndStop (2); }; tellTarget ("_root.slowdown.slowdowncounter") { _height = 27.8; }; tellTarget ("_root.speedup") { gotoAndStop (1); }; } }
Symbol 185 MovieClip Frame 279
stop();
Instance of Symbol 176 MovieClip in Symbol 185 MovieClip Frame 280
onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { gotoAndStop (2); _root.ball1._y = 1; _root.ball1._x = 150; tellTarget ("_root.ball1") { Xspeed = 0; Yspeed = -8; }; _root.ball2._y = 0; _root.ball2._x = 250; tellTarget ("_root.ball2") { Xspeed = -1; Yspeed = -9; }; _root.ball3._y = 0; _root.ball3._x = 375; tellTarget ("_root.ball3") { Xspeed = 0.5; Yspeed = -7; }; stop(); } _rotation = (_rotation+1); _y = (_y + 3); }
Symbol 185 MovieClip Frame 437
stop();
Instance of Symbol 176 MovieClip in Symbol 185 MovieClip Frame 437
onClipEvent (enterFrame) { _rotation = (_rotation+1); }
Instance of Symbol 45 MovieClip in Symbol 185 MovieClip Frame 440
onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { tellTarget ("_root.largepaddle") { gotoAndStop (1); tellTarget ("_root.sound") { gotoAndPlay ("shrink"); }; }; gotoAndStop (24); tellTarget ("_root.smallpaddle") { gotoAndStop (2); tellTarget ("_root.smallpaddle.counter") { _height = 27.8; }; }; } }
Symbol 185 MovieClip Frame 585
stop();
Instance of Symbol 45 MovieClip in Symbol 185 MovieClip Frame 585
onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { gotoAndStop (24); tellTarget ("_root.smallpaddle") { gotoAndStop (2); tellTarget ("_root.smallpaddle.counter") { }; }; tellTarget ("_root.paddle") { _xscale = (_xscale / 1.5); }; } }
Instance of Symbol 45 MovieClip in Symbol 185 MovieClip Frame 590
onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { tellTarget ("_root.smallpaddle") { gotoAndStop (1); tellTarget ("_root.sound") { gotoAndPlay ("grow"); }; }; tellTarget ("_root.largepaddle") { gotoAndStop (2); tellTarget ("_root.largepaddle.counter") { _height = 27.8; }; }; gotoAndStop (24); } }
Symbol 185 MovieClip Frame 690
stop();
Instance of Symbol 45 MovieClip in Symbol 185 MovieClip Frame 690
onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { gotoAndStop (24); tellTarget ("_root.smallpaddle") { gotoAndStop (2); tellTarget ("_root.smallpaddle.counter") { }; }; } }
Symbol 185 MovieClip Frame 695
stop();
Instance of Symbol 179 MovieClip in Symbol 185 MovieClip Frame 695
onClipEvent (load) { yspeed = 3; } onClipEvent (enterFrame) { _y = (_y + yspeed); } onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { tellTarget ("_root.wahball") { yspeed = -30; xspeed = 5; _x = _root.paddle._x; _y = _root.paddle._y; }; } }
Symbol 185 MovieClip Frame 700
stop();
Instance of Symbol 45 MovieClip in Symbol 185 MovieClip Frame 700
onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { gotoAndStop (24); tellTarget ("_root.smallpaddle") { gotoAndStop (2); tellTarget ("_root.smallpaddle.counter") { }; }; } }
Instance of Symbol 181 MovieClip in Symbol 185 MovieClip Frame 700
onClipEvent (load) { yspeed = 3; } onClipEvent (enterFrame) { _y = (_y + yspeed); } onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { _root.balls = 5; gotoAndStop (2); tellTarget ("_root.paddle") { gotoAndStop (3); }; } }
Instance of Symbol 184 MovieClip in Symbol 185 MovieClip Frame 701
onClipEvent (load) { yspeed = 6; } onClipEvent (enterFrame) { _y = (_y + yspeed); } onClipEvent (enterFrame) { if (hitTest(_root.paddle)) { gotoAndStop (2); tellTarget ("_root.balls") { prevFrame(); }; } }
Symbol 189 MovieClip Frame 7
stop(); _root.score++;
Instance of Symbol 185 MovieClip in Symbol 190 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 (blocktop.hitTest(_root.ball1)) { _root.ball1.Yspeed = -Math.abs(_root.ball1.Yspeed); gotoAndPlay (1); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockleft.hitTest(_root.ball1)) { gotoAndPlay (1); _root.ball1.Xspeed = -Math.abs(_root.ball1.Xspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockbottom.hitTest(_root.ball1)) { gotoAndPlay (1); _root.ball1.Yspeed = Math.abs(_root.ball1.Yspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockright.hitTest(_root.ball1)) { gotoAndPlay (1); _root.ball1.Xspeed = Math.abs(_root.ball1.Xspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } } onClipEvent (enterFrame) { if (blocktop.hitTest(_root.ball2)) { _root.ball2.Yspeed = -Math.abs(_root.ball2Yspeed); gotoAndPlay (1); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockleft.hitTest(_root.ball2)) { gotoAndPlay (1); _root.ball2.Xspeed = -Math.abs(_root.ball2.Xspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockbottom.hitTest(_root.ball2)) { gotoAndPlay (1); _root.ball2.Yspeed = Math.abs(_root.ball2.Yspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockright.hitTest(_root.ball2)) { gotoAndPlay (1); _root.ball2.Xspeed = Math.abs(_root.ball2.Xspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } } onClipEvent (enterFrame) { if (blocktop.hitTest(_root.ball3)) { _root.ball.Yspeed = -Math.abs(_root.ball.Yspeed); gotoAndPlay (1); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockleft.hitTest(_root.ball3)) { gotoAndPlay (1); _root.ball3.Xspeed = -Math.abs(_root.ball3.Xspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockbottom.hitTest(_root.ball3)) { gotoAndPlay (1); _root.ball3.Yspeed = Math.abs(_root.ball3.Yspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockright.hitTest(_root.ball3)) { gotoAndPlay (1); _root.ball3.Xspeed = Math.abs(_root.ball3.Xspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } } onClipEvent (enterFrame) { if (hitTest(_root.wahball) && (_currentframe == 1)) { gotoAndPlay (1); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (hitTest(_root.laser) && (_currentframe == 1)) { gotoAndPlay (1); _root.shootability = 1; tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } } onClipEvent (enterFrame) { if ((_root.lights == 0) && (_root.level == 5)) { _alpha = 0; } else if (_root.lights == 1) { _alpha = 100; } }
Symbol 191 MovieClip Frame 1
stop(); stop();
Instance of Symbol 185 MovieClip in Symbol 191 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) { _alpha = 0; } else if (_root.lights == 1) { _alpha = 100; } }
Instance of Symbol 185 MovieClip in Symbol 191 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 191 MovieClip Frame 8
stop();
Symbol 192 MovieClip Frame 1
stop(); if (_root.level == 3) { gotoAndPlay (2); } if (_root.level == 4) { gotoAndPlay (2); } if (_root.level == 5) { gotoAndPlay (2); }
Instance of Symbol 10 MovieClip in Symbol 192 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); }; } } onClipEvent (enterFrame) { if (blocktop.hitTest(_root.ball1)) { _root.ball1.Yspeed = -Math.abs(_root.ball1.Yspeed); tellTarget ("_root.sound") { gotoAndPlay (2); }; } if (blockleft.hitTest(_root.ball1)) { _root.ball1.Xspeed = -Math.abs(_root.ball1.Xspeed); tellTarget ("_root.sound") { gotoAndPlay (2); }; } if (blockbottom.hitTest(_root.ball1)) { _root.ball1.Yspeed = Math.abs(_root.ball1.Yspeed); tellTarget ("_root.sound") { gotoAndPlay (2); }; } if (blockright.hitTest(_root.ball1)) { _root.ball1.Xspeed = Math.abs(_root.ball1.Xspeed); tellTarget ("_root.sound") { gotoAndPlay (2); }; } } onClipEvent (enterFrame) { if (blocktop.hitTest(_root.ball2)) { _root.ball2.Yspeed = -Math.abs(_root.ball2.Yspeed); tellTarget ("_root.sound") { gotoAndPlay (2); }; } if (blockleft.hitTest(_root.ball2)) { gotoAndPlay (1); _root.ball2.Xspeed = -Math.abs(_root.ball2.Xspeed); tellTarget ("_root.sound") { gotoAndPlay (2); }; } if (blockbottom.hitTest(_root.ball2)) { _root.ball2.Yspeed = Math.abs(_root.ball2.Yspeed); tellTarget ("_root.sound") { gotoAndPlay (2); }; } if (blockright.hitTest(_root.ball2)) { _root.ball2.Xspeed = Math.abs(_root.ball2.Xspeed); tellTarget ("_root.sound") { gotoAndPlay (2); }; } } onClipEvent (enterFrame) { if (blocktop.hitTest(_root.ball3)) { _root.ball3.Yspeed = -Math.abs(_root.ball3.Yspeed); tellTarget ("_root.sound") { gotoAndPlay (2); }; } if (blockleft.hitTest(_root.ball3)) { _root.ball3.Xspeed = -Math.abs(_root.ball3.Xspeed); tellTarget ("_root.sound") { gotoAndPlay (2); }; } if (blockbottom.hitTest(_root.ball3)) { _root.ball3.Yspeed = Math.abs(_root.ball3.Yspeed); tellTarget ("_root.sound") { gotoAndPlay (2); }; } if (blockright.hitTest(_root.ball3)) { _root.ball3.Xspeed = Math.abs(_root.ball3.Xspeed); tellTarget ("_root.sound") { gotoAndPlay (2); }; } } onClipEvent (enterFrame) { if (hitTest(_root.laser)) { _root.shootability = 1; } }
Instance of Symbol 10 MovieClip in Symbol 192 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; } }
Symbol 196 MovieClip Frame 1
stop(); _root.fallspeed = 0.5;
Symbol 196 MovieClip Frame 2
stop();
Instance of Symbol 195 MovieClip "speedupcounter" in Symbol 196 MovieClip Frame 2
onClipEvent (load) { counter = 30; _root.fallspeed = 0.2; } onClipEvent (enterFrame) { counter--; if (counter == 0) { _height = (_height - 1); counter = 30; if (_height < 2) { tellTarget ("_parent") { gotoAndStop (1); }; } } }
Symbol 199 MovieClip Frame 1
stop(); _root.fallspeed = 0.5;
Symbol 199 MovieClip Frame 2
stop();
Instance of Symbol 198 MovieClip "slowdowncounter" in Symbol 199 MovieClip Frame 2
onClipEvent (load) { counter = 30; _root.fallspeed = 0.8; } onClipEvent (enterFrame) { counter--; if (counter == 0) { _height = (_height - 1); counter = 30; if (_height < 2) { tellTarget ("_parent") { gotoAndStop (1); }; } } }
Symbol 202 MovieClip Frame 1
stop(); _root.fallspeed = 0.5; _root.paddle._width = 60.5;
Symbol 202 MovieClip Frame 2
stop();
Instance of Symbol 201 MovieClip "counter" in Symbol 202 MovieClip Frame 2
onClipEvent (load) { counter = 30; _root.paddle._width = 30; } onClipEvent (enterFrame) { counter--; if (counter == 0) { _height = (_height - 1); counter = 30; if (_height < 2) { tellTarget ("_parent") { gotoAndStop (1); }; } } }
Symbol 205 MovieClip Frame 1
stop(); _root.fallspeed = 0.5; _root.paddle._width = 60.5;
Symbol 205 MovieClip Frame 2
stop();
Instance of Symbol 204 MovieClip "counter" in Symbol 205 MovieClip Frame 2
onClipEvent (load) { counter = 30; _root.paddle._width = 80; } onClipEvent (enterFrame) { counter--; if (counter == 0) { _height = (_height - 1); counter = 30; if (_height < 2) { tellTarget ("_parent") { gotoAndStop (1); }; } } }
Symbol 214 MovieClip Frame 175
stop(); tellTarget ("_root") { gotoAndPlay (6); };
Symbol 216 MovieClip Frame 1
stop(); stop();
Instance of Symbol 185 MovieClip in Symbol 216 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) { _alpha = 0; } else if (_root.lights == 1) { _alpha = 100; } }
Instance of Symbol 185 MovieClip in Symbol 216 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 216 MovieClip Frame 8
stop();
Instance of Symbol 185 MovieClip in Symbol 217 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 (blocktop.hitTest(_root.ball1)) { _root.ball1.Yspeed = -Math.abs(_root.ball1.Yspeed); gotoAndPlay (1); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockleft.hitTest(_root.ball1)) { gotoAndPlay (1); _root.ball1.Xspeed = -Math.abs(_root.ball1.Xspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockbottom.hitTest(_root.ball1)) { gotoAndPlay (1); _root.ball1.Yspeed = Math.abs(_root.ball1.Yspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockright.hitTest(_root.ball1)) { gotoAndPlay (1); _root.ball1.Xspeed = Math.abs(_root.ball1.Xspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } } onClipEvent (enterFrame) { if (blocktop.hitTest(_root.ball2)) { _root.ball2.Yspeed = -Math.abs(_root.ball2Yspeed); gotoAndPlay (1); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockleft.hitTest(_root.ball2)) { gotoAndPlay (1); _root.ball2.Xspeed = -Math.abs(_root.ball2.Xspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockbottom.hitTest(_root.ball2)) { gotoAndPlay (1); _root.ball2.Yspeed = Math.abs(_root.ball2.Yspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockright.hitTest(_root.ball2)) { gotoAndPlay (1); _root.ball2.Xspeed = Math.abs(_root.ball2.Xspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } } onClipEvent (enterFrame) { if (blocktop.hitTest(_root.ball3)) { _root.ball.Yspeed = -Math.abs(_root.ball.Yspeed); gotoAndPlay (1); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockleft.hitTest(_root.ball3)) { gotoAndPlay (1); _root.ball3.Xspeed = -Math.abs(_root.ball3.Xspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockbottom.hitTest(_root.ball3)) { gotoAndPlay (1); _root.ball3.Yspeed = Math.abs(_root.ball3.Yspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockright.hitTest(_root.ball3)) { gotoAndPlay (1); _root.ball3.Xspeed = Math.abs(_root.ball3.Xspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } } onClipEvent (enterFrame) { if (hitTest(_root.wahball) && (_currentframe == 1)) { gotoAndPlay (1); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (hitTest(_root.laser) && (_currentframe == 1)) { gotoAndPlay (1); _root.shootability = 1; tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } } onClipEvent (enterFrame) { if ((_root.lights == 0) && (_root.level == 5)) { _alpha = 0; } else if (_root.lights == 1) { _alpha = 100; } }
Symbol 225 MovieClip Frame 175
stop(); tellTarget ("_root") { gotoAndPlay (8); };
Symbol 226 MovieClip Frame 1
stop(); stop();
Instance of Symbol 185 MovieClip in Symbol 226 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) { _alpha = 0; } else if (_root.lights == 1) { _alpha = 100; } }
Instance of Symbol 185 MovieClip in Symbol 226 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 226 MovieClip Frame 8
stop();
Instance of Symbol 185 MovieClip in Symbol 227 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 (blocktop.hitTest(_root.ball1)) { _root.ball1.Yspeed = -Math.abs(_root.ball1.Yspeed); gotoAndPlay (1); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockleft.hitTest(_root.ball1)) { gotoAndPlay (1); _root.ball1.Xspeed = -Math.abs(_root.ball1.Xspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockbottom.hitTest(_root.ball1)) { gotoAndPlay (1); _root.ball1.Yspeed = Math.abs(_root.ball1.Yspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockright.hitTest(_root.ball1)) { gotoAndPlay (1); _root.ball1.Xspeed = Math.abs(_root.ball1.Xspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } } onClipEvent (enterFrame) { if (blocktop.hitTest(_root.ball2)) { _root.ball2.Yspeed = -Math.abs(_root.ball2Yspeed); gotoAndPlay (1); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockleft.hitTest(_root.ball2)) { gotoAndPlay (1); _root.ball2.Xspeed = -Math.abs(_root.ball2.Xspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockbottom.hitTest(_root.ball2)) { gotoAndPlay (1); _root.ball2.Yspeed = Math.abs(_root.ball2.Yspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockright.hitTest(_root.ball2)) { gotoAndPlay (1); _root.ball2.Xspeed = Math.abs(_root.ball2.Xspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } } onClipEvent (enterFrame) { if (blocktop.hitTest(_root.ball3)) { _root.ball.Yspeed = -Math.abs(_root.ball.Yspeed); gotoAndPlay (1); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockleft.hitTest(_root.ball3)) { gotoAndPlay (1); _root.ball3.Xspeed = -Math.abs(_root.ball3.Xspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockbottom.hitTest(_root.ball3)) { gotoAndPlay (1); _root.ball3.Yspeed = Math.abs(_root.ball3.Yspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockright.hitTest(_root.ball3)) { gotoAndPlay (1); _root.ball3.Xspeed = Math.abs(_root.ball3.Xspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } } onClipEvent (enterFrame) { if (hitTest(_root.wahball) && (_currentframe == 1)) { gotoAndPlay (1); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (hitTest(_root.laser) && (_currentframe == 1)) { gotoAndPlay (1); _root.shootability = 1; tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } } onClipEvent (enterFrame) { if ((_root.lights == 0) && (_root.level == 5)) { _alpha = 0; } else if (_root.lights == 1) { _alpha = 100; } }
Symbol 228 MovieClip Frame 1
stop(); if (_root.level == 3) { gotoAndPlay (2); } if (_root.level == 4) { gotoAndPlay (2); } if (_root.level == 5) { gotoAndPlay (2); }
Instance of Symbol 10 MovieClip in Symbol 228 MovieClip Frame 1
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 10 MovieClip in Symbol 228 MovieClip Frame 50
onClipEvent (enterFrame) { if (blocktop.hitTest(_root.ball)) { _root.ball.Yspeed = -Math.abs(_root.ball.Yspeed); _root.lights = 0; } 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; } }
Symbol 237 MovieClip Frame 175
stop(); tellTarget ("_root") { gotoAndPlay (10); };
Symbol 238 MovieClip Frame 1
stop(); stop();
Instance of Symbol 185 MovieClip in Symbol 238 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) { _alpha = 0; } else if (_root.lights == 1) { _alpha = 100; } }
Instance of Symbol 185 MovieClip in Symbol 238 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 238 MovieClip Frame 8
stop();
Instance of Symbol 185 MovieClip in Symbol 239 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 (blocktop.hitTest(_root.ball1)) { _root.ball1.Yspeed = -Math.abs(_root.ball1.Yspeed); gotoAndPlay (1); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockleft.hitTest(_root.ball1)) { gotoAndPlay (1); _root.ball1.Xspeed = -Math.abs(_root.ball1.Xspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockbottom.hitTest(_root.ball1)) { gotoAndPlay (1); _root.ball1.Yspeed = Math.abs(_root.ball1.Yspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockright.hitTest(_root.ball1)) { gotoAndPlay (1); _root.ball1.Xspeed = Math.abs(_root.ball1.Xspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } } onClipEvent (enterFrame) { if (blocktop.hitTest(_root.ball2)) { _root.ball2.Yspeed = -Math.abs(_root.ball2Yspeed); gotoAndPlay (1); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockleft.hitTest(_root.ball2)) { gotoAndPlay (1); _root.ball2.Xspeed = -Math.abs(_root.ball2.Xspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockbottom.hitTest(_root.ball2)) { gotoAndPlay (1); _root.ball2.Yspeed = Math.abs(_root.ball2.Yspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockright.hitTest(_root.ball2)) { gotoAndPlay (1); _root.ball2.Xspeed = Math.abs(_root.ball2.Xspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } } onClipEvent (enterFrame) { if (blocktop.hitTest(_root.ball3)) { _root.ball.Yspeed = -Math.abs(_root.ball.Yspeed); gotoAndPlay (1); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockleft.hitTest(_root.ball3)) { gotoAndPlay (1); _root.ball3.Xspeed = -Math.abs(_root.ball3.Xspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockbottom.hitTest(_root.ball3)) { gotoAndPlay (1); _root.ball3.Yspeed = Math.abs(_root.ball3.Yspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockright.hitTest(_root.ball3)) { gotoAndPlay (1); _root.ball3.Xspeed = Math.abs(_root.ball3.Xspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } } onClipEvent (enterFrame) { if (hitTest(_root.wahball) && (_currentframe == 1)) { gotoAndPlay (1); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (hitTest(_root.laser) && (_currentframe == 1)) { gotoAndPlay (1); _root.shootability = 1; tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } } onClipEvent (enterFrame) { if ((_root.lights == 0) && (_root.level == 5)) { _alpha = 0; } else if (_root.lights == 1) { _alpha = 100; } }
Symbol 250 MovieClip Frame 175
stop(); tellTarget ("_root") { gotoAndPlay (12); };
Symbol 255 MovieClip Frame 1
stop(); _root.lights = 0;
Instance of Symbol 254 MovieClip in Symbol 255 MovieClip Frame 1
onClipEvent (enterFrame) { if (blocktop.hitTest(_root.ball)) { _root.ball.Yspeed = -Math.abs(_root.ball.Yspeed); _root.lights = 0; } 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; } }
Symbol 255 MovieClip Frame 2
stop(); _root.lights = 1;
Instance of Symbol 254 MovieClip in Symbol 255 MovieClip Frame 2
onClipEvent (enterFrame) { if (blocktop.hitTest(_root.ball)) { _root.ball.Yspeed = -Math.abs(_root.ball.Yspeed); _root.lights = 0; } 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; } } onClipEvent (enterFrame) { if (hitTest(_root.ball)) { _root.lights = 1; } }
Symbol 256 MovieClip Frame 1
stop(); _root.lights = 0;
Symbol 256 MovieClip Frame 2
stop(); _root.lights = 1;
Instance of Symbol 254 MovieClip in Symbol 256 MovieClip Frame 2
onClipEvent (enterFrame) { if (blocktop.hitTest(_root.ball)) { _root.ball.Yspeed = -Math.abs(_root.ball.Yspeed); _root.lights = 0; } 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; } } onClipEvent (enterFrame) { if (hitTest(_root.ball)) { _root.lights = 1; } }
Symbol 257 MovieClip Frame 1
stop(); stop();
Instance of Symbol 185 MovieClip in Symbol 257 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) { _alpha = 0; } else if (_root.lights == 1) { _alpha = 100; } }
Instance of Symbol 185 MovieClip in Symbol 257 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 257 MovieClip Frame 8
stop();
Instance of Symbol 185 MovieClip in Symbol 259 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 (blocktop.hitTest(_root.ball1)) { _root.ball1.Yspeed = -Math.abs(_root.ball1.Yspeed); gotoAndPlay (1); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockleft.hitTest(_root.ball1)) { gotoAndPlay (1); _root.ball1.Xspeed = -Math.abs(_root.ball1.Xspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockbottom.hitTest(_root.ball1)) { gotoAndPlay (1); _root.ball1.Yspeed = Math.abs(_root.ball1.Yspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockright.hitTest(_root.ball1)) { gotoAndPlay (1); _root.ball1.Xspeed = Math.abs(_root.ball1.Xspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } } onClipEvent (enterFrame) { if (blocktop.hitTest(_root.ball2)) { _root.ball2.Yspeed = -Math.abs(_root.ball2Yspeed); gotoAndPlay (1); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockleft.hitTest(_root.ball2)) { gotoAndPlay (1); _root.ball2.Xspeed = -Math.abs(_root.ball2.Xspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockbottom.hitTest(_root.ball2)) { gotoAndPlay (1); _root.ball2.Yspeed = Math.abs(_root.ball2.Yspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockright.hitTest(_root.ball2)) { gotoAndPlay (1); _root.ball2.Xspeed = Math.abs(_root.ball2.Xspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } } onClipEvent (enterFrame) { if (blocktop.hitTest(_root.ball3)) { _root.ball.Yspeed = -Math.abs(_root.ball.Yspeed); gotoAndPlay (1); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockleft.hitTest(_root.ball3)) { gotoAndPlay (1); _root.ball3.Xspeed = -Math.abs(_root.ball3.Xspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockbottom.hitTest(_root.ball3)) { gotoAndPlay (1); _root.ball3.Yspeed = Math.abs(_root.ball3.Yspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (blockright.hitTest(_root.ball3)) { gotoAndPlay (1); _root.ball3.Xspeed = Math.abs(_root.ball3.Xspeed); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } } onClipEvent (enterFrame) { if (hitTest(_root.wahball) && (_currentframe == 1)) { gotoAndPlay (1); tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } if (hitTest(_root.laser) && (_currentframe == 1)) { gotoAndPlay (1); _root.shootability = 1; tellTarget ("_root.sound") { gotoAndPlay ("bricksfall"); }; } } onClipEvent (enterFrame) { if ((_root.lights == 0) && (_root.level == 5)) { _alpha = 0; } else if (_root.lights == 1) { _alpha = 100; } }
Symbol 280 Button
on (release) { gotoAndStop (2); }
Symbol 288 Button
on (release) { gotoAndStop (2); }
Symbol 293 Button
on (release) { gotoAndStop (2); }

Library Items

Symbol 1 GraphicUsed by:10
Symbol 2 GraphicUsed by:3 163
Symbol 3 MovieClipUses:2Used by:10 254
Symbol 4 GraphicUsed by:5
Symbol 5 MovieClipUses:4Used by:10 254
Symbol 6 GraphicUsed by:7
Symbol 7 MovieClipUses:6Used by:10 254
Symbol 8 GraphicUsed by:9 162
Symbol 9 MovieClipUses:8Used by:10 254
Symbol 10 MovieClipUses:1 3 5 7 9Used by:11 192 228
Symbol 11 MovieClipUses:10Used by:Timeline
Symbol 12 FontUsed by:13 14 16 146 147 149 151 153 155 206 215 229 240 258 281
Symbol 13 EditableTextUses:12Used by:22
Symbol 14 EditableTextUses:12Used by:22
Symbol 15 SoundUsed by:22
Symbol 16 EditableTextUses:12Used by:22
Symbol 17 SoundUsed by:22 191 216 226 238 257
Symbol 18 SoundUsed by:22
Symbol 19 SoundUsed by:22
Symbol 20 SoundUsed by:22
Symbol 21 SoundUsed by:22
Symbol 22 MovieClipUses:13 14 15 16 17 18 19 20 21Used by:Timeline
Symbol 23 GraphicUsed by:24
Symbol 24 ButtonUses:23Used by:Timeline
Symbol 25 GraphicUsed by:26
Symbol 26 MovieClipUses:25Used by:Timeline
Symbol 27 GraphicUsed by:28
Symbol 28 MovieClipUses:27Used by:Timeline
Symbol 29 GraphicUsed by:30
Symbol 30 MovieClipUses:29Used by:Timeline
Symbol 31 GraphicUsed by:32
Symbol 32 MovieClipUses:31Used by:Timeline
Symbol 33 GraphicUsed by:45
Symbol 34 GraphicUsed by:45
Symbol 35 GraphicUsed by:45
Symbol 36 GraphicUsed by:45
Symbol 37 GraphicUsed by:45
Symbol 38 GraphicUsed by:45
Symbol 39 GraphicUsed by:45
Symbol 40 GraphicUsed by:45
Symbol 41 GraphicUsed by:45
Symbol 42 GraphicUsed by:45
Symbol 43 GraphicUsed by:45
Symbol 44 GraphicUsed by:45
Symbol 45 MovieClipUses:33 34 35 36 37 38 39 40 41 42 43 44Used by:47 185
Symbol 46 GraphicUsed by:47
Symbol 47 MovieClipUses:45 46Used by:Timeline
Symbol 48 FontUsed by:49 61 62 63
Symbol 49 TextUses:48Used by:Timeline
Symbol 50 GraphicUsed by:65
Symbol 51 GraphicUsed by:65
Symbol 52 GraphicUsed by:65
Symbol 53 GraphicUsed by:65
Symbol 54 GraphicUsed by:65
Symbol 55 GraphicUsed by:65
Symbol 56 GraphicUsed by:65
Symbol 57 GraphicUsed by:65
Symbol 58 GraphicUsed by:65
Symbol 59 GraphicUsed by:65
Symbol 60 GraphicUsed by:64 81 84
Symbol 61 TextUses:48Used by:64
Symbol 62 TextUses:48Used by:64
Symbol 63 TextUses:48Used by:64
Symbol 64 ButtonUses:60 61 62 63Used by:65
Symbol 65 MovieClipUses:50 51 52 53 54 55 56 57 58 59 64Used by:Timeline
Symbol 66 GraphicUsed by:67
Symbol 67 MovieClipUses:66Used by:Timeline
Symbol 68 GraphicUsed by:75
Symbol 69 GraphicUsed by:75
Symbol 70 GraphicUsed by:75
Symbol 71 GraphicUsed by:75
Symbol 72 GraphicUsed by:75
Symbol 73 GraphicUsed by:75
Symbol 74 GraphicUsed by:75
Symbol 75 MovieClipUses:68 69 70 71 72 73 74Used by:Timeline
Symbol 76 GraphicUsed by:Timeline
Symbol 77 FontUsed by:78 79 80 82 83 86 117 118 119 120 121 122 209 210 211 212 213 220 221 222 223 224 232 233 234 235 236 245 246 247 248 249
Symbol 78 TextUses:77Used by:Timeline
Symbol 79 TextUses:77Used by:81
Symbol 80 TextUses:77Used by:81
Symbol 81 ButtonUses:60 79 80Used by:Timeline
Symbol 82 TextUses:77Used by:84
Symbol 83 TextUses:77Used by:84
Symbol 84 ButtonUses:60 82 83Used by:Timeline
Symbol 85 GraphicUsed by:Timeline
Symbol 86 TextUses:77Used by:Timeline
Symbol 87 GraphicUsed by:88
Symbol 88 ButtonUses:87Used by:89
Symbol 89 MovieClipUses:88Used by:Timeline
Symbol 90 ShapeTweeningUsed by:114
Symbol 91 ShapeTweeningUsed by:114
Symbol 92 ShapeTweeningUsed by:114
Symbol 93 ShapeTweeningUsed by:114
Symbol 94 ShapeTweeningUsed by:114
Symbol 95 ShapeTweeningUsed by:114
Symbol 96 ShapeTweeningUsed by:114
Symbol 97 GraphicUsed by:114
Symbol 98 GraphicUsed by:114
Symbol 99 GraphicUsed by:114
Symbol 100 ShapeTweeningUsed by:114
Symbol 101 ShapeTweeningUsed by:114
Symbol 102 ShapeTweeningUsed by:114
Symbol 103 ShapeTweeningUsed by:114
Symbol 104 ShapeTweeningUsed by:114
Symbol 105 ShapeTweeningUsed by:114
Symbol 106 ShapeTweeningUsed by:114
Symbol 107 ShapeTweeningUsed by:114
Symbol 108 ShapeTweeningUsed by:114
Symbol 109 ShapeTweeningUsed by:114
Symbol 110 ShapeTweeningUsed by:114
Symbol 111 ShapeTweeningUsed by:114
Symbol 112 ShapeTweeningUsed by:114
Symbol 113 GraphicUsed by:114
Symbol 114 MovieClipUses:90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113Used by:Timeline
Symbol 115 BitmapUsed by:116
Symbol 116 GraphicUses:115Used by:Timeline
Symbol 117 TextUses:77Used by:123
Symbol 118 TextUses:77Used by:123
Symbol 119 TextUses:77Used by:123
Symbol 120 TextUses:77Used by:123
Symbol 121 TextUses:77Used by:123
Symbol 122 TextUses:77Used by:123
Symbol 123 MovieClipUses:117 118 119 120 121 122Used by:Timeline
Symbol 124 GraphicUsed by:Timeline
Symbol 125 GraphicUsed by:145
Symbol 126 GraphicUsed by:145
Symbol 127 GraphicUsed by:145
Symbol 128 GraphicUsed by:145
Symbol 129 GraphicUsed by:145
Symbol 130 GraphicUsed by:145
Symbol 131 GraphicUsed by:145
Symbol 132 GraphicUsed by:145
Symbol 133 GraphicUsed by:145
Symbol 134 GraphicUsed by:145
Symbol 135 GraphicUsed by:145
Symbol 136 GraphicUsed by:145
Symbol 137 GraphicUsed by:145
Symbol 138 GraphicUsed by:145
Symbol 139 GraphicUsed by:145
Symbol 140 GraphicUsed by:145
Symbol 141 GraphicUsed by:145
Symbol 142 GraphicUsed by:145
Symbol 143 GraphicUsed by:145
Symbol 144 GraphicUsed by:145
Symbol 145 MovieClipUses:125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144Used by:Timeline
Symbol 146 EditableTextUses:12Used by:157
Symbol 147 EditableTextUses:12Used by:157
Symbol 148 SoundUsed by:157
Symbol 149 EditableTextUses:12Used by:157
Symbol 150 SoundUsed by:157
Symbol 151 EditableTextUses:12Used by:157
Symbol 152 SoundUsed by:157
Symbol 153 EditableTextUses:12Used by:157
Symbol 154 SoundUsed by:157
Symbol 155 EditableTextUses:12Used by:157
Symbol 156 SoundUsed by:157
Symbol 157 MovieClipUses:146 147 148 149 150 151 152 153 154 155 156Used by:Timeline
Symbol 158 FontUsed by:159
Symbol 159 EditableTextUses:158Used by:160
Symbol 160 MovieClipUses:159Used by:Timeline
Symbol 161 GraphicUsed by:185
Symbol 162 MovieClipUses:8Used by:185  Timeline
Symbol 163 MovieClipUses:2Used by:185  Timeline
Symbol 164 GraphicUsed by:165
Symbol 165 MovieClipUses:164Used by:185  Timeline
Symbol 166 GraphicUsed by:167
Symbol 167 MovieClipUses:166Used by:185  Timeline
Symbol 168 GraphicUsed by:185
Symbol 169 GraphicUsed by:185
Symbol 170 GraphicUsed by:185
Symbol 171 GraphicUsed by:172
Symbol 172 MovieClipUses:171Used by:185
Symbol 173 GraphicUsed by:174
Symbol 174 MovieClipUses:173Used by:185
Symbol 175 GraphicUsed by:176
Symbol 176 MovieClipUses:175Used by:185
Symbol 177 GraphicUsed by:179
Symbol 178 GraphicUsed by:179
Symbol 179 MovieClipUses:177 178Used by:185  Timeline
Symbol 180 GraphicUsed by:181
Symbol 181 MovieClipUses:180Used by:185
Symbol 182 FontUsed by:183
Symbol 183 TextUses:182Used by:184
Symbol 184 MovieClipUses:183Used by:185
Symbol 185 MovieClipUses:161 162 163 165 167 168 169 170 172 174 176 45 179 181 184Used by:190 191 216 217 226 227 238 239 257 259
Symbol 186 GraphicUsed by:189
Symbol 187 GraphicUsed by:189
Symbol 188 GraphicUsed by:189
Symbol 189 MovieClipUses:186 187 188Used by:191 216 226 238 257
Symbol 190 MovieClipUses:185Used by:191 216 226 238 257  Timeline
Symbol 191 MovieClipUses:185 189 17 190Used by:Timeline
Symbol 192 MovieClipUses:10Used by:Timeline
Symbol 193 FontUsed by:194 197 200 203
Symbol 194 TextUses:193Used by:195
Symbol 195 MovieClipUses:194Used by:196
Symbol 196 MovieClipUses:195Used by:Timeline
Symbol 197 TextUses:193Used by:198
Symbol 198 MovieClipUses:197Used by:199
Symbol 199 MovieClipUses:198Used by:Timeline
Symbol 200 TextUses:193Used by:201
Symbol 201 MovieClipUses:200Used by:202
Symbol 202 MovieClipUses:201Used by:Timeline
Symbol 203 TextUses:193Used by:204
Symbol 204 MovieClipUses:203Used by:205
Symbol 205 MovieClipUses:204Used by:Timeline
Symbol 206 EditableTextUses:12Used by:Timeline
Symbol 207 BitmapUsed by:208
Symbol 208 GraphicUses:207Used by:Timeline
Symbol 209 TextUses:77Used by:214
Symbol 210 TextUses:77Used by:214
Symbol 211 TextUses:77Used by:214
Symbol 212 TextUses:77Used by:214
Symbol 213 TextUses:77Used by:214
Symbol 214 MovieClipUses:209 210 211 212 213Used by:Timeline
Symbol 215 EditableTextUses:12Used by:Timeline
Symbol 216 MovieClipUses:185 189 17 190Used by:Timeline
Symbol 217 MovieClipUses:185Used by:Timeline
Symbol 218 BitmapUsed by:219
Symbol 219 GraphicUses:218Used by:Timeline
Symbol 220 TextUses:77Used by:225
Symbol 221 TextUses:77Used by:225
Symbol 222 TextUses:77Used by:225
Symbol 223 TextUses:77Used by:225
Symbol 224 TextUses:77Used by:225
Symbol 225 MovieClipUses:220 221 222 223 224Used by:Timeline
Symbol 226 MovieClipUses:185 189 17 190Used by:Timeline
Symbol 227 MovieClipUses:185Used by:Timeline
Symbol 228 MovieClipUses:10Used by:Timeline
Symbol 229 EditableTextUses:12Used by:Timeline
Symbol 230 BitmapUsed by:231
Symbol 231 GraphicUses:230Used by:Timeline
Symbol 232 TextUses:77Used by:237
Symbol 233 TextUses:77Used by:237
Symbol 234 TextUses:77Used by:237
Symbol 235 TextUses:77Used by:237
Symbol 236 TextUses:77Used by:237
Symbol 237 MovieClipUses:232 233 234 235 236Used by:Timeline
Symbol 238 MovieClipUses:185 189 17 190Used by:Timeline
Symbol 239 MovieClipUses:185Used by:Timeline
Symbol 240 EditableTextUses:12Used by:Timeline
Symbol 241 BitmapUsed by:242
Symbol 242 GraphicUses:241Used by:243
Symbol 243 MovieClipUses:242Used by:Timeline
Symbol 244 FontUsed by:245
Symbol 245 TextUses:77 244Used by:250
Symbol 246 TextUses:77Used by:250
Symbol 247 TextUses:77Used by:250
Symbol 248 TextUses:77Used by:250
Symbol 249 TextUses:77Used by:250
Symbol 250 MovieClipUses:245 246 247 248 249Used by:Timeline
Symbol 251 MovieClipUsed by:Timeline
Symbol 252 GraphicUsed by:254
Symbol 253 GraphicUsed by:254
Symbol 254 MovieClipUses:252 3 5 7 9 253Used by:255 256
Symbol 255 MovieClipUses:254Used by:256
Symbol 256 MovieClipUses:255 254Used by:Timeline
Symbol 257 MovieClipUses:185 189 17 190Used by:Timeline
Symbol 258 EditableTextUses:12Used by:Timeline
Symbol 259 MovieClipUses:185Used by:Timeline
Symbol 260 GraphicUsed by:Timeline
Symbol 261 FontUsed by:262
Symbol 262 TextUses:261Used by:Timeline
Symbol 263 FontUsed by:264
Symbol 264 TextUses:263Used by:Timeline
Symbol 265 FontUsed by:266
Symbol 266 TextUses:265Used by:Timeline
Symbol 267 FontUsed by:268 269 270 271 272 273 274 275 276 277 279 282 283
Symbol 268 TextUses:267Used by:Timeline
Symbol 269 TextUses:267Used by:Timeline
Symbol 270 TextUses:267Used by:Timeline
Symbol 271 TextUses:267Used by:Timeline
Symbol 272 TextUses:267Used by:Timeline
Symbol 273 TextUses:267Used by:Timeline
Symbol 274 TextUses:267Used by:Timeline
Symbol 275 TextUses:267Used by:Timeline
Symbol 276 TextUses:267Used by:Timeline
Symbol 277 TextUses:267Used by:Timeline
Symbol 278 GraphicUsed by:280
Symbol 279 TextUses:267Used by:280
Symbol 280 ButtonUses:278 279Used by:Timeline
Symbol 281 TextUses:12Used by:Timeline
Symbol 282 TextUses:267Used by:Timeline
Symbol 283 TextUses:267Used by:Timeline
Symbol 284 FontUsed by:285 287 290 292
Symbol 285 TextUses:284Used by:Timeline
Symbol 286 GraphicUsed by:288
Symbol 287 TextUses:284Used by:288
Symbol 288 ButtonUses:286 287Used by:Timeline
Symbol 289 GraphicUsed by:Timeline
Symbol 290 TextUses:284Used by:Timeline
Symbol 291 GraphicUsed by:293
Symbol 292 TextUses:284Used by:293
Symbol 293 ButtonUses:291 292Used by:Timeline

Instance Names

"sound"Frame 1Symbol 22 MovieClip
"leftwall"Frame 1Symbol 26 MovieClip
"rightwall"Frame 1Symbol 28 MovieClip
"upperwall"Frame 1Symbol 30 MovieClip
"servewall"Frame 1Symbol 32 MovieClip
"paddle"Frame 1Symbol 47 MovieClip
"laser"Frame 1Symbol 67 MovieClip
"ball"Frame 1Symbol 75 MovieClip
"balls"Frame 3Symbol 145 MovieClip
"sound"Frame 4Symbol 22 MovieClip
"music"Frame 4Symbol 157 MovieClip
"4"Frame 4Symbol 190 MovieClip
"11"Frame 4Symbol 190 MovieClip
"leftwall"Frame 4Symbol 26 MovieClip
"rightwall"Frame 4Symbol 28 MovieClip
"upperwall"Frame 4Symbol 30 MovieClip
"speedup"Frame 4Symbol 196 MovieClip
"slowdown"Frame 4Symbol 199 MovieClip
"servewall"Frame 4Symbol 32 MovieClip
"smallpaddle"Frame 4Symbol 202 MovieClip
"largepaddle"Frame 4Symbol 205 MovieClip
"paddle"Frame 4Symbol 47 MovieClip
"ball"Frame 4Symbol 75 MovieClip
"ball3"Frame 4Symbol 75 MovieClip
"ball2"Frame 4Symbol 75 MovieClip
"ball1"Frame 4Symbol 75 MovieClip
"wahball"Frame 4Symbol 179 MovieClip
"laser"Frame 4Symbol 67 MovieClip
"sound"Frame 6Symbol 22 MovieClip
"score"Frame 6Symbol 160 MovieClip
"speedup"Frame 6Symbol 196 MovieClip
"slowdown"Frame 6Symbol 199 MovieClip
"leftwall"Frame 6Symbol 26 MovieClip
"rightwall"Frame 6Symbol 28 MovieClip
"upperwall"Frame 6Symbol 30 MovieClip
"servewall"Frame 6Symbol 32 MovieClip
"smallpaddle"Frame 6Symbol 202 MovieClip
"largepaddle"Frame 6Symbol 205 MovieClip
"paddle"Frame 6Symbol 47 MovieClip
"wahball"Frame 6Symbol 179 MovieClip
"laser"Frame 6Symbol 67 MovieClip
"ball"Frame 6Symbol 75 MovieClip
"ball3"Frame 6Symbol 75 MovieClip
"ball2"Frame 6Symbol 75 MovieClip
"ball1"Frame 6Symbol 75 MovieClip
"score"Frame 8Symbol 160 MovieClip
"leftwall"Frame 8Symbol 26 MovieClip
"rightwall"Frame 8Symbol 28 MovieClip
"upperwall"Frame 8Symbol 30 MovieClip
"speedup"Frame 8Symbol 196 MovieClip
"slowdown"Frame 8Symbol 199 MovieClip
"servewall"Frame 8Symbol 32 MovieClip
"smallpaddle"Frame 8Symbol 202 MovieClip
"largepaddle"Frame 8Symbol 205 MovieClip
"paddle"Frame 8Symbol 47 MovieClip
"wahball"Frame 8Symbol 179 MovieClip
"laser"Frame 8Symbol 67 MovieClip
"ball"Frame 8Symbol 75 MovieClip
"ball3"Frame 8Symbol 75 MovieClip
"ball2"Frame 8Symbol 75 MovieClip
"ball1"Frame 8Symbol 75 MovieClip
"score"Frame 10Symbol 160 MovieClip
"leftwall"Frame 10Symbol 26 MovieClip
"rightwall"Frame 10Symbol 28 MovieClip
"upperwall"Frame 10Symbol 30 MovieClip
"speedup"Frame 10Symbol 196 MovieClip
"slowdown"Frame 10Symbol 199 MovieClip
"servewall"Frame 10Symbol 32 MovieClip
"smallpaddle"Frame 10Symbol 202 MovieClip
"largepaddle"Frame 10Symbol 205 MovieClip
"paddle"Frame 10Symbol 47 MovieClip
"wahball"Frame 10Symbol 179 MovieClip
"laser"Frame 10Symbol 67 MovieClip
"ball"Frame 10Symbol 75 MovieClip
"ball3"Frame 10Symbol 75 MovieClip
"ball2"Frame 10Symbol 75 MovieClip
"ball1"Frame 10Symbol 75 MovieClip
"speedup"Frame 12Symbol 196 MovieClip
"slowdown"Frame 12Symbol 199 MovieClip
"leftwall"Frame 12Symbol 26 MovieClip
"rightwall"Frame 12Symbol 28 MovieClip
"upperwall"Frame 12Symbol 30 MovieClip
"servewall"Frame 12Symbol 32 MovieClip
"smallpaddle"Frame 12Symbol 202 MovieClip
"largepaddle"Frame 12Symbol 205 MovieClip
"paddle"Frame 12Symbol 47 MovieClip
"wahball"Frame 12Symbol 179 MovieClip
"laser"Frame 12Symbol 67 MovieClip
"ball"Frame 12Symbol 75 MovieClip
"ball3"Frame 12Symbol 75 MovieClip
"ball2"Frame 12Symbol 75 MovieClip
"ball1"Frame 12Symbol 75 MovieClip
"sound"Frame 20Symbol 22 MovieClip
"ball"Frame 21Symbol 75 MovieClip
"music"Frame 21Symbol 157 MovieClip
"ball"Frame 22Symbol 75 MovieClip
"blocktop"Frame 22Symbol 162 MovieClip
"blockbottom"Frame 22Symbol 163 MovieClip
"blockleft"Frame 22Symbol 165 MovieClip
"blockright"Frame 22Symbol 167 MovieClip
"blocktop"Frame 22Symbol 162 MovieClip
"blockbottom"Frame 22Symbol 163 MovieClip
"blockleft"Frame 22Symbol 165 MovieClip
"blockright"Frame 22Symbol 167 MovieClip
"blockbottom"Symbol 10 MovieClip Frame 1Symbol 3 MovieClip
"blockleft"Symbol 10 MovieClip Frame 1Symbol 5 MovieClip
"blockright"Symbol 10 MovieClip Frame 1Symbol 7 MovieClip
"blocktop"Symbol 10 MovieClip Frame 1Symbol 9 MovieClip
"blocktop"Symbol 185 MovieClip Frame 1Symbol 162 MovieClip
"blockbottom"Symbol 185 MovieClip Frame 1Symbol 163 MovieClip
"blockleft"Symbol 185 MovieClip Frame 1Symbol 165 MovieClip
"blockright"Symbol 185 MovieClip Frame 1Symbol 167 MovieClip
"speedupcounter"Symbol 196 MovieClip Frame 2Symbol 195 MovieClip
"slowdowncounter"Symbol 199 MovieClip Frame 2Symbol 198 MovieClip
"counter"Symbol 202 MovieClip Frame 2Symbol 201 MovieClip
"counter"Symbol 205 MovieClip Frame 2Symbol 204 MovieClip
"blockbottom"Symbol 254 MovieClip Frame 1Symbol 3 MovieClip
"blockleft"Symbol 254 MovieClip Frame 1Symbol 5 MovieClip
"blockright"Symbol 254 MovieClip Frame 1Symbol 7 MovieClip
"blocktop"Symbol 254 MovieClip Frame 1Symbol 9 MovieClip

Special Tags

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

Labels

"blip"Symbol 22 MovieClip Frame 2
"bricksfall"Symbol 22 MovieClip Frame 6
"shrink"Symbol 22 MovieClip Frame 26
"grow"Symbol 22 MovieClip Frame 37
"laserfire"Symbol 22 MovieClip Frame 52
"loseball"Symbol 22 MovieClip Frame 65
"maxit"Symbol 157 MovieClip Frame 2
"neo"Symbol 157 MovieClip Frame 3
"intruder"Symbol 157 MovieClip Frame 4
"mintruder"Symbol 157 MovieClip Frame 5
"shadow"Symbol 157 MovieClip Frame 6
"high gravity"Symbol 185 MovieClip Frame 10
"low gravity"Symbol 185 MovieClip Frame 150
"multiballs"Symbol 185 MovieClip Frame 280
"smallpaddle"Symbol 185 MovieClip Frame 440
"largepaddle"Symbol 185 MovieClip Frame 590
"wahball"Symbol 185 MovieClip Frame 695
"gun"Symbol 185 MovieClip Frame 700
"1up"Symbol 185 MovieClip Frame 701

Dynamic Text Variables

TextField8Symbol 13 EditableText"sound"
TextField6Symbol 14 EditableText"sound"
TextField6Symbol 16 EditableText"sound"
TextField12Symbol 146 EditableText"Music"
TextField12Symbol 147 EditableText"Music"
TextField12Symbol 149 EditableText"Music"
TextField12Symbol 151 EditableText"Music"
TextField12Symbol 153 EditableText"Music"
TextField12Symbol 155 EditableText"Music"
_root.scoreSymbol 159 EditableText"0"
_root.lasersSymbol 206 EditableText"0"
_root.lasersSymbol 215 EditableText"0"
_root.lasersSymbol 229 EditableText"0"
_root.lasersSymbol 240 EditableText"0"
_root.lasersSymbol 258 EditableText"0"




http://swfchan.com/10/47983/info.shtml
Created: 30/4 -2019 19:41:39 Last modified: 30/4 -2019 19:41:39 Server time: 18/05 -2024 13:09:20