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

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

357899518.swf

This is the info page for
Flash #13716

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


Text
Visit ArmorGames.com

D.P Games

D.P Games

Elasticity

Instructions:
- The open circle follows your mouse while inside the box.
- The ball swings around the open circle.
- Swing the ball and click anywhere to release it and try and hit the red box
OR
Click and hold and then swing the ball and release to release the ball
- The ball will only roll/bounce on platforms on the white side
- If you fall to the bottom you restart.
- If a level is too hard press skip.
- If you are having trouble practice :
Getting a good swing going
and
Releasing the ball at just the right time
- In challenge mode collect all the stars before you can hit the red box.

CONTINUE

Music:
Unfinished Trance
by Dimrain47

Level 1 - The Drop

SKIP

MUTE

Level 2 - Up

Level 3 - Easy

Level 4 - Distance

Level 5 - Heights

Level 6 - Rollin'

Level 7 - Observer

Level 8 - Just over

Level 9 - Rebound

Level 10 - The Gap

Level 11 - Boost

Level 12 - Up and away

Level 13 - Use em'

Level 14 - Squeeze

Level 15 - Timing

Challenge Mode

Level 1C - The Drop

Level 2C - Up

Level 3C - Easy

Level 4C - Distance

Level 5C - Heights

Level 6C - Rollin'

Level 7C - Observer

Level 8C - Just over

Level 9C - Rebound

Level 10C - The Gap

Level 11C - Boost

Level 12C - Up and away

Level 13C - Use em'

Level 14C - Squeeze

Level 15C - Timing

YOU WIN

MENU

ActionScript [AS1/AS2]

Frame 1
stop();
Frame 2
stop();
Instance of Symbol 29 MovieClip in Frame 2
onClipEvent (enterFrame) { this.onPress = function () { getURL ("http://www.armorgames.com", "_blank"); }; }
Instance of Symbol 36 MovieClip in Frame 3
on (release) { getURL ("http://www.dp-games.com/", "_blank"); }
Frame 86
stop();
Instance of Symbol 45 MovieClip in Frame 86
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Frame 87
stop();
Instance of Symbol 52 MovieClip in Frame 87
onClipEvent (enterFrame) { if (this.hitTest(this._parent.ball)) { _root.gotoAndPlay(_root._currentframe + 1); } }
Instance of Symbol 54 MovieClip "ball" in Frame 87
onClipEvent (load) { inertia = 0.9; ki = 0.1; vx = 0; vy = 0; _y = this._parent.cursor._y; _x = this._parent.cursor._x; trail = true; grav = 1; } onClipEvent (enterFrame) { if (trail == true) { x = (-_x) + this._parent.cursor._x; y = (-_y) + this._parent.cursor._y; vx = (vx * inertia) + (x * ki); vy = (vy * inertia) + (y * ki); _x = (_x + vx); _y = (_y + vy); } if (trail == false) { i = 1; while (i <= 10) { bounds = _root["wall" + i].getBounds(_root); if ((_x > bounds.xMin) && (_x < bounds.xMax)) { x = _x - _root["wall" + i]._x; y = _y - _root["wall" + i]._y; angle = (_root["wall" + i]._rotation * Math.PI) / 180; x1 = (Math.cos(angle) * x) + (Math.sin(angle) * y); y1 = (Math.cos(angle) * y) - (Math.sin(angle) * x); vx1 = (Math.cos(angle) * vx) + (Math.sin(angle) * vy); vy1 = (Math.cos(angle) * vy) - (Math.sin(angle) * vx); if ((y1 > (-(_height / 2))) && (y1 < (vy1 - (_height / 2)))) { y1 = -(_height / 2); vy1 = vy1 * -0.8; x = (Math.cos(angle) * x1) - (Math.sin(angle) * y1); y = (Math.cos(angle) * y1) + (Math.sin(angle) * x1); vx = (Math.cos(angle) * vx1) - (Math.sin(angle) * vy1); vy = (Math.cos(angle) * vy1) + (Math.sin(angle) * vx1); _x = (_root["wall" + i]._x + x); _y = (_root["wall" + i]._y + y); } } i++; } vy = vy + grav; this._y = this._y + vy; vx = vx / 1.012; if (Math.abs(vx) < 0.2) { xspeed = 0; } this._x = this._x + vx; } if (_x < 0) { _x = 8; vx = vx * -1; } if (_x > Stage.width) { _x = (Stage.width - 8); vx = vx * -1; } if (_y < 0) { _y = 8; vy = vy * -1; } if (_y > Stage.height) { _y = this._parent.cursor._y; _x = this._parent.cursor._x; vx = 0; vy = 0; trail = true; } }
Instance of Symbol 55 MovieClip in Frame 87
on (release) { this._parent.ball.trail = false; }
Instance of Symbol 58 MovieClip in Frame 87
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Instance of Symbol 60 MovieClip in Frame 87
on (release) { this.gotoAndPlay(2); }
Instance of Symbol 62 MovieClip "cursor" in Frame 87
onClipEvent (load) { Mouse.hide(); inside = true; } onClipEvent (enterFrame) { if (inside == true) { _x = _root._xmouse; _y = _root._ymouse; } if (_x < this._parent.box._x) { _x = (this._parent.box._x + 5); } if (_x > (this._parent.box._x + this._parent.box._width)) { _x = (this._parent.box._x + (this._parent.box._width - 6)); } if (_y > this._parent.box._y) { _y = (this._parent.box._y - 5); } if (_y < (this._parent.box._y - this._parent.box._height)) { _y = (this._parent.box._y - (this._parent.box._height - 6)); } }
Instance of Symbol 64 MovieClip in Frame 87
onClipEvent (enterFrame) { if (this.hitTest(this._parent.box)) { this._parent.cursor.inside = true; } else { this._parent.cursor.inside = false; } _x = _root._xmouse; _y = _root._ymouse; }
Frame 88
stop();
Instance of Symbol 52 MovieClip in Frame 88
onClipEvent (enterFrame) { if (this.hitTest(this._parent.ball)) { _root.gotoAndPlay(_root._currentframe + 1); } }
Instance of Symbol 54 MovieClip "ball" in Frame 88
onClipEvent (load) { inertia = 0.9; ki = 0.1; vx = 0; vy = 0; _y = this._parent.cursor._y; _x = this._parent.cursor._x; trail = true; grav = 1; } onClipEvent (enterFrame) { if (trail == true) { x = (-_x) + this._parent.cursor._x; y = (-_y) + this._parent.cursor._y; vx = (vx * inertia) + (x * ki); vy = (vy * inertia) + (y * ki); _x = (_x + vx); _y = (_y + vy); } if (trail == false) { i = 1; while (i <= 10) { bounds = _root["wall" + i].getBounds(_root); if ((_x > bounds.xMin) && (_x < bounds.xMax)) { x = _x - _root["wall" + i]._x; y = _y - _root["wall" + i]._y; angle = (_root["wall" + i]._rotation * Math.PI) / 180; x1 = (Math.cos(angle) * x) + (Math.sin(angle) * y); y1 = (Math.cos(angle) * y) - (Math.sin(angle) * x); vx1 = (Math.cos(angle) * vx) + (Math.sin(angle) * vy); vy1 = (Math.cos(angle) * vy) - (Math.sin(angle) * vx); if ((y1 > (-(_height / 2))) && (y1 < (vy1 - (_height / 2)))) { y1 = -(_height / 2); vy1 = vy1 * -0.8; x = (Math.cos(angle) * x1) - (Math.sin(angle) * y1); y = (Math.cos(angle) * y1) + (Math.sin(angle) * x1); vx = (Math.cos(angle) * vx1) - (Math.sin(angle) * vy1); vy = (Math.cos(angle) * vy1) + (Math.sin(angle) * vx1); _x = (_root["wall" + i]._x + x); _y = (_root["wall" + i]._y + y); } } i++; } vy = vy + grav; this._y = this._y + vy; vx = vx / 1.012; if (Math.abs(vx) < 0.2) { xspeed = 0; } this._x = this._x + vx; } if (_x < 0) { _x = 8; vx = vx * -1; } if (_x > Stage.width) { _x = (Stage.width - 8); vx = vx * -1; } if (_y < 0) { _y = 8; vy = vy * -1; } if (trail == false) { if (_y > Stage.height) { _y = this._parent.cursor._y; _x = this._parent.cursor._x; vx = 0; vy = 0; trail = true; } } }
Instance of Symbol 55 MovieClip in Frame 88
on (release) { this._parent.ball.trail = false; }
Instance of Symbol 58 MovieClip in Frame 88
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Instance of Symbol 60 MovieClip in Frame 88
on (release) { this.gotoAndPlay(2); }
Instance of Symbol 62 MovieClip "cursor" in Frame 88
onClipEvent (load) { Mouse.hide(); inside = true; } onClipEvent (enterFrame) { if (inside == true) { _x = _root._xmouse; _y = _root._ymouse; } if (_x < this._parent.box._x) { _x = (this._parent.box._x + 5); } if (_x > (this._parent.box._x + this._parent.box._width)) { _x = (this._parent.box._x + (this._parent.box._width - 6)); } if (_y > this._parent.box._y) { _y = (this._parent.box._y - 5); } if (_y < (this._parent.box._y - this._parent.box._height)) { _y = (this._parent.box._y - (this._parent.box._height - 6)); } }
Instance of Symbol 64 MovieClip in Frame 88
onClipEvent (enterFrame) { if (this.hitTest(this._parent.box)) { this._parent.cursor.inside = true; } else { this._parent.cursor.inside = false; } _x = _root._xmouse; _y = _root._ymouse; }
Frame 89
stop();
Instance of Symbol 52 MovieClip in Frame 89
onClipEvent (enterFrame) { if (this.hitTest(this._parent.ball)) { _root.gotoAndPlay(_root._currentframe + 1); } }
Instance of Symbol 54 MovieClip "ball" in Frame 89
onClipEvent (load) { inertia = 0.9; ki = 0.1; vx = 0; vy = 0; _y = this._parent.cursor._y; _x = this._parent.cursor._x; trail = true; grav = 1; } onClipEvent (enterFrame) { if (trail == true) { x = (-_x) + this._parent.cursor._x; y = (-_y) + this._parent.cursor._y; vx = (vx * inertia) + (x * ki); vy = (vy * inertia) + (y * ki); _x = (_x + vx); _y = (_y + vy); } if (trail == false) { i = 1; while (i <= 10) { bounds = _root["wall" + i].getBounds(_root); if ((_x > bounds.xMin) && (_x < bounds.xMax)) { x = _x - _root["wall" + i]._x; y = _y - _root["wall" + i]._y; angle = (_root["wall" + i]._rotation * Math.PI) / 180; x1 = (Math.cos(angle) * x) + (Math.sin(angle) * y); y1 = (Math.cos(angle) * y) - (Math.sin(angle) * x); vx1 = (Math.cos(angle) * vx) + (Math.sin(angle) * vy); vy1 = (Math.cos(angle) * vy) - (Math.sin(angle) * vx); if ((y1 > (-(_height / 2))) && (y1 < (vy1 - (_height / 2)))) { y1 = -(_height / 2); vy1 = vy1 * -0.8; x = (Math.cos(angle) * x1) - (Math.sin(angle) * y1); y = (Math.cos(angle) * y1) + (Math.sin(angle) * x1); vx = (Math.cos(angle) * vx1) - (Math.sin(angle) * vy1); vy = (Math.cos(angle) * vy1) + (Math.sin(angle) * vx1); _x = (_root["wall" + i]._x + x); _y = (_root["wall" + i]._y + y); } } i++; } vy = vy + grav; this._y = this._y + vy; vx = vx / 1.012; if (Math.abs(vx) < 0.2) { xspeed = 0; } this._x = this._x + vx; } if (_x < 0) { _x = 8; vx = vx * -1; } if (_x > Stage.width) { _x = (Stage.width - 8); vx = vx * -1; } if (_y < 0) { _y = 8; vy = vy * -1; } if (trail == false) { if (_y > Stage.height) { _y = this._parent.cursor._y; _x = this._parent.cursor._x; vx = 0; vy = 0; trail = true; } } }
Instance of Symbol 55 MovieClip in Frame 89
on (release) { this._parent.ball.trail = false; }
Instance of Symbol 58 MovieClip in Frame 89
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Instance of Symbol 60 MovieClip in Frame 89
on (release) { this.gotoAndPlay(2); }
Instance of Symbol 62 MovieClip "cursor" in Frame 89
onClipEvent (load) { Mouse.hide(); inside = true; } onClipEvent (enterFrame) { if (inside == true) { _x = _root._xmouse; _y = _root._ymouse; } if (_x < this._parent.box._x) { _x = (this._parent.box._x + 5); } if (_x > (this._parent.box._x + this._parent.box._width)) { _x = (this._parent.box._x + (this._parent.box._width - 6)); } if (_y > this._parent.box._y) { _y = (this._parent.box._y - 5); } if (_y < (this._parent.box._y - this._parent.box._height)) { _y = (this._parent.box._y - (this._parent.box._height - 6)); } }
Instance of Symbol 64 MovieClip in Frame 89
onClipEvent (enterFrame) { if (this.hitTest(this._parent.box)) { this._parent.cursor.inside = true; } else { this._parent.cursor.inside = false; } _x = _root._xmouse; _y = _root._ymouse; }
Frame 90
stop();
Instance of Symbol 52 MovieClip in Frame 90
onClipEvent (enterFrame) { if (this.hitTest(this._parent.ball)) { _root.gotoAndPlay(_root._currentframe + 1); } }
Instance of Symbol 54 MovieClip "ball" in Frame 90
onClipEvent (load) { inertia = 0.9; ki = 0.1; vx = 0; vy = 0; _y = this._parent.cursor._y; _x = this._parent.cursor._x; trail = true; grav = 1; } onClipEvent (enterFrame) { if (trail == true) { x = (-_x) + this._parent.cursor._x; y = (-_y) + this._parent.cursor._y; vx = (vx * inertia) + (x * ki); vy = (vy * inertia) + (y * ki); _x = (_x + vx); _y = (_y + vy); } if (trail == false) { i = 1; while (i <= 10) { bounds = _root["wall" + i].getBounds(_root); if ((_x > bounds.xMin) && (_x < bounds.xMax)) { x = _x - _root["wall" + i]._x; y = _y - _root["wall" + i]._y; angle = (_root["wall" + i]._rotation * Math.PI) / 180; x1 = (Math.cos(angle) * x) + (Math.sin(angle) * y); y1 = (Math.cos(angle) * y) - (Math.sin(angle) * x); vx1 = (Math.cos(angle) * vx) + (Math.sin(angle) * vy); vy1 = (Math.cos(angle) * vy) - (Math.sin(angle) * vx); if ((y1 > (-(_height / 2))) && (y1 < (vy1 - (_height / 2)))) { y1 = -(_height / 2); vy1 = vy1 * -0.8; x = (Math.cos(angle) * x1) - (Math.sin(angle) * y1); y = (Math.cos(angle) * y1) + (Math.sin(angle) * x1); vx = (Math.cos(angle) * vx1) - (Math.sin(angle) * vy1); vy = (Math.cos(angle) * vy1) + (Math.sin(angle) * vx1); _x = (_root["wall" + i]._x + x); _y = (_root["wall" + i]._y + y); } } i++; } vy = vy + grav; this._y = this._y + vy; vx = vx / 1.012; if (Math.abs(vx) < 0.2) { xspeed = 0; } this._x = this._x + vx; } if (_x < 0) { _x = 8; vx = vx * -1; } if (_x > Stage.width) { _x = (Stage.width - 8); vx = vx * -1; } if (_y < 0) { _y = 8; vy = vy * -1; } if (_y > Stage.height) { _y = this._parent.cursor._y; _x = this._parent.cursor._x; vx = 0; vy = 0; trail = true; } }
Instance of Symbol 55 MovieClip in Frame 90
on (release) { this._parent.ball.trail = false; }
Instance of Symbol 58 MovieClip in Frame 90
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Instance of Symbol 60 MovieClip in Frame 90
on (release) { this.gotoAndPlay(2); }
Instance of Symbol 62 MovieClip "cursor" in Frame 90
onClipEvent (load) { Mouse.hide(); inside = true; } onClipEvent (enterFrame) { if (inside == true) { _x = _root._xmouse; _y = _root._ymouse; } if (_x < this._parent.box._x) { _x = (this._parent.box._x + 5); } if (_x > (this._parent.box._x + this._parent.box._width)) { _x = (this._parent.box._x + (this._parent.box._width - 6)); } if (_y > this._parent.box._y) { _y = (this._parent.box._y - 5); } if (_y < (this._parent.box._y - this._parent.box._height)) { _y = (this._parent.box._y - (this._parent.box._height - 6)); } }
Instance of Symbol 64 MovieClip in Frame 90
onClipEvent (enterFrame) { if (this.hitTest(this._parent.box)) { this._parent.cursor.inside = true; } else { this._parent.cursor.inside = false; } _x = _root._xmouse; _y = _root._ymouse; }
Frame 91
stop();
Instance of Symbol 52 MovieClip in Frame 91
onClipEvent (enterFrame) { if (this.hitTest(this._parent.ball)) { _root.gotoAndPlay(_root._currentframe + 1); } }
Instance of Symbol 54 MovieClip "ball" in Frame 91
onClipEvent (load) { inertia = 0.9; ki = 0.1; vx = 0; vy = 0; _y = this._parent.cursor._y; _x = this._parent.cursor._x; trail = true; grav = 1; } onClipEvent (enterFrame) { if (trail == true) { x = (-_x) + this._parent.cursor._x; y = (-_y) + this._parent.cursor._y; vx = (vx * inertia) + (x * ki); vy = (vy * inertia) + (y * ki); _x = (_x + vx); _y = (_y + vy); } if (trail == false) { i = 1; while (i <= 10) { bounds = _root["wall" + i].getBounds(_root); if ((_x > bounds.xMin) && (_x < bounds.xMax)) { x = _x - _root["wall" + i]._x; y = _y - _root["wall" + i]._y; angle = (_root["wall" + i]._rotation * Math.PI) / 180; x1 = (Math.cos(angle) * x) + (Math.sin(angle) * y); y1 = (Math.cos(angle) * y) - (Math.sin(angle) * x); vx1 = (Math.cos(angle) * vx) + (Math.sin(angle) * vy); vy1 = (Math.cos(angle) * vy) - (Math.sin(angle) * vx); if ((y1 > (-(_height / 2))) && (y1 < (vy1 - (_height / 2)))) { y1 = -(_height / 2); vy1 = vy1 * -0.8; x = (Math.cos(angle) * x1) - (Math.sin(angle) * y1); y = (Math.cos(angle) * y1) + (Math.sin(angle) * x1); vx = (Math.cos(angle) * vx1) - (Math.sin(angle) * vy1); vy = (Math.cos(angle) * vy1) + (Math.sin(angle) * vx1); _x = (_root["wall" + i]._x + x); _y = (_root["wall" + i]._y + y); } } i++; } vy = vy + grav; this._y = this._y + vy; vx = vx / 1.012; if (Math.abs(vx) < 0.2) { xspeed = 0; } this._x = this._x + vx; } if (_x < 0) { _x = 8; vx = vx * -1; } if (_x > Stage.width) { _x = (Stage.width - 8); vx = vx * -1; } if (_y < 0) { _y = 8; vy = vy * -1; } if (_y > Stage.height) { _y = this._parent.cursor._y; _x = this._parent.cursor._x; vx = 0; vy = 0; trail = true; } }
Instance of Symbol 55 MovieClip in Frame 91
on (release) { this._parent.ball.trail = false; }
Instance of Symbol 58 MovieClip in Frame 91
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Instance of Symbol 60 MovieClip in Frame 91
on (release) { this.gotoAndPlay(2); }
Instance of Symbol 62 MovieClip "cursor" in Frame 91
onClipEvent (load) { Mouse.hide(); inside = true; } onClipEvent (enterFrame) { if (inside == true) { _x = _root._xmouse; _y = _root._ymouse; } if (_x < this._parent.box._x) { _x = (this._parent.box._x + 5); } if (_x > (this._parent.box._x + this._parent.box._width)) { _x = (this._parent.box._x + (this._parent.box._width - 6)); } if (_y > this._parent.box._y) { _y = (this._parent.box._y - 5); } if (_y < (this._parent.box._y - this._parent.box._height)) { _y = (this._parent.box._y - (this._parent.box._height - 6)); } }
Instance of Symbol 64 MovieClip in Frame 91
onClipEvent (enterFrame) { if (this.hitTest(this._parent.box)) { this._parent.cursor.inside = true; } else { this._parent.cursor.inside = false; } _x = _root._xmouse; _y = _root._ymouse; }
Frame 92
stop();
Instance of Symbol 52 MovieClip in Frame 92
onClipEvent (enterFrame) { if (this.hitTest(this._parent.ball)) { _root.gotoAndPlay(_root._currentframe + 1); } }
Instance of Symbol 54 MovieClip "ball" in Frame 92
onClipEvent (load) { inertia = 0.9; ki = 0.1; vx = 0; vy = 0; _y = this._parent.cursor._y; _x = this._parent.cursor._x; trail = true; grav = 1; } onClipEvent (enterFrame) { if (trail == true) { x = (-_x) + this._parent.cursor._x; y = (-_y) + this._parent.cursor._y; vx = (vx * inertia) + (x * ki); vy = (vy * inertia) + (y * ki); _x = (_x + vx); _y = (_y + vy); } if (trail == false) { i = 1; while (i <= 10) { bounds = _root["wall" + i].getBounds(_root); if ((_x > bounds.xMin) && (_x < bounds.xMax)) { x = _x - _root["wall" + i]._x; y = _y - _root["wall" + i]._y; angle = (_root["wall" + i]._rotation * Math.PI) / 180; x1 = (Math.cos(angle) * x) + (Math.sin(angle) * y); y1 = (Math.cos(angle) * y) - (Math.sin(angle) * x); vx1 = (Math.cos(angle) * vx) + (Math.sin(angle) * vy); vy1 = (Math.cos(angle) * vy) - (Math.sin(angle) * vx); if ((y1 > (-(_height / 2))) && (y1 < (vy1 - (_height / 2)))) { y1 = -(_height / 2); vy1 = vy1 * -0.8; x = (Math.cos(angle) * x1) - (Math.sin(angle) * y1); y = (Math.cos(angle) * y1) + (Math.sin(angle) * x1); vx = (Math.cos(angle) * vx1) - (Math.sin(angle) * vy1); vy = (Math.cos(angle) * vy1) + (Math.sin(angle) * vx1); _x = (_root["wall" + i]._x + x); _y = (_root["wall" + i]._y + y); } } i++; } vy = vy + grav; this._y = this._y + vy; vx = vx / 1.012; if (Math.abs(vx) < 0.2) { xspeed = 0; } this._x = this._x + vx; } if (_x < 0) { _x = 8; vx = vx * -1; } if (_x > Stage.width) { _x = (Stage.width - 8); vx = vx * -1; } if (_y < 0) { _y = 8; vy = vy * -1; } if (_y > Stage.height) { _y = this._parent.cursor._y; _x = this._parent.cursor._x; vx = 0; vy = 0; trail = true; } }
Instance of Symbol 55 MovieClip in Frame 92
on (release) { this._parent.ball.trail = false; }
Instance of Symbol 58 MovieClip in Frame 92
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Instance of Symbol 60 MovieClip in Frame 92
on (release) { this.gotoAndPlay(2); }
Instance of Symbol 62 MovieClip "cursor" in Frame 92
onClipEvent (load) { Mouse.hide(); inside = true; } onClipEvent (enterFrame) { if (inside == true) { _x = _root._xmouse; _y = _root._ymouse; } if (_x < this._parent.box._x) { _x = (this._parent.box._x + 5); } if (_x > (this._parent.box._x + this._parent.box._width)) { _x = (this._parent.box._x + (this._parent.box._width - 6)); } if (_y > this._parent.box._y) { _y = (this._parent.box._y - 5); } if (_y < (this._parent.box._y - this._parent.box._height)) { _y = (this._parent.box._y - (this._parent.box._height - 6)); } }
Instance of Symbol 64 MovieClip in Frame 92
onClipEvent (enterFrame) { if (this.hitTest(this._parent.box)) { this._parent.cursor.inside = true; } else { this._parent.cursor.inside = false; } _x = _root._xmouse; _y = _root._ymouse; }
Frame 93
stop();
Instance of Symbol 52 MovieClip in Frame 93
onClipEvent (enterFrame) { if (this.hitTest(this._parent.ball)) { _root.gotoAndPlay(_root._currentframe + 1); } }
Instance of Symbol 54 MovieClip "ball" in Frame 93
onClipEvent (load) { inertia = 0.9; ki = 0.1; vx = 0; vy = 0; _y = this._parent.cursor._y; _x = this._parent.cursor._x; trail = true; grav = 1; } onClipEvent (enterFrame) { if (trail == true) { x = (-_x) + this._parent.cursor._x; y = (-_y) + this._parent.cursor._y; vx = (vx * inertia) + (x * ki); vy = (vy * inertia) + (y * ki); _x = (_x + vx); _y = (_y + vy); } if (trail == false) { i = 1; while (i <= 10) { bounds = _root["wall" + i].getBounds(_root); if ((_x > bounds.xMin) && (_x < bounds.xMax)) { x = _x - _root["wall" + i]._x; y = _y - _root["wall" + i]._y; angle = (_root["wall" + i]._rotation * Math.PI) / 180; x1 = (Math.cos(angle) * x) + (Math.sin(angle) * y); y1 = (Math.cos(angle) * y) - (Math.sin(angle) * x); vx1 = (Math.cos(angle) * vx) + (Math.sin(angle) * vy); vy1 = (Math.cos(angle) * vy) - (Math.sin(angle) * vx); if ((y1 > (-(_height / 2))) && (y1 < (vy1 - (_height / 2)))) { y1 = -(_height / 2); vy1 = vy1 * -0.8; x = (Math.cos(angle) * x1) - (Math.sin(angle) * y1); y = (Math.cos(angle) * y1) + (Math.sin(angle) * x1); vx = (Math.cos(angle) * vx1) - (Math.sin(angle) * vy1); vy = (Math.cos(angle) * vy1) + (Math.sin(angle) * vx1); _x = (_root["wall" + i]._x + x); _y = (_root["wall" + i]._y + y); } } i++; } vy = vy + grav; this._y = this._y + vy; vx = vx / 1.012; if (Math.abs(vx) < 0.2) { xspeed = 0; } this._x = this._x + vx; } if (_x < 0) { _x = 8; vx = vx * -1; } if (_x > Stage.width) { _x = (Stage.width - 8); vx = vx * -1; } if (_y < 0) { _y = 8; vy = vy * -1; } if (_y > Stage.height) { _y = this._parent.cursor._y; _x = this._parent.cursor._x; vx = 0; vy = 0; trail = true; } }
Instance of Symbol 55 MovieClip in Frame 93
on (release) { this._parent.ball.trail = false; }
Instance of Symbol 58 MovieClip in Frame 93
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Instance of Symbol 60 MovieClip in Frame 93
on (release) { this.gotoAndPlay(2); }
Instance of Symbol 62 MovieClip "cursor" in Frame 93
onClipEvent (load) { Mouse.hide(); inside = true; } onClipEvent (enterFrame) { if (inside == true) { _x = _root._xmouse; _y = _root._ymouse; } if (_x < this._parent.box._x) { _x = (this._parent.box._x + 5); } if (_x > (this._parent.box._x + this._parent.box._width)) { _x = (this._parent.box._x + (this._parent.box._width - 6)); } if (_y > this._parent.box._y) { _y = (this._parent.box._y - 5); } if (_y < (this._parent.box._y - this._parent.box._height)) { _y = (this._parent.box._y - (this._parent.box._height - 6)); } }
Instance of Symbol 64 MovieClip in Frame 93
onClipEvent (enterFrame) { if (this.hitTest(this._parent.box)) { this._parent.cursor.inside = true; } else { this._parent.cursor.inside = false; } _x = _root._xmouse; _y = _root._ymouse; }
Frame 94
stop();
Instance of Symbol 52 MovieClip in Frame 94
onClipEvent (enterFrame) { if (this.hitTest(this._parent.ball)) { _root.gotoAndPlay(_root._currentframe + 1); } }
Instance of Symbol 54 MovieClip "ball" in Frame 94
onClipEvent (load) { inertia = 0.9; ki = 0.1; vx = 0; vy = 0; _y = this._parent.cursor._y; _x = this._parent.cursor._x; trail = true; grav = 1; } onClipEvent (enterFrame) { if (trail == true) { x = (-_x) + this._parent.cursor._x; y = (-_y) + this._parent.cursor._y; vx = (vx * inertia) + (x * ki); vy = (vy * inertia) + (y * ki); _x = (_x + vx); _y = (_y + vy); } if (trail == false) { i = 1; while (i <= 10) { bounds = _root["wall" + i].getBounds(_root); if ((_x > bounds.xMin) && (_x < bounds.xMax)) { x = _x - _root["wall" + i]._x; y = _y - _root["wall" + i]._y; angle = (_root["wall" + i]._rotation * Math.PI) / 180; x1 = (Math.cos(angle) * x) + (Math.sin(angle) * y); y1 = (Math.cos(angle) * y) - (Math.sin(angle) * x); vx1 = (Math.cos(angle) * vx) + (Math.sin(angle) * vy); vy1 = (Math.cos(angle) * vy) - (Math.sin(angle) * vx); if ((y1 > (-(_height / 2))) && (y1 < (vy1 - (_height / 2)))) { y1 = -(_height / 2); vy1 = vy1 * -0.8; x = (Math.cos(angle) * x1) - (Math.sin(angle) * y1); y = (Math.cos(angle) * y1) + (Math.sin(angle) * x1); vx = (Math.cos(angle) * vx1) - (Math.sin(angle) * vy1); vy = (Math.cos(angle) * vy1) + (Math.sin(angle) * vx1); _x = (_root["wall" + i]._x + x); _y = (_root["wall" + i]._y + y); } } i++; } vy = vy + grav; this._y = this._y + vy; vx = vx / 1.012; if (Math.abs(vx) < 0.2) { xspeed = 0; } this._x = this._x + vx; } if (_x < 0) { _x = 8; vx = vx * -1; } if (_x > Stage.width) { _x = (Stage.width - 8); vx = vx * -1; } if (_y < 0) { _y = 8; vy = vy * -1; } if (_y > Stage.height) { _y = this._parent.cursor._y; _x = this._parent.cursor._x; vx = 0; vy = 0; trail = true; } }
Instance of Symbol 55 MovieClip in Frame 94
on (release) { this._parent.ball.trail = false; }
Instance of Symbol 58 MovieClip in Frame 94
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Instance of Symbol 60 MovieClip in Frame 94
on (release) { this.gotoAndPlay(2); }
Instance of Symbol 62 MovieClip "cursor" in Frame 94
onClipEvent (load) { Mouse.hide(); inside = true; } onClipEvent (enterFrame) { if (inside == true) { _x = _root._xmouse; _y = _root._ymouse; } if (_x < this._parent.box._x) { _x = (this._parent.box._x + 5); } if (_x > (this._parent.box._x + this._parent.box._width)) { _x = (this._parent.box._x + (this._parent.box._width - 6)); } if (_y > this._parent.box._y) { _y = (this._parent.box._y - 5); } if (_y < (this._parent.box._y - this._parent.box._height)) { _y = (this._parent.box._y - (this._parent.box._height - 6)); } }
Instance of Symbol 64 MovieClip in Frame 94
onClipEvent (enterFrame) { if (this.hitTest(this._parent.box)) { this._parent.cursor.inside = true; } else { this._parent.cursor.inside = false; } _x = _root._xmouse; _y = _root._ymouse; }
Frame 95
stop();
Instance of Symbol 52 MovieClip in Frame 95
onClipEvent (enterFrame) { if (this.hitTest(this._parent.ball)) { _root.gotoAndPlay(_root._currentframe + 1); } }
Instance of Symbol 54 MovieClip "ball" in Frame 95
onClipEvent (load) { inertia = 0.9; ki = 0.1; vx = 0; vy = 0; _y = this._parent.cursor._y; _x = this._parent.cursor._x; trail = true; grav = 1; } onClipEvent (enterFrame) { if (trail == true) { x = (-_x) + this._parent.cursor._x; y = (-_y) + this._parent.cursor._y; vx = (vx * inertia) + (x * ki); vy = (vy * inertia) + (y * ki); _x = (_x + vx); _y = (_y + vy); } if (trail == false) { i = 1; while (i <= 10) { bounds = _root["wall" + i].getBounds(_root); if ((_x > bounds.xMin) && (_x < bounds.xMax)) { x = _x - _root["wall" + i]._x; y = _y - _root["wall" + i]._y; angle = (_root["wall" + i]._rotation * Math.PI) / 180; x1 = (Math.cos(angle) * x) + (Math.sin(angle) * y); y1 = (Math.cos(angle) * y) - (Math.sin(angle) * x); vx1 = (Math.cos(angle) * vx) + (Math.sin(angle) * vy); vy1 = (Math.cos(angle) * vy) - (Math.sin(angle) * vx); if ((y1 > (-(_height / 2))) && (y1 < (vy1 - (_height / 2)))) { y1 = -(_height / 2); vy1 = vy1 * -0.8; x = (Math.cos(angle) * x1) - (Math.sin(angle) * y1); y = (Math.cos(angle) * y1) + (Math.sin(angle) * x1); vx = (Math.cos(angle) * vx1) - (Math.sin(angle) * vy1); vy = (Math.cos(angle) * vy1) + (Math.sin(angle) * vx1); _x = (_root["wall" + i]._x + x); _y = (_root["wall" + i]._y + y); } } i++; } vy = vy + grav; this._y = this._y + vy; vx = vx / 1.012; if (Math.abs(vx) < 0.2) { xspeed = 0; } this._x = this._x + vx; } if (_x < 0) { _x = 8; vx = vx * -1; } if (_x > Stage.width) { _x = (Stage.width - 8); vx = vx * -1; } if (_y < 0) { _y = 8; vy = vy * -1; } if (_y > Stage.height) { _y = this._parent.cursor._y; _x = this._parent.cursor._x; vx = 0; vy = 0; trail = true; } }
Instance of Symbol 55 MovieClip in Frame 95
on (release) { this._parent.ball.trail = false; }
Instance of Symbol 58 MovieClip in Frame 95
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Instance of Symbol 60 MovieClip in Frame 95
on (release) { this.gotoAndPlay(2); }
Instance of Symbol 62 MovieClip "cursor" in Frame 95
onClipEvent (load) { Mouse.hide(); inside = true; } onClipEvent (enterFrame) { if (inside == true) { _x = _root._xmouse; _y = _root._ymouse; } if (_x < this._parent.box._x) { _x = (this._parent.box._x + 5); } if (_x > (this._parent.box._x + this._parent.box._width)) { _x = (this._parent.box._x + (this._parent.box._width - 6)); } if (_y > this._parent.box._y) { _y = (this._parent.box._y - 5); } if (_y < (this._parent.box._y - this._parent.box._height)) { _y = (this._parent.box._y - (this._parent.box._height - 6)); } }
Instance of Symbol 64 MovieClip in Frame 95
onClipEvent (enterFrame) { if (this.hitTest(this._parent.box)) { this._parent.cursor.inside = true; } else { this._parent.cursor.inside = false; } _x = _root._xmouse; _y = _root._ymouse; }
Frame 96
stop();
Instance of Symbol 52 MovieClip in Frame 96
onClipEvent (enterFrame) { if (this.hitTest(this._parent.ball)) { _root.gotoAndPlay(_root._currentframe + 1); } }
Instance of Symbol 54 MovieClip "ball" in Frame 96
onClipEvent (load) { inertia = 0.9; ki = 0.1; vx = 0; vy = 0; _y = this._parent.cursor._y; _x = this._parent.cursor._x; trail = true; grav = 1; } onClipEvent (enterFrame) { if (trail == true) { x = (-_x) + this._parent.cursor._x; y = (-_y) + this._parent.cursor._y; vx = (vx * inertia) + (x * ki); vy = (vy * inertia) + (y * ki); _x = (_x + vx); _y = (_y + vy); } if (trail == false) { i = 1; while (i <= 10) { bounds = _root["wall" + i].getBounds(_root); if ((_x > bounds.xMin) && (_x < bounds.xMax)) { x = _x - _root["wall" + i]._x; y = _y - _root["wall" + i]._y; angle = (_root["wall" + i]._rotation * Math.PI) / 180; x1 = (Math.cos(angle) * x) + (Math.sin(angle) * y); y1 = (Math.cos(angle) * y) - (Math.sin(angle) * x); vx1 = (Math.cos(angle) * vx) + (Math.sin(angle) * vy); vy1 = (Math.cos(angle) * vy) - (Math.sin(angle) * vx); if ((y1 > (-(_height / 2))) && (y1 < (vy1 - (_height / 2)))) { y1 = -(_height / 2); vy1 = vy1 * -0.8; x = (Math.cos(angle) * x1) - (Math.sin(angle) * y1); y = (Math.cos(angle) * y1) + (Math.sin(angle) * x1); vx = (Math.cos(angle) * vx1) - (Math.sin(angle) * vy1); vy = (Math.cos(angle) * vy1) + (Math.sin(angle) * vx1); _x = (_root["wall" + i]._x + x); _y = (_root["wall" + i]._y + y); } } i++; } vy = vy + grav; this._y = this._y + vy; vx = vx / 1.012; if (Math.abs(vx) < 0.2) { xspeed = 0; } this._x = this._x + vx; } if (_x < 0) { _x = 8; vx = vx * -1; } if (_x > Stage.width) { _x = (Stage.width - 8); vx = vx * -1; } if (_y < 0) { _y = 8; vy = vy * -1; } if (trail == false) { if (_y > Stage.height) { _y = this._parent.cursor._y; _x = this._parent.cursor._x; vx = 0; vy = 0; trail = true; } } }
Instance of Symbol 55 MovieClip in Frame 96
on (release) { this._parent.ball.trail = false; }
Instance of Symbol 58 MovieClip in Frame 96
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Instance of Symbol 60 MovieClip in Frame 96
on (release) { this.gotoAndPlay(2); }
Instance of Symbol 62 MovieClip "cursor" in Frame 96
onClipEvent (load) { Mouse.hide(); inside = true; } onClipEvent (enterFrame) { if (inside == true) { _x = _root._xmouse; _y = _root._ymouse; } if (_x < this._parent.box._x) { _x = (this._parent.box._x + 5); } if (_x > (this._parent.box._x + this._parent.box._width)) { _x = (this._parent.box._x + (this._parent.box._width - 6)); } if (_y > this._parent.box._y) { _y = (this._parent.box._y - 5); } if (_y < (this._parent.box._y - this._parent.box._height)) { _y = (this._parent.box._y - (this._parent.box._height - 6)); } }
Instance of Symbol 64 MovieClip in Frame 96
onClipEvent (enterFrame) { if (this.hitTest(this._parent.box)) { this._parent.cursor.inside = true; } else { this._parent.cursor.inside = false; } _x = _root._xmouse; _y = _root._ymouse; }
Frame 97
stop();
Instance of Symbol 52 MovieClip in Frame 97
onClipEvent (enterFrame) { if (this.hitTest(this._parent.ball)) { _root.gotoAndPlay(_root._currentframe + 1); } }
Instance of Symbol 81 MovieClip in Frame 97
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.ball.vx = Math.abs(_root.ball.vx) * 2; } }
Instance of Symbol 54 MovieClip "ball" in Frame 97
onClipEvent (load) { inertia = 0.9; ki = 0.1; vx = 0; vy = 0; _y = this._parent.cursor._y; _x = this._parent.cursor._x; trail = true; grav = 1; } onClipEvent (enterFrame) { if (trail == true) { x = (-_x) + this._parent.cursor._x; y = (-_y) + this._parent.cursor._y; vx = (vx * inertia) + (x * ki); vy = (vy * inertia) + (y * ki); _x = (_x + vx); _y = (_y + vy); } if (trail == false) { i = 1; while (i <= 10) { bounds = _root["wall" + i].getBounds(_root); if ((_x > bounds.xMin) && (_x < bounds.xMax)) { x = _x - _root["wall" + i]._x; y = _y - _root["wall" + i]._y; angle = (_root["wall" + i]._rotation * Math.PI) / 180; x1 = (Math.cos(angle) * x) + (Math.sin(angle) * y); y1 = (Math.cos(angle) * y) - (Math.sin(angle) * x); vx1 = (Math.cos(angle) * vx) + (Math.sin(angle) * vy); vy1 = (Math.cos(angle) * vy) - (Math.sin(angle) * vx); if ((y1 > (-(_height / 2))) && (y1 < (vy1 - (_height / 2)))) { y1 = -(_height / 2); vy1 = vy1 * -0.8; x = (Math.cos(angle) * x1) - (Math.sin(angle) * y1); y = (Math.cos(angle) * y1) + (Math.sin(angle) * x1); vx = (Math.cos(angle) * vx1) - (Math.sin(angle) * vy1); vy = (Math.cos(angle) * vy1) + (Math.sin(angle) * vx1); _x = (_root["wall" + i]._x + x); _y = (_root["wall" + i]._y + y); } } i++; } vy = vy + grav; this._y = this._y + vy; vx = vx / 1.012; if (Math.abs(vx) < 0.2) { xspeed = 0; } this._x = this._x + vx; } if (_x < 0) { _x = 8; vx = vx * -1; } if (_x > Stage.width) { _x = (Stage.width - 8); vx = vx * -1; } if (_y < 0) { _y = 8; vy = vy * -1; } if (_y > Stage.height) { _y = this._parent.cursor._y; _x = this._parent.cursor._x; vx = 0; vy = 0; trail = true; } }
Instance of Symbol 55 MovieClip in Frame 97
on (release) { this._parent.ball.trail = false; }
Instance of Symbol 58 MovieClip in Frame 97
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Instance of Symbol 60 MovieClip in Frame 97
on (release) { this.gotoAndPlay(2); }
Instance of Symbol 62 MovieClip "cursor" in Frame 97
onClipEvent (load) { Mouse.hide(); inside = true; } onClipEvent (enterFrame) { if (inside == true) { _x = _root._xmouse; _y = _root._ymouse; } if (_x < this._parent.box._x) { _x = (this._parent.box._x + 5); } if (_x > (this._parent.box._x + this._parent.box._width)) { _x = (this._parent.box._x + (this._parent.box._width - 6)); } if (_y > this._parent.box._y) { _y = (this._parent.box._y - 5); } if (_y < (this._parent.box._y - this._parent.box._height)) { _y = (this._parent.box._y - (this._parent.box._height - 6)); } }
Instance of Symbol 64 MovieClip in Frame 97
onClipEvent (enterFrame) { if (this.hitTest(this._parent.box)) { this._parent.cursor.inside = true; } else { this._parent.cursor.inside = false; } _x = _root._xmouse; _y = _root._ymouse; }
Frame 98
stop();
Instance of Symbol 52 MovieClip in Frame 98
onClipEvent (enterFrame) { if (this.hitTest(this._parent.ball)) { _root.gotoAndPlay(_root._currentframe + 1); } }
Instance of Symbol 81 MovieClip in Frame 98
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.ball.vy = Math.abs(_root.ball.vy) * -2; } }
Instance of Symbol 81 MovieClip in Frame 98
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.ball.vy = Math.abs(_root.ball.vy) * -2; } }
Instance of Symbol 60 MovieClip in Frame 98
on (release) { this.gotoAndPlay(2); }
Instance of Symbol 54 MovieClip "ball" in Frame 98
onClipEvent (load) { inertia = 0.9; ki = 0.1; vx = 0; vy = 0; _y = this._parent.cursor._y; _x = this._parent.cursor._x; trail = true; grav = 1; } onClipEvent (enterFrame) { if (trail == true) { x = (-_x) + this._parent.cursor._x; y = (-_y) + this._parent.cursor._y; vx = (vx * inertia) + (x * ki); vy = (vy * inertia) + (y * ki); _x = (_x + vx); _y = (_y + vy); } if (trail == false) { i = 1; while (i <= 10) { bounds = _root["wall" + i].getBounds(_root); if ((_x > bounds.xMin) && (_x < bounds.xMax)) { x = _x - _root["wall" + i]._x; y = _y - _root["wall" + i]._y; angle = (_root["wall" + i]._rotation * Math.PI) / 180; x1 = (Math.cos(angle) * x) + (Math.sin(angle) * y); y1 = (Math.cos(angle) * y) - (Math.sin(angle) * x); vx1 = (Math.cos(angle) * vx) + (Math.sin(angle) * vy); vy1 = (Math.cos(angle) * vy) - (Math.sin(angle) * vx); if ((y1 > (-(_height / 2))) && (y1 < (vy1 - (_height / 2)))) { y1 = -(_height / 2); vy1 = vy1 * -0.8; x = (Math.cos(angle) * x1) - (Math.sin(angle) * y1); y = (Math.cos(angle) * y1) + (Math.sin(angle) * x1); vx = (Math.cos(angle) * vx1) - (Math.sin(angle) * vy1); vy = (Math.cos(angle) * vy1) + (Math.sin(angle) * vx1); _x = (_root["wall" + i]._x + x); _y = (_root["wall" + i]._y + y); } } i++; } vy = vy + grav; this._y = this._y + vy; vx = vx / 1.012; if (Math.abs(vx) < 0.2) { xspeed = 0; } this._x = this._x + vx; } if (_x < 0) { _x = 8; vx = vx * -1; } if (_x > Stage.width) { _x = (Stage.width - 8); vx = vx * -1; } if (_y < 0) { _y = 8; vy = vy * -1; } if (trail == false) { if (_y > Stage.height) { _y = this._parent.cursor._y; _x = this._parent.cursor._x; vx = 0; vy = 0; trail = true; } } }
Instance of Symbol 55 MovieClip in Frame 98
on (release) { this._parent.ball.trail = false; }
Instance of Symbol 58 MovieClip in Frame 98
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Instance of Symbol 62 MovieClip "cursor" in Frame 98
onClipEvent (load) { Mouse.hide(); inside = true; } onClipEvent (enterFrame) { if (inside == true) { _x = _root._xmouse; _y = _root._ymouse; } if (_x < this._parent.box._x) { _x = (this._parent.box._x + 5); } if (_x > (this._parent.box._x + this._parent.box._width)) { _x = (this._parent.box._x + (this._parent.box._width - 6)); } if (_y > this._parent.box._y) { _y = (this._parent.box._y - 5); } if (_y < (this._parent.box._y - this._parent.box._height)) { _y = (this._parent.box._y - (this._parent.box._height - 6)); } }
Instance of Symbol 64 MovieClip in Frame 98
onClipEvent (enterFrame) { if (this.hitTest(this._parent.box)) { this._parent.cursor.inside = true; } else { this._parent.cursor.inside = false; } _x = _root._xmouse; _y = _root._ymouse; }
Frame 99
stop();
Instance of Symbol 52 MovieClip in Frame 99
onClipEvent (enterFrame) { if (this.hitTest(this._parent.ball)) { _root.gotoAndPlay(_root._currentframe + 1); } }
Instance of Symbol 81 MovieClip in Frame 99
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.ball.vx = Math.abs(_root.ball.vx) * -2; } }
Instance of Symbol 81 MovieClip in Frame 99
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.ball.vy = Math.abs(_root.ball.vy) * -2; } }
Instance of Symbol 54 MovieClip "ball" in Frame 99
onClipEvent (load) { inertia = 0.9; ki = 0.1; vx = 0; vy = 0; _y = this._parent.cursor._y; _x = this._parent.cursor._x; trail = true; grav = 1; } onClipEvent (enterFrame) { if (trail == true) { x = (-_x) + this._parent.cursor._x; y = (-_y) + this._parent.cursor._y; vx = (vx * inertia) + (x * ki); vy = (vy * inertia) + (y * ki); _x = (_x + vx); _y = (_y + vy); } if (trail == false) { i = 1; while (i <= 10) { bounds = _root["wall" + i].getBounds(_root); if ((_x > bounds.xMin) && (_x < bounds.xMax)) { x = _x - _root["wall" + i]._x; y = _y - _root["wall" + i]._y; angle = (_root["wall" + i]._rotation * Math.PI) / 180; x1 = (Math.cos(angle) * x) + (Math.sin(angle) * y); y1 = (Math.cos(angle) * y) - (Math.sin(angle) * x); vx1 = (Math.cos(angle) * vx) + (Math.sin(angle) * vy); vy1 = (Math.cos(angle) * vy) - (Math.sin(angle) * vx); if ((y1 > (-(_height / 2))) && (y1 < (vy1 - (_height / 2)))) { y1 = -(_height / 2); vy1 = vy1 * -0.8; x = (Math.cos(angle) * x1) - (Math.sin(angle) * y1); y = (Math.cos(angle) * y1) + (Math.sin(angle) * x1); vx = (Math.cos(angle) * vx1) - (Math.sin(angle) * vy1); vy = (Math.cos(angle) * vy1) + (Math.sin(angle) * vx1); _x = (_root["wall" + i]._x + x); _y = (_root["wall" + i]._y + y); } } i++; } vy = vy + grav; this._y = this._y + vy; vx = vx / 1.012; if (Math.abs(vx) < 0.2) { xspeed = 0; } this._x = this._x + vx; } if (_x < 0) { _x = 8; vx = vx * -1; } if (_x > Stage.width) { _x = (Stage.width - 8); vx = vx * -1; } if (_y < 0) { _y = 8; vy = vy * -1; } if (trail == false) { if (_y > Stage.height) { _y = this._parent.cursor._y; _x = this._parent.cursor._x; vx = 0; vy = 0; trail = true; } } }
Instance of Symbol 55 MovieClip in Frame 99
on (release) { this._parent.ball.trail = false; }
Instance of Symbol 58 MovieClip in Frame 99
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Instance of Symbol 60 MovieClip in Frame 99
on (release) { this.gotoAndPlay(2); }
Instance of Symbol 62 MovieClip "cursor" in Frame 99
onClipEvent (load) { Mouse.hide(); inside = true; } onClipEvent (enterFrame) { if (inside == true) { _x = _root._xmouse; _y = _root._ymouse; } if (_x < this._parent.box._x) { _x = (this._parent.box._x + 5); } if (_x > (this._parent.box._x + this._parent.box._width)) { _x = (this._parent.box._x + (this._parent.box._width - 6)); } if (_y > this._parent.box._y) { _y = (this._parent.box._y - 5); } if (_y < (this._parent.box._y - this._parent.box._height)) { _y = (this._parent.box._y - (this._parent.box._height - 6)); } }
Instance of Symbol 64 MovieClip in Frame 99
onClipEvent (enterFrame) { if (this.hitTest(this._parent.box)) { this._parent.cursor.inside = true; } else { this._parent.cursor.inside = false; } _x = _root._xmouse; _y = _root._ymouse; }
Frame 100
stop();
Instance of Symbol 52 MovieClip in Frame 100
onClipEvent (enterFrame) { if (this.hitTest(this._parent.ball)) { _root.gotoAndPlay(_root._currentframe + 1); } }
Instance of Symbol 81 MovieClip in Frame 100
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.ball.vy = Math.abs(_root.ball.vy) * 2; } }
Instance of Symbol 81 MovieClip in Frame 100
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.ball.vy = Math.abs(_root.ball.vy) * 2; } }
Instance of Symbol 54 MovieClip "ball" in Frame 100
onClipEvent (load) { inertia = 0.9; ki = 0.1; vx = 0; vy = 0; _y = this._parent.cursor._y; _x = this._parent.cursor._x; trail = true; grav = 1; } onClipEvent (enterFrame) { if (trail == true) { x = (-_x) + this._parent.cursor._x; y = (-_y) + this._parent.cursor._y; vx = (vx * inertia) + (x * ki); vy = (vy * inertia) + (y * ki); _x = (_x + vx); _y = (_y + vy); } if (trail == false) { i = 1; while (i <= 10) { bounds = _root["wall" + i].getBounds(_root); if ((_x > bounds.xMin) && (_x < bounds.xMax)) { x = _x - _root["wall" + i]._x; y = _y - _root["wall" + i]._y; angle = (_root["wall" + i]._rotation * Math.PI) / 180; x1 = (Math.cos(angle) * x) + (Math.sin(angle) * y); y1 = (Math.cos(angle) * y) - (Math.sin(angle) * x); vx1 = (Math.cos(angle) * vx) + (Math.sin(angle) * vy); vy1 = (Math.cos(angle) * vy) - (Math.sin(angle) * vx); if ((y1 > (-(_height / 2))) && (y1 < (vy1 - (_height / 2)))) { y1 = -(_height / 2); vy1 = vy1 * -0.8; x = (Math.cos(angle) * x1) - (Math.sin(angle) * y1); y = (Math.cos(angle) * y1) + (Math.sin(angle) * x1); vx = (Math.cos(angle) * vx1) - (Math.sin(angle) * vy1); vy = (Math.cos(angle) * vy1) + (Math.sin(angle) * vx1); _x = (_root["wall" + i]._x + x); _y = (_root["wall" + i]._y + y); } } i++; } vy = vy + grav; this._y = this._y + vy; vx = vx / 1.012; if (Math.abs(vx) < 0.2) { xspeed = 0; } this._x = this._x + vx; } if (_x < 0) { _x = 8; vx = vx * -1; } if (_x > Stage.width) { _x = (Stage.width - 8); vx = vx * -1; } if (_y < 0) { _y = 8; vy = vy * -1; } if (trail == false) { if (_y > Stage.height) { _y = this._parent.cursor._y; _x = this._parent.cursor._x; vx = 0; vy = 0; trail = true; } } }
Instance of Symbol 55 MovieClip in Frame 100
on (release) { this._parent.ball.trail = false; }
Instance of Symbol 58 MovieClip in Frame 100
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Instance of Symbol 60 MovieClip in Frame 100
on (release) { this.gotoAndPlay(2); }
Instance of Symbol 62 MovieClip "cursor" in Frame 100
onClipEvent (load) { Mouse.hide(); inside = true; } onClipEvent (enterFrame) { if (inside == true) { _x = _root._xmouse; _y = _root._ymouse; } if (_x < this._parent.box._x) { _x = (this._parent.box._x + 5); } if (_x > (this._parent.box._x + this._parent.box._width)) { _x = (this._parent.box._x + (this._parent.box._width - 6)); } if (_y > this._parent.box._y) { _y = (this._parent.box._y - 5); } if (_y < (this._parent.box._y - this._parent.box._height)) { _y = (this._parent.box._y - (this._parent.box._height - 6)); } }
Instance of Symbol 64 MovieClip in Frame 100
onClipEvent (enterFrame) { if (this.hitTest(this._parent.box)) { this._parent.cursor.inside = true; } else { this._parent.cursor.inside = false; } _x = _root._xmouse; _y = _root._ymouse; }
Frame 101
stop();
Instance of Symbol 52 MovieClip in Frame 101
onClipEvent (enterFrame) { if (this.hitTest(this._parent.ball)) { _root.gotoAndPlay(_root._currentframe + 1); } }
Instance of Symbol 81 MovieClip in Frame 101
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.ball.vx = Math.abs(_root.ball.vx) * 2; } }
Instance of Symbol 81 MovieClip in Frame 101
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.ball.vy = Math.abs(_root.ball.vy) * -2; } }
Instance of Symbol 81 MovieClip in Frame 101
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.ball.vx = Math.abs(_root.ball.vx) * 2; } }
Instance of Symbol 54 MovieClip "ball" in Frame 101
onClipEvent (load) { inertia = 0.9; ki = 0.1; vx = 0; vy = 0; _y = this._parent.cursor._y; _x = this._parent.cursor._x; trail = true; grav = 1; } onClipEvent (enterFrame) { if (trail == true) { x = (-_x) + this._parent.cursor._x; y = (-_y) + this._parent.cursor._y; vx = (vx * inertia) + (x * ki); vy = (vy * inertia) + (y * ki); _x = (_x + vx); _y = (_y + vy); } if (trail == false) { i = 1; while (i <= 10) { bounds = _root["wall" + i].getBounds(_root); if ((_x > bounds.xMin) && (_x < bounds.xMax)) { x = _x - _root["wall" + i]._x; y = _y - _root["wall" + i]._y; angle = (_root["wall" + i]._rotation * Math.PI) / 180; x1 = (Math.cos(angle) * x) + (Math.sin(angle) * y); y1 = (Math.cos(angle) * y) - (Math.sin(angle) * x); vx1 = (Math.cos(angle) * vx) + (Math.sin(angle) * vy); vy1 = (Math.cos(angle) * vy) - (Math.sin(angle) * vx); if ((y1 > (-(_height / 2))) && (y1 < (vy1 - (_height / 2)))) { y1 = -(_height / 2); vy1 = vy1 * -0.8; x = (Math.cos(angle) * x1) - (Math.sin(angle) * y1); y = (Math.cos(angle) * y1) + (Math.sin(angle) * x1); vx = (Math.cos(angle) * vx1) - (Math.sin(angle) * vy1); vy = (Math.cos(angle) * vy1) + (Math.sin(angle) * vx1); _x = (_root["wall" + i]._x + x); _y = (_root["wall" + i]._y + y); } } i++; } vy = vy + grav; this._y = this._y + vy; vx = vx / 1.012; if (Math.abs(vx) < 0.2) { xspeed = 0; } this._x = this._x + vx; } if (_x < 0) { _x = 8; vx = vx * -1; } if (_x > Stage.width) { _x = (Stage.width - 8); vx = vx * -1; } if (_y < 0) { _y = 8; vy = vy * -1; } if (trail == false) { if (_y > Stage.height) { _y = this._parent.cursor._y; _x = this._parent.cursor._x; vx = 0; vy = 0; trail = true; } } }
Instance of Symbol 55 MovieClip in Frame 101
on (release) { this._parent.ball.trail = false; }
Instance of Symbol 62 MovieClip "cursor" in Frame 101
onClipEvent (load) { Mouse.hide(); inside = true; } onClipEvent (enterFrame) { if (inside == true) { _x = _root._xmouse; _y = _root._ymouse; } if (_x < this._parent.box._x) { _x = (this._parent.box._x + 5); } if (_x > (this._parent.box._x + this._parent.box._width)) { _x = (this._parent.box._x + (this._parent.box._width - 6)); } if (_y > this._parent.box._y) { _y = (this._parent.box._y - 5); } if (_y < (this._parent.box._y - this._parent.box._height)) { _y = (this._parent.box._y - (this._parent.box._height - 6)); } }
Instance of Symbol 64 MovieClip in Frame 101
onClipEvent (enterFrame) { if (this.hitTest(this._parent.box)) { this._parent.cursor.inside = true; } else { this._parent.cursor.inside = false; } _x = _root._xmouse; _y = _root._ymouse; }
Instance of Symbol 58 MovieClip in Frame 101
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Instance of Symbol 60 MovieClip in Frame 101
on (release) { this.gotoAndPlay(2); }
Frame 102
stop(); Mouse.show();
Instance of Symbol 45 MovieClip in Frame 102
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Frame 103
stop();
Instance of Symbol 88 MovieClip "finish" in Frame 103
onClipEvent (load) { starcount = 0; this.gotoAndStop(2); reset = false; resetcount = 0; } onClipEvent (enterFrame) { if (starcount == 5) { this.gotoAndStop(1); if (this.hitTest(this._parent.ball)) { _root.gotoAndPlay(_root._currentframe + 1); } } if (reset == true) { starcount = 0; this.gotoAndStop(2); } if (resetcount == 5) { reset = false; resetcount = 0; } }
Instance of Symbol 54 MovieClip "ball" in Frame 103
onClipEvent (load) { inertia = 0.9; ki = 0.1; vx = 0; vy = 0; _y = this._parent.cursor._y; _x = this._parent.cursor._x; trail = true; grav = 1; } onClipEvent (enterFrame) { if (trail == true) { x = (-_x) + this._parent.cursor._x; y = (-_y) + this._parent.cursor._y; vx = (vx * inertia) + (x * ki); vy = (vy * inertia) + (y * ki); _x = (_x + vx); _y = (_y + vy); } if (trail == false) { i = 1; while (i <= 10) { bounds = _root["wall" + i].getBounds(_root); if ((_x > bounds.xMin) && (_x < bounds.xMax)) { x = _x - _root["wall" + i]._x; y = _y - _root["wall" + i]._y; angle = (_root["wall" + i]._rotation * Math.PI) / 180; x1 = (Math.cos(angle) * x) + (Math.sin(angle) * y); y1 = (Math.cos(angle) * y) - (Math.sin(angle) * x); vx1 = (Math.cos(angle) * vx) + (Math.sin(angle) * vy); vy1 = (Math.cos(angle) * vy) - (Math.sin(angle) * vx); if ((y1 > (-(_height / 2))) && (y1 < (vy1 - (_height / 2)))) { y1 = -(_height / 2); vy1 = vy1 * -0.8; x = (Math.cos(angle) * x1) - (Math.sin(angle) * y1); y = (Math.cos(angle) * y1) + (Math.sin(angle) * x1); vx = (Math.cos(angle) * vx1) - (Math.sin(angle) * vy1); vy = (Math.cos(angle) * vy1) + (Math.sin(angle) * vx1); _x = (_root["wall" + i]._x + x); _y = (_root["wall" + i]._y + y); } } i++; } vy = vy + grav; this._y = this._y + vy; vx = vx / 1.012; if (Math.abs(vx) < 0.2) { xspeed = 0; } this._x = this._x + vx; } if (_x < 0) { _x = 8; vx = vx * -1; } if (_x > Stage.width) { _x = (Stage.width - 8); vx = vx * -1; } if (_y < 0) { _y = 8; vy = vy * -1; } if (_y > Stage.height) { _y = this._parent.cursor._y; _x = this._parent.cursor._x; vx = 0; vy = 0; trail = true; this._parent.finish.reset = true; } }
Instance of Symbol 55 MovieClip in Frame 103
on (release) { this._parent.ball.trail = false; }
Instance of Symbol 58 MovieClip in Frame 103
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Instance of Symbol 60 MovieClip in Frame 103
on (release) { this.gotoAndPlay(2); }
Instance of Symbol 92 MovieClip in Frame 103
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 103
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 103
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 103
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 103
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 62 MovieClip "cursor" in Frame 103
onClipEvent (load) { Mouse.hide(); inside = true; } onClipEvent (enterFrame) { if (inside == true) { _x = _root._xmouse; _y = _root._ymouse; } if (_x < this._parent.box._x) { _x = (this._parent.box._x + 5); } if (_x > (this._parent.box._x + this._parent.box._width)) { _x = (this._parent.box._x + (this._parent.box._width - 6)); } if (_y > this._parent.box._y) { _y = (this._parent.box._y - 5); } if (_y < (this._parent.box._y - this._parent.box._height)) { _y = (this._parent.box._y - (this._parent.box._height - 6)); } }
Instance of Symbol 64 MovieClip in Frame 103
onClipEvent (enterFrame) { if (this.hitTest(this._parent.box)) { this._parent.cursor.inside = true; } else { this._parent.cursor.inside = false; } _x = _root._xmouse; _y = _root._ymouse; }
Frame 104
stop();
Instance of Symbol 88 MovieClip "finish" in Frame 104
onClipEvent (load) { starcount = 0; this.gotoAndStop(2); reset = false; resetcount = 0; } onClipEvent (enterFrame) { if (starcount == 8) { this.gotoAndStop(1); if (this.hitTest(this._parent.ball)) { _root.gotoAndPlay(_root._currentframe + 1); } } if (reset == true) { starcount = 0; this.gotoAndStop(2); } if (resetcount == 8) { reset = false; resetcount = 0; } }
Instance of Symbol 92 MovieClip in Frame 104
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 104
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 104
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 104
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 104
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 104
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 104
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 104
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 54 MovieClip "ball" in Frame 104
onClipEvent (load) { inertia = 0.9; ki = 0.1; vx = 0; vy = 0; _y = this._parent.cursor._y; _x = this._parent.cursor._x; trail = true; grav = 1; } onClipEvent (enterFrame) { if (trail == true) { x = (-_x) + this._parent.cursor._x; y = (-_y) + this._parent.cursor._y; vx = (vx * inertia) + (x * ki); vy = (vy * inertia) + (y * ki); _x = (_x + vx); _y = (_y + vy); } if (trail == false) { i = 1; while (i <= 10) { bounds = _root["wall" + i].getBounds(_root); if ((_x > bounds.xMin) && (_x < bounds.xMax)) { x = _x - _root["wall" + i]._x; y = _y - _root["wall" + i]._y; angle = (_root["wall" + i]._rotation * Math.PI) / 180; x1 = (Math.cos(angle) * x) + (Math.sin(angle) * y); y1 = (Math.cos(angle) * y) - (Math.sin(angle) * x); vx1 = (Math.cos(angle) * vx) + (Math.sin(angle) * vy); vy1 = (Math.cos(angle) * vy) - (Math.sin(angle) * vx); if ((y1 > (-(_height / 2))) && (y1 < (vy1 - (_height / 2)))) { y1 = -(_height / 2); vy1 = vy1 * -0.8; x = (Math.cos(angle) * x1) - (Math.sin(angle) * y1); y = (Math.cos(angle) * y1) + (Math.sin(angle) * x1); vx = (Math.cos(angle) * vx1) - (Math.sin(angle) * vy1); vy = (Math.cos(angle) * vy1) + (Math.sin(angle) * vx1); _x = (_root["wall" + i]._x + x); _y = (_root["wall" + i]._y + y); } } i++; } vy = vy + grav; this._y = this._y + vy; vx = vx / 1.012; if (Math.abs(vx) < 0.2) { xspeed = 0; } this._x = this._x + vx; } if (_x < 0) { _x = 8; vx = vx * -1; } if (_x > Stage.width) { _x = (Stage.width - 8); vx = vx * -1; } if (_y < 0) { _y = 8; vy = vy * -1; } if (trail == false) { if (_y > Stage.height) { _y = this._parent.cursor._y; _x = this._parent.cursor._x; vx = 0; vy = 0; trail = true; this._parent.finish.reset = true; } } }
Instance of Symbol 55 MovieClip in Frame 104
on (release) { this._parent.ball.trail = false; }
Instance of Symbol 58 MovieClip in Frame 104
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Instance of Symbol 60 MovieClip in Frame 104
on (release) { this.gotoAndPlay(2); }
Instance of Symbol 62 MovieClip "cursor" in Frame 104
onClipEvent (load) { Mouse.hide(); inside = true; } onClipEvent (enterFrame) { if (inside == true) { _x = _root._xmouse; _y = _root._ymouse; } if (_x < this._parent.box._x) { _x = (this._parent.box._x + 5); } if (_x > (this._parent.box._x + this._parent.box._width)) { _x = (this._parent.box._x + (this._parent.box._width - 6)); } if (_y > this._parent.box._y) { _y = (this._parent.box._y - 5); } if (_y < (this._parent.box._y - this._parent.box._height)) { _y = (this._parent.box._y - (this._parent.box._height - 6)); } }
Instance of Symbol 64 MovieClip in Frame 104
onClipEvent (enterFrame) { if (this.hitTest(this._parent.box)) { this._parent.cursor.inside = true; } else { this._parent.cursor.inside = false; } _x = _root._xmouse; _y = _root._ymouse; }
Frame 105
stop();
Instance of Symbol 88 MovieClip "finish" in Frame 105
onClipEvent (load) { starcount = 0; this.gotoAndStop(2); reset = false; resetcount = 0; } onClipEvent (enterFrame) { if (starcount == 4) { this.gotoAndStop(1); if (this.hitTest(this._parent.ball)) { _root.gotoAndPlay(_root._currentframe + 1); } } if (reset == true) { starcount = 0; this.gotoAndStop(2); } if (resetcount == 4) { reset = false; resetcount = 0; } }
Instance of Symbol 92 MovieClip in Frame 105
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 105
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 105
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 105
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 54 MovieClip "ball" in Frame 105
onClipEvent (load) { inertia = 0.9; ki = 0.1; vx = 0; vy = 0; _y = this._parent.cursor._y; _x = this._parent.cursor._x; trail = true; grav = 1; } onClipEvent (enterFrame) { if (trail == true) { x = (-_x) + this._parent.cursor._x; y = (-_y) + this._parent.cursor._y; vx = (vx * inertia) + (x * ki); vy = (vy * inertia) + (y * ki); _x = (_x + vx); _y = (_y + vy); } if (trail == false) { i = 1; while (i <= 10) { bounds = _root["wall" + i].getBounds(_root); if ((_x > bounds.xMin) && (_x < bounds.xMax)) { x = _x - _root["wall" + i]._x; y = _y - _root["wall" + i]._y; angle = (_root["wall" + i]._rotation * Math.PI) / 180; x1 = (Math.cos(angle) * x) + (Math.sin(angle) * y); y1 = (Math.cos(angle) * y) - (Math.sin(angle) * x); vx1 = (Math.cos(angle) * vx) + (Math.sin(angle) * vy); vy1 = (Math.cos(angle) * vy) - (Math.sin(angle) * vx); if ((y1 > (-(_height / 2))) && (y1 < (vy1 - (_height / 2)))) { y1 = -(_height / 2); vy1 = vy1 * -0.8; x = (Math.cos(angle) * x1) - (Math.sin(angle) * y1); y = (Math.cos(angle) * y1) + (Math.sin(angle) * x1); vx = (Math.cos(angle) * vx1) - (Math.sin(angle) * vy1); vy = (Math.cos(angle) * vy1) + (Math.sin(angle) * vx1); _x = (_root["wall" + i]._x + x); _y = (_root["wall" + i]._y + y); } } i++; } vy = vy + grav; this._y = this._y + vy; vx = vx / 1.012; if (Math.abs(vx) < 0.2) { xspeed = 0; } this._x = this._x + vx; } if (_x < 0) { _x = 8; vx = vx * -1; } if (_x > Stage.width) { _x = (Stage.width - 8); vx = vx * -1; } if (_y < 0) { _y = 8; vy = vy * -1; } if (trail == false) { if (_y > Stage.height) { _y = this._parent.cursor._y; _x = this._parent.cursor._x; vx = 0; vy = 0; trail = true; this._parent.finish.reset = true; } } }
Instance of Symbol 55 MovieClip in Frame 105
on (release) { this._parent.ball.trail = false; }
Instance of Symbol 58 MovieClip in Frame 105
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Instance of Symbol 60 MovieClip in Frame 105
on (release) { this.gotoAndPlay(2); }
Instance of Symbol 62 MovieClip "cursor" in Frame 105
onClipEvent (load) { Mouse.hide(); inside = true; } onClipEvent (enterFrame) { if (inside == true) { _x = _root._xmouse; _y = _root._ymouse; } if (_x < this._parent.box._x) { _x = (this._parent.box._x + 5); } if (_x > (this._parent.box._x + this._parent.box._width)) { _x = (this._parent.box._x + (this._parent.box._width - 6)); } if (_y > this._parent.box._y) { _y = (this._parent.box._y - 5); } if (_y < (this._parent.box._y - this._parent.box._height)) { _y = (this._parent.box._y - (this._parent.box._height - 6)); } }
Instance of Symbol 64 MovieClip in Frame 105
onClipEvent (enterFrame) { if (this.hitTest(this._parent.box)) { this._parent.cursor.inside = true; } else { this._parent.cursor.inside = false; } _x = _root._xmouse; _y = _root._ymouse; }
Frame 106
stop();
Instance of Symbol 88 MovieClip "finish" in Frame 106
onClipEvent (load) { starcount = 0; this.gotoAndStop(2); reset = false; resetcount = 0; } onClipEvent (enterFrame) { if (starcount == 3) { this.gotoAndStop(1); if (this.hitTest(this._parent.ball)) { _root.gotoAndPlay(_root._currentframe + 1); } } if (reset == true) { starcount = 0; this.gotoAndStop(2); } if (resetcount == 3) { reset = false; resetcount = 0; } }
Instance of Symbol 92 MovieClip in Frame 106
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 106
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 106
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 60 MovieClip in Frame 106
on (release) { this.gotoAndPlay(2); }
Instance of Symbol 54 MovieClip "ball" in Frame 106
onClipEvent (load) { inertia = 0.9; ki = 0.1; vx = 0; vy = 0; _y = this._parent.cursor._y; _x = this._parent.cursor._x; trail = true; grav = 1; } onClipEvent (enterFrame) { if (trail == true) { x = (-_x) + this._parent.cursor._x; y = (-_y) + this._parent.cursor._y; vx = (vx * inertia) + (x * ki); vy = (vy * inertia) + (y * ki); _x = (_x + vx); _y = (_y + vy); } if (trail == false) { i = 1; while (i <= 10) { bounds = _root["wall" + i].getBounds(_root); if ((_x > bounds.xMin) && (_x < bounds.xMax)) { x = _x - _root["wall" + i]._x; y = _y - _root["wall" + i]._y; angle = (_root["wall" + i]._rotation * Math.PI) / 180; x1 = (Math.cos(angle) * x) + (Math.sin(angle) * y); y1 = (Math.cos(angle) * y) - (Math.sin(angle) * x); vx1 = (Math.cos(angle) * vx) + (Math.sin(angle) * vy); vy1 = (Math.cos(angle) * vy) - (Math.sin(angle) * vx); if ((y1 > (-(_height / 2))) && (y1 < (vy1 - (_height / 2)))) { y1 = -(_height / 2); vy1 = vy1 * -0.8; x = (Math.cos(angle) * x1) - (Math.sin(angle) * y1); y = (Math.cos(angle) * y1) + (Math.sin(angle) * x1); vx = (Math.cos(angle) * vx1) - (Math.sin(angle) * vy1); vy = (Math.cos(angle) * vy1) + (Math.sin(angle) * vx1); _x = (_root["wall" + i]._x + x); _y = (_root["wall" + i]._y + y); } } i++; } vy = vy + grav; this._y = this._y + vy; vx = vx / 1.012; if (Math.abs(vx) < 0.2) { xspeed = 0; } this._x = this._x + vx; } if (_x < 0) { _x = 8; vx = vx * -1; } if (_x > Stage.width) { _x = (Stage.width - 8); vx = vx * -1; } if (_y < 0) { _y = 8; vy = vy * -1; } if (trail == false) { if (_y > Stage.height) { _y = this._parent.cursor._y; _x = this._parent.cursor._x; vx = 0; vy = 0; trail = true; this._parent.finish.reset = true; } } }
Instance of Symbol 55 MovieClip in Frame 106
on (release) { this._parent.ball.trail = false; }
Instance of Symbol 58 MovieClip in Frame 106
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Instance of Symbol 62 MovieClip "cursor" in Frame 106
onClipEvent (load) { Mouse.hide(); inside = true; } onClipEvent (enterFrame) { if (inside == true) { _x = _root._xmouse; _y = _root._ymouse; } if (_x < this._parent.box._x) { _x = (this._parent.box._x + 5); } if (_x > (this._parent.box._x + this._parent.box._width)) { _x = (this._parent.box._x + (this._parent.box._width - 6)); } if (_y > this._parent.box._y) { _y = (this._parent.box._y - 5); } if (_y < (this._parent.box._y - this._parent.box._height)) { _y = (this._parent.box._y - (this._parent.box._height - 6)); } }
Instance of Symbol 64 MovieClip in Frame 106
onClipEvent (enterFrame) { if (this.hitTest(this._parent.box)) { this._parent.cursor.inside = true; } else { this._parent.cursor.inside = false; } _x = _root._xmouse; _y = _root._ymouse; }
Frame 107
stop();
Instance of Symbol 88 MovieClip "finish" in Frame 107
onClipEvent (load) { starcount = 0; this.gotoAndStop(2); reset = false; resetcount = 0; } onClipEvent (enterFrame) { if (starcount == 5) { this.gotoAndStop(1); if (this.hitTest(this._parent.ball)) { _root.gotoAndPlay(_root._currentframe + 1); } } if (reset == true) { starcount = 0; this.gotoAndStop(2); } if (resetcount == 5) { reset = false; resetcount = 0; } }
Instance of Symbol 92 MovieClip in Frame 107
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 107
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 107
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 107
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 107
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 60 MovieClip in Frame 107
on (release) { this.gotoAndPlay(2); }
Instance of Symbol 54 MovieClip "ball" in Frame 107
onClipEvent (load) { inertia = 0.9; ki = 0.1; vx = 0; vy = 0; _y = this._parent.cursor._y; _x = this._parent.cursor._x; trail = true; grav = 1; } onClipEvent (enterFrame) { if (trail == true) { x = (-_x) + this._parent.cursor._x; y = (-_y) + this._parent.cursor._y; vx = (vx * inertia) + (x * ki); vy = (vy * inertia) + (y * ki); _x = (_x + vx); _y = (_y + vy); } if (trail == false) { i = 1; while (i <= 10) { bounds = _root["wall" + i].getBounds(_root); if ((_x > bounds.xMin) && (_x < bounds.xMax)) { x = _x - _root["wall" + i]._x; y = _y - _root["wall" + i]._y; angle = (_root["wall" + i]._rotation * Math.PI) / 180; x1 = (Math.cos(angle) * x) + (Math.sin(angle) * y); y1 = (Math.cos(angle) * y) - (Math.sin(angle) * x); vx1 = (Math.cos(angle) * vx) + (Math.sin(angle) * vy); vy1 = (Math.cos(angle) * vy) - (Math.sin(angle) * vx); if ((y1 > (-(_height / 2))) && (y1 < (vy1 - (_height / 2)))) { y1 = -(_height / 2); vy1 = vy1 * -0.8; x = (Math.cos(angle) * x1) - (Math.sin(angle) * y1); y = (Math.cos(angle) * y1) + (Math.sin(angle) * x1); vx = (Math.cos(angle) * vx1) - (Math.sin(angle) * vy1); vy = (Math.cos(angle) * vy1) + (Math.sin(angle) * vx1); _x = (_root["wall" + i]._x + x); _y = (_root["wall" + i]._y + y); } } i++; } vy = vy + grav; this._y = this._y + vy; vx = vx / 1.012; if (Math.abs(vx) < 0.2) { xspeed = 0; } this._x = this._x + vx; } if (_x < 0) { _x = 8; vx = vx * -1; } if (_x > Stage.width) { _x = (Stage.width - 8); vx = vx * -1; } if (_y < 0) { _y = 8; vy = vy * -1; } if (_y > Stage.height) { _y = this._parent.cursor._y; _x = this._parent.cursor._x; vx = 0; vy = 0; trail = true; this._parent.finish.reset = true; } }
Instance of Symbol 55 MovieClip in Frame 107
on (release) { this._parent.ball.trail = false; }
Instance of Symbol 58 MovieClip in Frame 107
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Instance of Symbol 64 MovieClip in Frame 107
onClipEvent (enterFrame) { if (this.hitTest(this._parent.box)) { this._parent.cursor.inside = true; } else { this._parent.cursor.inside = false; } _x = _root._xmouse; _y = _root._ymouse; }
Instance of Symbol 62 MovieClip "cursor" in Frame 107
onClipEvent (load) { Mouse.hide(); inside = true; } onClipEvent (enterFrame) { if (inside == true) { _x = _root._xmouse; _y = _root._ymouse; } if (_x < this._parent.box._x) { _x = (this._parent.box._x + 5); } if (_x > (this._parent.box._x + this._parent.box._width)) { _x = (this._parent.box._x + (this._parent.box._width - 6)); } if (_y > this._parent.box._y) { _y = (this._parent.box._y - 5); } if (_y < (this._parent.box._y - this._parent.box._height)) { _y = (this._parent.box._y - (this._parent.box._height - 6)); } }
Frame 108
stop();
Instance of Symbol 88 MovieClip "finish" in Frame 108
onClipEvent (load) { starcount = 0; this.gotoAndStop(2); reset = false; resetcount = 0; } onClipEvent (enterFrame) { if (starcount == 10) { this.gotoAndStop(1); if (this.hitTest(this._parent.ball)) { _root.gotoAndPlay(_root._currentframe + 1); } } if (reset == true) { starcount = 0; this.gotoAndStop(2); } if (resetcount == 10) { reset = false; resetcount = 0; } }
Instance of Symbol 92 MovieClip in Frame 108
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 108
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 108
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 108
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 108
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 108
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 108
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 108
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 108
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 108
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 60 MovieClip in Frame 108
on (release) { this.gotoAndPlay(2); }
Instance of Symbol 54 MovieClip "ball" in Frame 108
onClipEvent (load) { inertia = 0.9; ki = 0.1; vx = 0; vy = 0; _y = this._parent.cursor._y; _x = this._parent.cursor._x; trail = true; grav = 1; } onClipEvent (enterFrame) { if (trail == true) { x = (-_x) + this._parent.cursor._x; y = (-_y) + this._parent.cursor._y; vx = (vx * inertia) + (x * ki); vy = (vy * inertia) + (y * ki); _x = (_x + vx); _y = (_y + vy); } if (trail == false) { i = 1; while (i <= 10) { bounds = _root["wall" + i].getBounds(_root); if ((_x > bounds.xMin) && (_x < bounds.xMax)) { x = _x - _root["wall" + i]._x; y = _y - _root["wall" + i]._y; angle = (_root["wall" + i]._rotation * Math.PI) / 180; x1 = (Math.cos(angle) * x) + (Math.sin(angle) * y); y1 = (Math.cos(angle) * y) - (Math.sin(angle) * x); vx1 = (Math.cos(angle) * vx) + (Math.sin(angle) * vy); vy1 = (Math.cos(angle) * vy) - (Math.sin(angle) * vx); if ((y1 > (-(_height / 2))) && (y1 < (vy1 - (_height / 2)))) { y1 = -(_height / 2); vy1 = vy1 * -0.8; x = (Math.cos(angle) * x1) - (Math.sin(angle) * y1); y = (Math.cos(angle) * y1) + (Math.sin(angle) * x1); vx = (Math.cos(angle) * vx1) - (Math.sin(angle) * vy1); vy = (Math.cos(angle) * vy1) + (Math.sin(angle) * vx1); _x = (_root["wall" + i]._x + x); _y = (_root["wall" + i]._y + y); } } i++; } vy = vy + grav; this._y = this._y + vy; vx = vx / 1.012; if (Math.abs(vx) < 0.2) { xspeed = 0; } this._x = this._x + vx; } if (_x < 0) { _x = 8; vx = vx * -1; } if (_x > Stage.width) { _x = (Stage.width - 8); vx = vx * -1; } if (_y < 0) { _y = 8; vy = vy * -1; } if (_y > Stage.height) { _y = this._parent.cursor._y; _x = this._parent.cursor._x; vx = 0; vy = 0; trail = true; this._parent.finish.reset = true; } }
Instance of Symbol 55 MovieClip in Frame 108
on (release) { this._parent.ball.trail = false; }
Instance of Symbol 58 MovieClip in Frame 108
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Instance of Symbol 64 MovieClip in Frame 108
onClipEvent (enterFrame) { if (this.hitTest(this._parent.box)) { this._parent.cursor.inside = true; } else { this._parent.cursor.inside = false; } _x = _root._xmouse; _y = _root._ymouse; }
Instance of Symbol 62 MovieClip "cursor" in Frame 108
onClipEvent (load) { Mouse.hide(); inside = true; } onClipEvent (enterFrame) { if (inside == true) { _x = _root._xmouse; _y = _root._ymouse; } if (_x < this._parent.box._x) { _x = (this._parent.box._x + 5); } if (_x > (this._parent.box._x + this._parent.box._width)) { _x = (this._parent.box._x + (this._parent.box._width - 6)); } if (_y > this._parent.box._y) { _y = (this._parent.box._y - 5); } if (_y < (this._parent.box._y - this._parent.box._height)) { _y = (this._parent.box._y - (this._parent.box._height - 6)); } }
Frame 109
stop();
Instance of Symbol 88 MovieClip "finish" in Frame 109
onClipEvent (load) { starcount = 0; this.gotoAndStop(2); reset = false; resetcount = 0; } onClipEvent (enterFrame) { if (starcount == 6) { this.gotoAndStop(1); if (this.hitTest(this._parent.ball)) { _root.gotoAndPlay(_root._currentframe + 1); } } if (reset == true) { starcount = 0; this.gotoAndStop(2); } if (resetcount == 6) { reset = false; resetcount = 0; } }
Instance of Symbol 92 MovieClip in Frame 109
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 109
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 109
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 109
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 109
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 109
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 54 MovieClip "ball" in Frame 109
onClipEvent (load) { inertia = 0.9; ki = 0.1; vx = 0; vy = 0; _y = this._parent.cursor._y; _x = this._parent.cursor._x; trail = true; grav = 1; } onClipEvent (enterFrame) { if (trail == true) { x = (-_x) + this._parent.cursor._x; y = (-_y) + this._parent.cursor._y; vx = (vx * inertia) + (x * ki); vy = (vy * inertia) + (y * ki); _x = (_x + vx); _y = (_y + vy); } if (trail == false) { i = 1; while (i <= 10) { bounds = _root["wall" + i].getBounds(_root); if ((_x > bounds.xMin) && (_x < bounds.xMax)) { x = _x - _root["wall" + i]._x; y = _y - _root["wall" + i]._y; angle = (_root["wall" + i]._rotation * Math.PI) / 180; x1 = (Math.cos(angle) * x) + (Math.sin(angle) * y); y1 = (Math.cos(angle) * y) - (Math.sin(angle) * x); vx1 = (Math.cos(angle) * vx) + (Math.sin(angle) * vy); vy1 = (Math.cos(angle) * vy) - (Math.sin(angle) * vx); if ((y1 > (-(_height / 2))) && (y1 < (vy1 - (_height / 2)))) { y1 = -(_height / 2); vy1 = vy1 * -0.8; x = (Math.cos(angle) * x1) - (Math.sin(angle) * y1); y = (Math.cos(angle) * y1) + (Math.sin(angle) * x1); vx = (Math.cos(angle) * vx1) - (Math.sin(angle) * vy1); vy = (Math.cos(angle) * vy1) + (Math.sin(angle) * vx1); _x = (_root["wall" + i]._x + x); _y = (_root["wall" + i]._y + y); } } i++; } vy = vy + grav; this._y = this._y + vy; vx = vx / 1.012; if (Math.abs(vx) < 0.2) { xspeed = 0; } this._x = this._x + vx; } if (_x < 0) { _x = 8; vx = vx * -1; } if (_x > Stage.width) { _x = (Stage.width - 8); vx = vx * -1; } if (_y < 0) { _y = 8; vy = vy * -1; } if (_y > Stage.height) { _y = this._parent.cursor._y; _x = this._parent.cursor._x; vx = 0; vy = 0; trail = true; this._parent.finish.reset = true; } }
Instance of Symbol 55 MovieClip in Frame 109
on (release) { this._parent.ball.trail = false; }
Instance of Symbol 60 MovieClip in Frame 109
on (release) { this.gotoAndPlay(2); }
Instance of Symbol 64 MovieClip in Frame 109
onClipEvent (enterFrame) { if (this.hitTest(this._parent.box)) { this._parent.cursor.inside = true; } else { this._parent.cursor.inside = false; } _x = _root._xmouse; _y = _root._ymouse; }
Instance of Symbol 62 MovieClip "cursor" in Frame 109
onClipEvent (load) { Mouse.hide(); inside = true; } onClipEvent (enterFrame) { if (inside == true) { _x = _root._xmouse; _y = _root._ymouse; } if (_x < this._parent.box._x) { _x = (this._parent.box._x + 5); } if (_x > (this._parent.box._x + this._parent.box._width)) { _x = (this._parent.box._x + (this._parent.box._width - 6)); } if (_y > this._parent.box._y) { _y = (this._parent.box._y - 5); } if (_y < (this._parent.box._y - this._parent.box._height)) { _y = (this._parent.box._y - (this._parent.box._height - 6)); } }
Instance of Symbol 58 MovieClip in Frame 109
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Frame 110
stop();
Instance of Symbol 88 MovieClip "finish" in Frame 110
onClipEvent (load) { starcount = 0; this.gotoAndStop(2); reset = false; resetcount = 0; } onClipEvent (enterFrame) { if (starcount == 4) { this.gotoAndStop(1); if (this.hitTest(this._parent.ball)) { _root.gotoAndPlay(_root._currentframe + 1); } } if (reset == true) { starcount = 0; this.gotoAndStop(2); } if (resetcount == 4) { reset = false; resetcount = 0; } }
Instance of Symbol 92 MovieClip in Frame 110
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 110
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 110
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 110
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 60 MovieClip in Frame 110
on (release) { this.gotoAndPlay(2); }
Instance of Symbol 54 MovieClip "ball" in Frame 110
onClipEvent (load) { inertia = 0.9; ki = 0.1; vx = 0; vy = 0; _y = this._parent.cursor._y; _x = this._parent.cursor._x; trail = true; grav = 1; } onClipEvent (enterFrame) { if (trail == true) { x = (-_x) + this._parent.cursor._x; y = (-_y) + this._parent.cursor._y; vx = (vx * inertia) + (x * ki); vy = (vy * inertia) + (y * ki); _x = (_x + vx); _y = (_y + vy); } if (trail == false) { i = 1; while (i <= 10) { bounds = _root["wall" + i].getBounds(_root); if ((_x > bounds.xMin) && (_x < bounds.xMax)) { x = _x - _root["wall" + i]._x; y = _y - _root["wall" + i]._y; angle = (_root["wall" + i]._rotation * Math.PI) / 180; x1 = (Math.cos(angle) * x) + (Math.sin(angle) * y); y1 = (Math.cos(angle) * y) - (Math.sin(angle) * x); vx1 = (Math.cos(angle) * vx) + (Math.sin(angle) * vy); vy1 = (Math.cos(angle) * vy) - (Math.sin(angle) * vx); if ((y1 > (-(_height / 2))) && (y1 < (vy1 - (_height / 2)))) { y1 = -(_height / 2); vy1 = vy1 * -0.8; x = (Math.cos(angle) * x1) - (Math.sin(angle) * y1); y = (Math.cos(angle) * y1) + (Math.sin(angle) * x1); vx = (Math.cos(angle) * vx1) - (Math.sin(angle) * vy1); vy = (Math.cos(angle) * vy1) + (Math.sin(angle) * vx1); _x = (_root["wall" + i]._x + x); _y = (_root["wall" + i]._y + y); } } i++; } vy = vy + grav; this._y = this._y + vy; vx = vx / 1.012; if (Math.abs(vx) < 0.2) { xspeed = 0; } this._x = this._x + vx; } if (_x < 0) { _x = 8; vx = vx * -1; } if (_x > Stage.width) { _x = (Stage.width - 8); vx = vx * -1; } if (_y < 0) { _y = 8; vy = vy * -1; } if (_y > Stage.height) { _y = this._parent.cursor._y; _x = this._parent.cursor._x; vx = 0; vy = 0; trail = true; this._parent.finish.reset = true; } }
Instance of Symbol 55 MovieClip in Frame 110
on (release) { this._parent.ball.trail = false; }
Instance of Symbol 58 MovieClip in Frame 110
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Instance of Symbol 64 MovieClip in Frame 110
onClipEvent (enterFrame) { if (this.hitTest(this._parent.box)) { this._parent.cursor.inside = true; } else { this._parent.cursor.inside = false; } _x = _root._xmouse; _y = _root._ymouse; }
Instance of Symbol 62 MovieClip "cursor" in Frame 110
onClipEvent (load) { Mouse.hide(); inside = true; } onClipEvent (enterFrame) { if (inside == true) { _x = _root._xmouse; _y = _root._ymouse; } if (_x < this._parent.box._x) { _x = (this._parent.box._x + 5); } if (_x > (this._parent.box._x + this._parent.box._width)) { _x = (this._parent.box._x + (this._parent.box._width - 6)); } if (_y > this._parent.box._y) { _y = (this._parent.box._y - 5); } if (_y < (this._parent.box._y - this._parent.box._height)) { _y = (this._parent.box._y - (this._parent.box._height - 6)); } }
Frame 111
stop();
Instance of Symbol 88 MovieClip "finish" in Frame 111
onClipEvent (load) { starcount = 0; this.gotoAndStop(2); reset = false; resetcount = 0; } onClipEvent (enterFrame) { if (starcount == 4) { this.gotoAndStop(1); if (this.hitTest(this._parent.ball)) { _root.gotoAndPlay(_root._currentframe + 1); } } if (reset == true) { starcount = 0; this.gotoAndStop(2); } if (resetcount == 4) { reset = false; resetcount = 0; } }
Instance of Symbol 92 MovieClip in Frame 111
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 111
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 111
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 111
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 60 MovieClip in Frame 111
on (release) { this.gotoAndPlay(2); }
Instance of Symbol 54 MovieClip "ball" in Frame 111
onClipEvent (load) { inertia = 0.9; ki = 0.1; vx = 0; vy = 0; _y = this._parent.cursor._y; _x = this._parent.cursor._x; trail = true; grav = 1; } onClipEvent (enterFrame) { if (trail == true) { x = (-_x) + this._parent.cursor._x; y = (-_y) + this._parent.cursor._y; vx = (vx * inertia) + (x * ki); vy = (vy * inertia) + (y * ki); _x = (_x + vx); _y = (_y + vy); } if (trail == false) { i = 1; while (i <= 10) { bounds = _root["wall" + i].getBounds(_root); if ((_x > bounds.xMin) && (_x < bounds.xMax)) { x = _x - _root["wall" + i]._x; y = _y - _root["wall" + i]._y; angle = (_root["wall" + i]._rotation * Math.PI) / 180; x1 = (Math.cos(angle) * x) + (Math.sin(angle) * y); y1 = (Math.cos(angle) * y) - (Math.sin(angle) * x); vx1 = (Math.cos(angle) * vx) + (Math.sin(angle) * vy); vy1 = (Math.cos(angle) * vy) - (Math.sin(angle) * vx); if ((y1 > (-(_height / 2))) && (y1 < (vy1 - (_height / 2)))) { y1 = -(_height / 2); vy1 = vy1 * -0.8; x = (Math.cos(angle) * x1) - (Math.sin(angle) * y1); y = (Math.cos(angle) * y1) + (Math.sin(angle) * x1); vx = (Math.cos(angle) * vx1) - (Math.sin(angle) * vy1); vy = (Math.cos(angle) * vy1) + (Math.sin(angle) * vx1); _x = (_root["wall" + i]._x + x); _y = (_root["wall" + i]._y + y); } } i++; } vy = vy + grav; this._y = this._y + vy; vx = vx / 1.012; if (Math.abs(vx) < 0.2) { xspeed = 0; } this._x = this._x + vx; } if (_x < 0) { _x = 8; vx = vx * -1; } if (_x > Stage.width) { _x = (Stage.width - 8); vx = vx * -1; } if (_y < 0) { _y = 8; vy = vy * -1; } if (_y > Stage.height) { _y = this._parent.cursor._y; _x = this._parent.cursor._x; vx = 0; vy = 0; trail = true; this._parent.finish.reset = true; } }
Instance of Symbol 55 MovieClip in Frame 111
on (release) { this._parent.ball.trail = false; }
Instance of Symbol 62 MovieClip "cursor" in Frame 111
onClipEvent (load) { Mouse.hide(); inside = true; } onClipEvent (enterFrame) { if (inside == true) { _x = _root._xmouse; _y = _root._ymouse; } if (_x < this._parent.box._x) { _x = (this._parent.box._x + 5); } if (_x > (this._parent.box._x + this._parent.box._width)) { _x = (this._parent.box._x + (this._parent.box._width - 6)); } if (_y > this._parent.box._y) { _y = (this._parent.box._y - 5); } if (_y < (this._parent.box._y - this._parent.box._height)) { _y = (this._parent.box._y - (this._parent.box._height - 6)); } }
Instance of Symbol 58 MovieClip in Frame 111
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Instance of Symbol 64 MovieClip in Frame 111
onClipEvent (enterFrame) { if (this.hitTest(this._parent.box)) { this._parent.cursor.inside = true; } else { this._parent.cursor.inside = false; } _x = _root._xmouse; _y = _root._ymouse; }
Frame 112
stop();
Instance of Symbol 88 MovieClip "finish" in Frame 112
onClipEvent (load) { starcount = 0; this.gotoAndStop(2); reset = false; resetcount = 0; } onClipEvent (enterFrame) { if (starcount == 3) { this.gotoAndStop(1); if (this.hitTest(this._parent.ball)) { _root.gotoAndPlay(_root._currentframe + 1); } } if (reset == true) { starcount = 0; this.gotoAndStop(2); } if (resetcount == 3) { reset = false; resetcount = 0; } }
Instance of Symbol 92 MovieClip in Frame 112
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 112
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 112
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 60 MovieClip in Frame 112
on (release) { this.gotoAndPlay(2); }
Instance of Symbol 54 MovieClip "ball" in Frame 112
onClipEvent (load) { inertia = 0.9; ki = 0.1; vx = 0; vy = 0; _y = this._parent.cursor._y; _x = this._parent.cursor._x; trail = true; grav = 1; } onClipEvent (enterFrame) { if (trail == true) { x = (-_x) + this._parent.cursor._x; y = (-_y) + this._parent.cursor._y; vx = (vx * inertia) + (x * ki); vy = (vy * inertia) + (y * ki); _x = (_x + vx); _y = (_y + vy); } if (trail == false) { i = 1; while (i <= 10) { bounds = _root["wall" + i].getBounds(_root); if ((_x > bounds.xMin) && (_x < bounds.xMax)) { x = _x - _root["wall" + i]._x; y = _y - _root["wall" + i]._y; angle = (_root["wall" + i]._rotation * Math.PI) / 180; x1 = (Math.cos(angle) * x) + (Math.sin(angle) * y); y1 = (Math.cos(angle) * y) - (Math.sin(angle) * x); vx1 = (Math.cos(angle) * vx) + (Math.sin(angle) * vy); vy1 = (Math.cos(angle) * vy) - (Math.sin(angle) * vx); if ((y1 > (-(_height / 2))) && (y1 < (vy1 - (_height / 2)))) { y1 = -(_height / 2); vy1 = vy1 * -0.8; x = (Math.cos(angle) * x1) - (Math.sin(angle) * y1); y = (Math.cos(angle) * y1) + (Math.sin(angle) * x1); vx = (Math.cos(angle) * vx1) - (Math.sin(angle) * vy1); vy = (Math.cos(angle) * vy1) + (Math.sin(angle) * vx1); _x = (_root["wall" + i]._x + x); _y = (_root["wall" + i]._y + y); } } i++; } vy = vy + grav; this._y = this._y + vy; vx = vx / 1.012; if (Math.abs(vx) < 0.2) { xspeed = 0; } this._x = this._x + vx; } if (_x < 0) { _x = 8; vx = vx * -1; } if (_x > Stage.width) { _x = (Stage.width - 8); vx = vx * -1; } if (_y < 0) { _y = 8; vy = vy * -1; } if (trail == false) { if (_y > Stage.height) { _y = this._parent.cursor._y; _x = this._parent.cursor._x; vx = 0; vy = 0; trail = true; this._parent.finish.reset = true; } } }
Instance of Symbol 55 MovieClip in Frame 112
on (release) { this._parent.ball.trail = false; }
Instance of Symbol 62 MovieClip "cursor" in Frame 112
onClipEvent (load) { Mouse.hide(); inside = true; } onClipEvent (enterFrame) { if (inside == true) { _x = _root._xmouse; _y = _root._ymouse; } if (_x < this._parent.box._x) { _x = (this._parent.box._x + 5); } if (_x > (this._parent.box._x + this._parent.box._width)) { _x = (this._parent.box._x + (this._parent.box._width - 6)); } if (_y > this._parent.box._y) { _y = (this._parent.box._y - 5); } if (_y < (this._parent.box._y - this._parent.box._height)) { _y = (this._parent.box._y - (this._parent.box._height - 6)); } }
Instance of Symbol 58 MovieClip in Frame 112
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Instance of Symbol 64 MovieClip in Frame 112
onClipEvent (enterFrame) { if (this.hitTest(this._parent.box)) { this._parent.cursor.inside = true; } else { this._parent.cursor.inside = false; } _x = _root._xmouse; _y = _root._ymouse; }
Frame 113
stop();
Instance of Symbol 88 MovieClip "finish" in Frame 113
onClipEvent (load) { starcount = 0; this.gotoAndStop(2); reset = false; resetcount = 0; } onClipEvent (enterFrame) { if (starcount == 3) { this.gotoAndStop(1); if (this.hitTest(this._parent.ball)) { _root.gotoAndPlay(_root._currentframe + 1); } } if (reset == true) { starcount = 0; this.gotoAndStop(2); } if (resetcount == 3) { reset = false; resetcount = 0; } }
Instance of Symbol 92 MovieClip in Frame 113
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 113
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 113
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 60 MovieClip in Frame 113
on (release) { this.gotoAndPlay(2); }
Instance of Symbol 54 MovieClip "ball" in Frame 113
onClipEvent (load) { inertia = 0.9; ki = 0.1; vx = 0; vy = 0; _y = this._parent.cursor._y; _x = this._parent.cursor._x; trail = true; grav = 1; } onClipEvent (enterFrame) { if (trail == true) { x = (-_x) + this._parent.cursor._x; y = (-_y) + this._parent.cursor._y; vx = (vx * inertia) + (x * ki); vy = (vy * inertia) + (y * ki); _x = (_x + vx); _y = (_y + vy); } if (trail == false) { i = 1; while (i <= 10) { bounds = _root["wall" + i].getBounds(_root); if ((_x > bounds.xMin) && (_x < bounds.xMax)) { x = _x - _root["wall" + i]._x; y = _y - _root["wall" + i]._y; angle = (_root["wall" + i]._rotation * Math.PI) / 180; x1 = (Math.cos(angle) * x) + (Math.sin(angle) * y); y1 = (Math.cos(angle) * y) - (Math.sin(angle) * x); vx1 = (Math.cos(angle) * vx) + (Math.sin(angle) * vy); vy1 = (Math.cos(angle) * vy) - (Math.sin(angle) * vx); if ((y1 > (-(_height / 2))) && (y1 < (vy1 - (_height / 2)))) { y1 = -(_height / 2); vy1 = vy1 * -0.8; x = (Math.cos(angle) * x1) - (Math.sin(angle) * y1); y = (Math.cos(angle) * y1) + (Math.sin(angle) * x1); vx = (Math.cos(angle) * vx1) - (Math.sin(angle) * vy1); vy = (Math.cos(angle) * vy1) + (Math.sin(angle) * vx1); _x = (_root["wall" + i]._x + x); _y = (_root["wall" + i]._y + y); } } i++; } vy = vy + grav; this._y = this._y + vy; vx = vx / 1.012; if (Math.abs(vx) < 0.2) { xspeed = 0; } this._x = this._x + vx; } if (_x < 0) { _x = 8; vx = vx * -1; } if (_x > Stage.width) { _x = (Stage.width - 8); vx = vx * -1; } if (_y < 0) { _y = 8; vy = vy * -1; } if (_y > Stage.height) { _y = this._parent.cursor._y; _x = this._parent.cursor._x; vx = 0; vy = 0; trail = true; this._parent.finish.reset = true; } }
Instance of Symbol 55 MovieClip in Frame 113
on (release) { this._parent.ball.trail = false; }
Instance of Symbol 81 MovieClip in Frame 113
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.ball.vx = Math.abs(_root.ball.vx) * 2; } }
Instance of Symbol 62 MovieClip "cursor" in Frame 113
onClipEvent (load) { Mouse.hide(); inside = true; } onClipEvent (enterFrame) { if (inside == true) { _x = _root._xmouse; _y = _root._ymouse; } if (_x < this._parent.box._x) { _x = (this._parent.box._x + 5); } if (_x > (this._parent.box._x + this._parent.box._width)) { _x = (this._parent.box._x + (this._parent.box._width - 6)); } if (_y > this._parent.box._y) { _y = (this._parent.box._y - 5); } if (_y < (this._parent.box._y - this._parent.box._height)) { _y = (this._parent.box._y - (this._parent.box._height - 6)); } }
Instance of Symbol 58 MovieClip in Frame 113
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Instance of Symbol 64 MovieClip in Frame 113
onClipEvent (enterFrame) { if (this.hitTest(this._parent.box)) { this._parent.cursor.inside = true; } else { this._parent.cursor.inside = false; } _x = _root._xmouse; _y = _root._ymouse; }
Frame 114
stop();
Instance of Symbol 88 MovieClip "finish" in Frame 114
onClipEvent (load) { starcount = 0; this.gotoAndStop(2); reset = false; resetcount = 0; } onClipEvent (enterFrame) { if (starcount == 3) { this.gotoAndStop(1); if (this.hitTest(this._parent.ball)) { _root.gotoAndPlay(_root._currentframe + 1); } } if (reset == true) { starcount = 0; this.gotoAndStop(2); } if (resetcount == 3) { reset = false; resetcount = 0; } }
Instance of Symbol 92 MovieClip in Frame 114
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 114
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 114
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 60 MovieClip in Frame 114
on (release) { this.gotoAndPlay(2); }
Instance of Symbol 54 MovieClip "ball" in Frame 114
onClipEvent (load) { inertia = 0.9; ki = 0.1; vx = 0; vy = 0; _y = this._parent.cursor._y; _x = this._parent.cursor._x; trail = true; grav = 1; } onClipEvent (enterFrame) { if (trail == true) { x = (-_x) + this._parent.cursor._x; y = (-_y) + this._parent.cursor._y; vx = (vx * inertia) + (x * ki); vy = (vy * inertia) + (y * ki); _x = (_x + vx); _y = (_y + vy); } if (trail == false) { i = 1; while (i <= 10) { bounds = _root["wall" + i].getBounds(_root); if ((_x > bounds.xMin) && (_x < bounds.xMax)) { x = _x - _root["wall" + i]._x; y = _y - _root["wall" + i]._y; angle = (_root["wall" + i]._rotation * Math.PI) / 180; x1 = (Math.cos(angle) * x) + (Math.sin(angle) * y); y1 = (Math.cos(angle) * y) - (Math.sin(angle) * x); vx1 = (Math.cos(angle) * vx) + (Math.sin(angle) * vy); vy1 = (Math.cos(angle) * vy) - (Math.sin(angle) * vx); if ((y1 > (-(_height / 2))) && (y1 < (vy1 - (_height / 2)))) { y1 = -(_height / 2); vy1 = vy1 * -0.8; x = (Math.cos(angle) * x1) - (Math.sin(angle) * y1); y = (Math.cos(angle) * y1) + (Math.sin(angle) * x1); vx = (Math.cos(angle) * vx1) - (Math.sin(angle) * vy1); vy = (Math.cos(angle) * vy1) + (Math.sin(angle) * vx1); _x = (_root["wall" + i]._x + x); _y = (_root["wall" + i]._y + y); } } i++; } vy = vy + grav; this._y = this._y + vy; vx = vx / 1.012; if (Math.abs(vx) < 0.2) { xspeed = 0; } this._x = this._x + vx; } if (_x < 0) { _x = 8; vx = vx * -1; } if (_x > Stage.width) { _x = (Stage.width - 8); vx = vx * -1; } if (_y < 0) { _y = 8; vy = vy * -1; } if (trail == false) { if (_y > Stage.height) { _y = this._parent.cursor._y; _x = this._parent.cursor._x; vx = 0; vy = 0; trail = true; this._parent.finish.reset = true; } } }
Instance of Symbol 55 MovieClip in Frame 114
on (release) { this._parent.ball.trail = false; }
Instance of Symbol 81 MovieClip in Frame 114
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.ball.vy = Math.abs(_root.ball.vy) * -2; } }
Instance of Symbol 81 MovieClip in Frame 114
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.ball.vy = Math.abs(_root.ball.vy) * -2; } }
Instance of Symbol 62 MovieClip "cursor" in Frame 114
onClipEvent (load) { Mouse.hide(); inside = true; } onClipEvent (enterFrame) { if (inside == true) { _x = _root._xmouse; _y = _root._ymouse; } if (_x < this._parent.box._x) { _x = (this._parent.box._x + 5); } if (_x > (this._parent.box._x + this._parent.box._width)) { _x = (this._parent.box._x + (this._parent.box._width - 6)); } if (_y > this._parent.box._y) { _y = (this._parent.box._y - 5); } if (_y < (this._parent.box._y - this._parent.box._height)) { _y = (this._parent.box._y - (this._parent.box._height - 6)); } }
Instance of Symbol 58 MovieClip in Frame 114
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Instance of Symbol 64 MovieClip in Frame 114
onClipEvent (enterFrame) { if (this.hitTest(this._parent.box)) { this._parent.cursor.inside = true; } else { this._parent.cursor.inside = false; } _x = _root._xmouse; _y = _root._ymouse; }
Frame 115
stop();
Instance of Symbol 88 MovieClip "finish" in Frame 115
onClipEvent (load) { starcount = 0; this.gotoAndStop(2); reset = false; resetcount = 0; } onClipEvent (enterFrame) { if (starcount == 5) { this.gotoAndStop(1); if (this.hitTest(this._parent.ball)) { _root.gotoAndPlay(_root._currentframe + 1); } } if (reset == true) { starcount = 0; this.gotoAndStop(2); } if (resetcount == 5) { reset = false; resetcount = 0; } }
Instance of Symbol 92 MovieClip in Frame 115
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 115
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 115
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 115
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 115
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 54 MovieClip "ball" in Frame 115
onClipEvent (load) { inertia = 0.9; ki = 0.1; vx = 0; vy = 0; _y = this._parent.cursor._y; _x = this._parent.cursor._x; trail = true; grav = 1; } onClipEvent (enterFrame) { if (trail == true) { x = (-_x) + this._parent.cursor._x; y = (-_y) + this._parent.cursor._y; vx = (vx * inertia) + (x * ki); vy = (vy * inertia) + (y * ki); _x = (_x + vx); _y = (_y + vy); } if (trail == false) { i = 1; while (i <= 10) { bounds = _root["wall" + i].getBounds(_root); if ((_x > bounds.xMin) && (_x < bounds.xMax)) { x = _x - _root["wall" + i]._x; y = _y - _root["wall" + i]._y; angle = (_root["wall" + i]._rotation * Math.PI) / 180; x1 = (Math.cos(angle) * x) + (Math.sin(angle) * y); y1 = (Math.cos(angle) * y) - (Math.sin(angle) * x); vx1 = (Math.cos(angle) * vx) + (Math.sin(angle) * vy); vy1 = (Math.cos(angle) * vy) - (Math.sin(angle) * vx); if ((y1 > (-(_height / 2))) && (y1 < (vy1 - (_height / 2)))) { y1 = -(_height / 2); vy1 = vy1 * -0.8; x = (Math.cos(angle) * x1) - (Math.sin(angle) * y1); y = (Math.cos(angle) * y1) + (Math.sin(angle) * x1); vx = (Math.cos(angle) * vx1) - (Math.sin(angle) * vy1); vy = (Math.cos(angle) * vy1) + (Math.sin(angle) * vx1); _x = (_root["wall" + i]._x + x); _y = (_root["wall" + i]._y + y); } } i++; } vy = vy + grav; this._y = this._y + vy; vx = vx / 1.012; if (Math.abs(vx) < 0.2) { xspeed = 0; } this._x = this._x + vx; } if (_x < 0) { _x = 8; vx = vx * -1; } if (_x > Stage.width) { _x = (Stage.width - 8); vx = vx * -1; } if (_y < 0) { _y = 8; vy = vy * -1; } if (trail == false) { if (_y > Stage.height) { _y = this._parent.cursor._y; _x = this._parent.cursor._x; vx = 0; vy = 0; trail = true; this._parent.finish.reset = true; } } }
Instance of Symbol 55 MovieClip in Frame 115
on (release) { this._parent.ball.trail = false; }
Instance of Symbol 81 MovieClip in Frame 115
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.ball.vx = Math.abs(_root.ball.vx) * -2; } }
Instance of Symbol 81 MovieClip in Frame 115
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.ball.vy = Math.abs(_root.ball.vy) * -2; } }
Instance of Symbol 62 MovieClip "cursor" in Frame 115
onClipEvent (load) { Mouse.hide(); inside = true; } onClipEvent (enterFrame) { if (inside == true) { _x = _root._xmouse; _y = _root._ymouse; } if (_x < this._parent.box._x) { _x = (this._parent.box._x + 5); } if (_x > (this._parent.box._x + this._parent.box._width)) { _x = (this._parent.box._x + (this._parent.box._width - 6)); } if (_y > this._parent.box._y) { _y = (this._parent.box._y - 5); } if (_y < (this._parent.box._y - this._parent.box._height)) { _y = (this._parent.box._y - (this._parent.box._height - 6)); } }
Instance of Symbol 58 MovieClip in Frame 115
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Instance of Symbol 60 MovieClip in Frame 115
on (release) { this.gotoAndPlay(2); }
Instance of Symbol 64 MovieClip in Frame 115
onClipEvent (enterFrame) { if (this.hitTest(this._parent.box)) { this._parent.cursor.inside = true; } else { this._parent.cursor.inside = false; } _x = _root._xmouse; _y = _root._ymouse; }
Frame 116
stop();
Instance of Symbol 88 MovieClip "finish" in Frame 116
onClipEvent (load) { starcount = 0; this.gotoAndStop(2); reset = false; resetcount = 0; } onClipEvent (enterFrame) { if (starcount == 2) { this.gotoAndStop(1); if (this.hitTest(this._parent.ball)) { _root.gotoAndPlay(_root._currentframe + 1); } } if (reset == true) { starcount = 0; this.gotoAndStop(2); } if (resetcount == 2) { reset = false; resetcount = 0; } }
Instance of Symbol 92 MovieClip in Frame 116
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 116
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 54 MovieClip "ball" in Frame 116
onClipEvent (load) { inertia = 0.9; ki = 0.1; vx = 0; vy = 0; _y = this._parent.cursor._y; _x = this._parent.cursor._x; trail = true; grav = 1; } onClipEvent (enterFrame) { if (trail == true) { x = (-_x) + this._parent.cursor._x; y = (-_y) + this._parent.cursor._y; vx = (vx * inertia) + (x * ki); vy = (vy * inertia) + (y * ki); _x = (_x + vx); _y = (_y + vy); } if (trail == false) { i = 1; while (i <= 10) { bounds = _root["wall" + i].getBounds(_root); if ((_x > bounds.xMin) && (_x < bounds.xMax)) { x = _x - _root["wall" + i]._x; y = _y - _root["wall" + i]._y; angle = (_root["wall" + i]._rotation * Math.PI) / 180; x1 = (Math.cos(angle) * x) + (Math.sin(angle) * y); y1 = (Math.cos(angle) * y) - (Math.sin(angle) * x); vx1 = (Math.cos(angle) * vx) + (Math.sin(angle) * vy); vy1 = (Math.cos(angle) * vy) - (Math.sin(angle) * vx); if ((y1 > (-(_height / 2))) && (y1 < (vy1 - (_height / 2)))) { y1 = -(_height / 2); vy1 = vy1 * -0.8; x = (Math.cos(angle) * x1) - (Math.sin(angle) * y1); y = (Math.cos(angle) * y1) + (Math.sin(angle) * x1); vx = (Math.cos(angle) * vx1) - (Math.sin(angle) * vy1); vy = (Math.cos(angle) * vy1) + (Math.sin(angle) * vx1); _x = (_root["wall" + i]._x + x); _y = (_root["wall" + i]._y + y); } } i++; } vy = vy + grav; this._y = this._y + vy; vx = vx / 1.012; if (Math.abs(vx) < 0.2) { xspeed = 0; } this._x = this._x + vx; } if (_x < 0) { _x = 8; vx = vx * -1; } if (_x > Stage.width) { _x = (Stage.width - 8); vx = vx * -1; } if (_y < 0) { _y = 8; vy = vy * -1; } if (trail == false) { if (_y > Stage.height) { _y = this._parent.cursor._y; _x = this._parent.cursor._x; vx = 0; vy = 0; trail = true; this._parent.finish.reset = true; } } }
Instance of Symbol 55 MovieClip in Frame 116
on (release) { this._parent.ball.trail = false; }
Instance of Symbol 81 MovieClip in Frame 116
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.ball.vy = Math.abs(_root.ball.vy) * 2; } }
Instance of Symbol 81 MovieClip in Frame 116
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.ball.vy = Math.abs(_root.ball.vy) * 2; } }
Instance of Symbol 62 MovieClip "cursor" in Frame 116
onClipEvent (load) { Mouse.hide(); inside = true; } onClipEvent (enterFrame) { if (inside == true) { _x = _root._xmouse; _y = _root._ymouse; } if (_x < this._parent.box._x) { _x = (this._parent.box._x + 5); } if (_x > (this._parent.box._x + this._parent.box._width)) { _x = (this._parent.box._x + (this._parent.box._width - 6)); } if (_y > this._parent.box._y) { _y = (this._parent.box._y - 5); } if (_y < (this._parent.box._y - this._parent.box._height)) { _y = (this._parent.box._y - (this._parent.box._height - 6)); } }
Instance of Symbol 58 MovieClip in Frame 116
on (release) { _root.gotoAndPlay(_root._currentframe + 1); }
Instance of Symbol 60 MovieClip in Frame 116
on (release) { this.gotoAndPlay(2); }
Instance of Symbol 64 MovieClip in Frame 116
onClipEvent (enterFrame) { if (this.hitTest(this._parent.box)) { this._parent.cursor.inside = true; } else { this._parent.cursor.inside = false; } _x = _root._xmouse; _y = _root._ymouse; }
Frame 117
stop();
Instance of Symbol 88 MovieClip "finish" in Frame 117
onClipEvent (load) { starcount = 0; this.gotoAndStop(2); reset = false; resetcount = 0; } onClipEvent (enterFrame) { if (starcount == 9) { this.gotoAndStop(1); if (this.hitTest(this._parent.ball)) { _root.gotoAndPlay(_root._currentframe + 1); } } if (reset == true) { starcount = 0; this.gotoAndStop(2); } if (resetcount == 9) { reset = false; resetcount = 0; } }
Instance of Symbol 92 MovieClip in Frame 117
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 117
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 117
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 62 MovieClip "cursor" in Frame 117
onClipEvent (load) { Mouse.hide(); inside = true; } onClipEvent (enterFrame) { if (inside == true) { _x = _root._xmouse; _y = _root._ymouse; } if (_x < this._parent.box._x) { _x = (this._parent.box._x + 5); } if (_x > (this._parent.box._x + this._parent.box._width)) { _x = (this._parent.box._x + (this._parent.box._width - 6)); } if (_y > this._parent.box._y) { _y = (this._parent.box._y - 5); } if (_y < (this._parent.box._y - this._parent.box._height)) { _y = (this._parent.box._y - (this._parent.box._height - 6)); } }
Instance of Symbol 92 MovieClip in Frame 117
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 117
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 117
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 117
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 117
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 92 MovieClip in Frame 117
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (hit == false) { if (hitTest(this._parent.ball)) { this.gotoAndPlay(2); hit = true; this._parent.finish.starcount = this._parent.finish.starcount + 1; } } if (this._parent.finish.reset == true) { this.gotoAndStop(1); hit = false; this._parent.finish.resetcount = this._parent.finish.resetcount + 1; } }
Instance of Symbol 54 MovieClip "ball" in Frame 117
onClipEvent (load) { inertia = 0.9; ki = 0.1; vx = 0; vy = 0; _y = this._parent.cursor._y; _x = this._parent.cursor._x; trail = true; grav = 1; } onClipEvent (enterFrame) { if (trail == true) { x = (-_x) + this._parent.cursor._x; y = (-_y) + this._parent.cursor._y; vx = (vx * inertia) + (x * ki); vy = (vy * inertia) + (y * ki); _x = (_x + vx); _y = (_y + vy); } if (trail == false) { i = 1; while (i <= 10) { bounds = _root["wall" + i].getBounds(_root); if ((_x > bounds.xMin) && (_x < bounds.xMax)) { x = _x - _root["wall" + i]._x; y = _y - _root["wall" + i]._y; angle = (_root["wall" + i]._rotation * Math.PI) / 180; x1 = (Math.cos(angle) * x) + (Math.sin(angle) * y); y1 = (Math.cos(angle) * y) - (Math.sin(angle) * x); vx1 = (Math.cos(angle) * vx) + (Math.sin(angle) * vy); vy1 = (Math.cos(angle) * vy) - (Math.sin(angle) * vx); if ((y1 > (-(_height / 2))) && (y1 < (vy1 - (_height / 2)))) { y1 = -(_height / 2); vy1 = vy1 * -0.8; x = (Math.cos(angle) * x1) - (Math.sin(angle) * y1); y = (Math.cos(angle) * y1) + (Math.sin(angle) * x1); vx = (Math.cos(angle) * vx1) - (Math.sin(angle) * vy1); vy = (Math.cos(angle) * vy1) + (Math.sin(angle) * vx1); _x = (_root["wall" + i]._x + x); _y = (_root["wall" + i]._y + y); } } i++; } vy = vy + grav; this._y = this._y + vy; vx = vx / 1.012; if (Math.abs(vx) < 0.2) { xspeed = 0; } this._x = this._x + vx; } if (_x < 0) { _x = 8; vx = vx * -1; } if (_x > Stage.width) { _x = (Stage.width - 8); vx = vx * -1; } if (_y < 0) { _y = 8; vy = vy * -1; } if (trail == false) { if (_y > Stage.height) { _y = this._parent.cursor._y; _x = this._parent.cursor._x; vx = 0; vy = 0; trail = true; this._parent.finish.reset = true; } } }
Instance of Symbol 55 MovieClip in Frame 117
on (release) { this._parent.ball.trail = false; }
Instance of Symbol 81 MovieClip in Frame 117
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.ball.vx = Math.abs(_root.ball.vx) * 2; } }
Instance of Symbol 81 MovieClip in Frame 117
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.ball.vy = Math.abs(_root.ball.vy) * -2; } }
Instance of Symbol 81 MovieClip in Frame 117
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.ball.vx = Math.abs(_root.ball.vx) * 2; } }
Instance of Symbol 60 MovieClip in Frame 117
on (release) { this.gotoAndPlay(2); }
Instance of Symbol 64 MovieClip in Frame 117
onClipEvent (enterFrame) { if (this.hitTest(this._parent.box)) { this._parent.cursor.inside = true; } else { this._parent.cursor.inside = false; } _x = _root._xmouse; _y = _root._ymouse; }
Frame 118
stop(); Mouse.show();
Symbol 3 Button
on (release) { getURL ("http://www.armorgames.com/", "_blank"); }
Symbol 6 Button
on (release) { getURL ("http://www.dp-games.com/", "_blank"); }
Symbol 15 Button
on (release) { getURL ("http://www.newgrounds.com", "blank"); }
Symbol 20 Button
on (release) { _root.play(); }
Symbol 21 MovieClip Frame 1
_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded != 100) { bar._xscale = PercentLoaded; } else { gotoAndStop ("loaded"); }
Symbol 21 MovieClip Frame 2
gotoAndPlay (1);
Symbol 29 MovieClip Frame 135
_root.play();
Symbol 52 MovieClip Frame 1
stop();
Symbol 60 MovieClip Frame 1
stop();
Symbol 88 MovieClip Frame 1
stop();
Symbol 88 MovieClip Frame 2
stop();
Symbol 92 MovieClip Frame 1
stop();
Symbol 92 MovieClip Frame 15
stop();
Symbol 109 Button
on (release) { gotoAndPlay (86); }

Library Items

Symbol 1 FontUsed by:2 4 5
Symbol 2 TextUses:1Used by:3
Symbol 3 ButtonUses:2Used by:Timeline
Symbol 4 TextUses:1Used by:6
Symbol 5 TextUses:1Used by:6
Symbol 6 ButtonUses:4 5Used by:Timeline
Symbol 7 GraphicUsed by:21 35 36
Symbol 8 GraphicUsed by:9
Symbol 9 MovieClipUses:8Used by:21
Symbol 10 GraphicUsed by:21
Symbol 11 GraphicUsed by:14 15
Symbol 12 GraphicUsed by:14 15
Symbol 13 GraphicUsed by:14 15
Symbol 14 MovieClipUses:11 12 13Used by:15
Symbol 15 ButtonUses:14 11 12 13Used by:21
Symbol 16 GraphicUsed by:20
Symbol 17 GraphicUsed by:20
Symbol 18 GraphicUsed by:20
Symbol 19 GraphicUsed by:20
Symbol 20 ButtonUses:16 17 18 19Used by:21
Symbol 21 MovieClipUses:7 9 10 15 20Used by:Timeline
Symbol 22 GraphicUsed by:23
Symbol 23 MovieClipUses:22Used by:29
Symbol 24 GraphicUsed by:29
Symbol 25 GraphicUsed by:29
Symbol 26 GraphicUsed by:29
Symbol 27 GraphicUsed by:28
Symbol 28 MovieClipUses:27Used by:29
Symbol 29 MovieClipUses:23 24 25 26 28 SS1Used by:Timeline
Symbol 30 GraphicUsed by:Timeline
Symbol 31 GraphicUsed by:32
Symbol 32 MovieClipUses:31Used by:Timeline
Symbol 33 GraphicUsed by:34
Symbol 34 MovieClipUses:33Used by:Timeline
Symbol 35 MovieClipUses:7Used by:Timeline
Symbol 36 MovieClipUses:7Used by:Timeline
Symbol 37 GraphicUsed by:38
Symbol 38 MovieClipUses:37Used by:Timeline
Symbol 39 GraphicUsed by:Timeline
Symbol 40 FontUsed by:41 43 107 108
Symbol 41 TextUses:40Used by:Timeline
Symbol 42 FontUsed by:43 44 46 56 57 59 65 66 67 68 71 72 73 74 75 82 83 84 85 86 87 89 93 94 95 96 97 98 99 100 101 102 103 104 105 106
Symbol 43 TextUses:40 42Used by:Timeline
Symbol 44 TextUses:42Used by:45
Symbol 45 MovieClipUses:44Used by:Timeline
Symbol 46 TextUses:42Used by:Timeline
Symbol 47 SoundUsed by:60  Timeline
Symbol 48 GraphicUsed by:Timeline
Symbol 49 GraphicUsed by:50
Symbol 50 MovieClipUses:49Used by:Timeline
Symbol 51 GraphicUsed by:52 55
Symbol 52 MovieClipUses:51Used by:88  Timeline
Symbol 53 GraphicUsed by:54
Symbol 54 MovieClipUses:53Used by:Timeline
Symbol 55 MovieClipUses:51Used by:Timeline
Symbol 56 TextUses:42Used by:Timeline
Symbol 57 TextUses:42Used by:58
Symbol 58 MovieClipUses:57Used by:Timeline
Symbol 59 TextUses:42Used by:60
Symbol 60 MovieClipUses:59 47Used by:Timeline
Symbol 61 GraphicUsed by:62
Symbol 62 MovieClipUses:61Used by:Timeline
Symbol 63 GraphicUsed by:64
Symbol 64 MovieClipUses:63Used by:Timeline
Symbol 65 TextUses:42Used by:Timeline
Symbol 66 TextUses:42Used by:Timeline
Symbol 67 TextUses:42Used by:Timeline
Symbol 68 TextUses:42Used by:Timeline
Symbol 69 GraphicUsed by:70
Symbol 70 MovieClipUses:69Used by:Timeline
Symbol 71 TextUses:42Used by:Timeline
Symbol 72 TextUses:42Used by:Timeline
Symbol 73 TextUses:42Used by:Timeline
Symbol 74 TextUses:42Used by:Timeline
Symbol 75 TextUses:42Used by:Timeline
Symbol 76 GraphicUsed by:77
Symbol 77 MovieClipUses:76Used by:81
Symbol 78 GraphicUsed by:79
Symbol 79 MovieClipUses:78Used by:80
Symbol 80 MovieClipUses:79Used by:81
Symbol 81 MovieClipUses:77 80Used by:Timeline
Symbol 82 TextUses:42Used by:Timeline
Symbol 83 TextUses:42Used by:Timeline
Symbol 84 TextUses:42Used by:Timeline
Symbol 85 TextUses:42Used by:Timeline
Symbol 86 TextUses:42Used by:Timeline
Symbol 87 TextUses:42Used by:Timeline
Symbol 88 MovieClipUses:52Used by:Timeline
Symbol 89 TextUses:42Used by:Timeline
Symbol 90 GraphicUsed by:91
Symbol 91 MovieClipUses:90Used by:92
Symbol 92 MovieClipUses:91Used by:Timeline
Symbol 93 TextUses:42Used by:Timeline
Symbol 94 TextUses:42Used by:Timeline
Symbol 95 TextUses:42Used by:Timeline
Symbol 96 TextUses:42Used by:Timeline
Symbol 97 TextUses:42Used by:Timeline
Symbol 98 TextUses:42Used by:Timeline
Symbol 99 TextUses:42Used by:Timeline
Symbol 100 TextUses:42Used by:Timeline
Symbol 101 TextUses:42Used by:Timeline
Symbol 102 TextUses:42Used by:Timeline
Symbol 103 TextUses:42Used by:Timeline
Symbol 104 TextUses:42Used by:Timeline
Symbol 105 TextUses:42Used by:Timeline
Symbol 106 TextUses:42Used by:Timeline
Symbol 107 TextUses:40Used by:Timeline
Symbol 108 TextUses:40Used by:109
Symbol 109 ButtonUses:108Used by:Timeline
Streaming Sound 1Used by:Symbol 29 MovieClip

Instance Names

"box"Frame 87Symbol 50 MovieClip
"ball"Frame 87Symbol 54 MovieClip
"cursor"Frame 87Symbol 62 MovieClip
"box"Frame 88Symbol 50 MovieClip
"ball"Frame 88Symbol 54 MovieClip
"cursor"Frame 88Symbol 62 MovieClip
"box"Frame 89Symbol 50 MovieClip
"ball"Frame 89Symbol 54 MovieClip
"cursor"Frame 89Symbol 62 MovieClip
"box"Frame 90Symbol 50 MovieClip
"ball"Frame 90Symbol 54 MovieClip
"cursor"Frame 90Symbol 62 MovieClip
"box"Frame 91Symbol 50 MovieClip
"ball"Frame 91Symbol 54 MovieClip
"cursor"Frame 91Symbol 62 MovieClip
"box"Frame 92Symbol 50 MovieClip
"ball"Frame 92Symbol 54 MovieClip
"wall1"Frame 92Symbol 70 MovieClip
"cursor"Frame 92Symbol 62 MovieClip
"box"Frame 93Symbol 50 MovieClip
"ball"Frame 93Symbol 54 MovieClip
"wall1"Frame 93Symbol 70 MovieClip
"wall2"Frame 93Symbol 70 MovieClip
"wall3"Frame 93Symbol 70 MovieClip
"wall4"Frame 93Symbol 70 MovieClip
"wall5"Frame 93Symbol 70 MovieClip
"wall6"Frame 93Symbol 70 MovieClip
"cursor"Frame 93Symbol 62 MovieClip
"box"Frame 94Symbol 50 MovieClip
"ball"Frame 94Symbol 54 MovieClip
"wall1"Frame 94Symbol 70 MovieClip
"wall2"Frame 94Symbol 70 MovieClip
"wall3"Frame 94Symbol 70 MovieClip
"cursor"Frame 94Symbol 62 MovieClip
"box"Frame 95Symbol 50 MovieClip
"ball"Frame 95Symbol 54 MovieClip
"wall3"Frame 95Symbol 70 MovieClip
"cursor"Frame 95Symbol 62 MovieClip
"box"Frame 96Symbol 50 MovieClip
"ball"Frame 96Symbol 54 MovieClip
"wall2"Frame 96Symbol 70 MovieClip
"wall1"Frame 96Symbol 70 MovieClip
"wall3"Frame 96Symbol 70 MovieClip
"cursor"Frame 96Symbol 62 MovieClip
"box"Frame 97Symbol 50 MovieClip
"ball"Frame 97Symbol 54 MovieClip
"cursor"Frame 97Symbol 62 MovieClip
"box"Frame 98Symbol 50 MovieClip
"ball"Frame 98Symbol 54 MovieClip
"cursor"Frame 98Symbol 62 MovieClip
"box"Frame 99Symbol 50 MovieClip
"ball"Frame 99Symbol 54 MovieClip
"wall3"Frame 99Symbol 70 MovieClip
"wall2"Frame 99Symbol 70 MovieClip
"cursor"Frame 99Symbol 62 MovieClip
"box"Frame 100Symbol 50 MovieClip
"ball"Frame 100Symbol 54 MovieClip
"cursor"Frame 100Symbol 62 MovieClip
"box"Frame 101Symbol 50 MovieClip
"ball"Frame 101Symbol 54 MovieClip
"wall3"Frame 101Symbol 70 MovieClip
"wall2"Frame 101Symbol 70 MovieClip
"cursor"Frame 101Symbol 62 MovieClip
"box"Frame 103Symbol 50 MovieClip
"finish"Frame 103Symbol 88 MovieClip
"ball"Frame 103Symbol 54 MovieClip
"cursor"Frame 103Symbol 62 MovieClip
"box"Frame 104Symbol 50 MovieClip
"finish"Frame 104Symbol 88 MovieClip
"ball"Frame 104Symbol 54 MovieClip
"cursor"Frame 104Symbol 62 MovieClip
"box"Frame 105Symbol 50 MovieClip
"finish"Frame 105Symbol 88 MovieClip
"ball"Frame 105Symbol 54 MovieClip
"cursor"Frame 105Symbol 62 MovieClip
"box"Frame 106Symbol 50 MovieClip
"finish"Frame 106Symbol 88 MovieClip
"ball"Frame 106Symbol 54 MovieClip
"cursor"Frame 106Symbol 62 MovieClip
"finish"Frame 107Symbol 88 MovieClip
"ball"Frame 107Symbol 54 MovieClip
"box"Frame 107Symbol 50 MovieClip
"cursor"Frame 107Symbol 62 MovieClip
"finish"Frame 108Symbol 88 MovieClip
"ball"Frame 108Symbol 54 MovieClip
"box"Frame 108Symbol 50 MovieClip
"wall1"Frame 108Symbol 70 MovieClip
"cursor"Frame 108Symbol 62 MovieClip
"finish"Frame 109Symbol 88 MovieClip
"ball"Frame 109Symbol 54 MovieClip
"box"Frame 109Symbol 50 MovieClip
"wall1"Frame 109Symbol 70 MovieClip
"wall2"Frame 109Symbol 70 MovieClip
"wall3"Frame 109Symbol 70 MovieClip
"wall4"Frame 109Symbol 70 MovieClip
"wall5"Frame 109Symbol 70 MovieClip
"wall6"Frame 109Symbol 70 MovieClip
"cursor"Frame 109Symbol 62 MovieClip
"finish"Frame 110Symbol 88 MovieClip
"ball"Frame 110Symbol 54 MovieClip
"box"Frame 110Symbol 50 MovieClip
"wall1"Frame 110Symbol 70 MovieClip
"wall2"Frame 110Symbol 70 MovieClip
"wall3"Frame 110Symbol 70 MovieClip
"cursor"Frame 110Symbol 62 MovieClip
"finish"Frame 111Symbol 88 MovieClip
"ball"Frame 111Symbol 54 MovieClip
"box"Frame 111Symbol 50 MovieClip
"wall3"Frame 111Symbol 70 MovieClip
"cursor"Frame 111Symbol 62 MovieClip
"finish"Frame 112Symbol 88 MovieClip
"ball"Frame 112Symbol 54 MovieClip
"box"Frame 112Symbol 50 MovieClip
"wall2"Frame 112Symbol 70 MovieClip
"wall1"Frame 112Symbol 70 MovieClip
"wall3"Frame 112Symbol 70 MovieClip
"cursor"Frame 112Symbol 62 MovieClip
"finish"Frame 113Symbol 88 MovieClip
"ball"Frame 113Symbol 54 MovieClip
"box"Frame 113Symbol 50 MovieClip
"cursor"Frame 113Symbol 62 MovieClip
"finish"Frame 114Symbol 88 MovieClip
"ball"Frame 114Symbol 54 MovieClip
"box"Frame 114Symbol 50 MovieClip
"cursor"Frame 114Symbol 62 MovieClip
"finish"Frame 115Symbol 88 MovieClip
"ball"Frame 115Symbol 54 MovieClip
"box"Frame 115Symbol 50 MovieClip
"wall3"Frame 115Symbol 70 MovieClip
"wall2"Frame 115Symbol 70 MovieClip
"cursor"Frame 115Symbol 62 MovieClip
"finish"Frame 116Symbol 88 MovieClip
"ball"Frame 116Symbol 54 MovieClip
"box"Frame 116Symbol 50 MovieClip
"cursor"Frame 116Symbol 62 MovieClip
"finish"Frame 117Symbol 88 MovieClip
"box"Frame 117Symbol 50 MovieClip
"cursor"Frame 117Symbol 62 MovieClip
"ball"Frame 117Symbol 54 MovieClip
"wall3"Frame 117Symbol 70 MovieClip
"wall2"Frame 117Symbol 70 MovieClip
"bar"Symbol 21 MovieClip Frame 1Symbol 9 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.

Labels

"loaded"Symbol 21 MovieClip Frame 3




http://swfchan.com/3/13716/info.shtml
Created: 4/6 -2019 10:06:26 Last modified: 4/6 -2019 10:06:26 Server time: 05/05 -2024 09:05:08