| STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 231347 |
| /disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2623 · P5245 |
![]() | This is the info page for Flash #72974 |
| Kevin Lancer (KLAN) |
| graphics by jenno1 |
| music by terraflames |
| AREA: PUSHBALL |
| Kevin Lancer (PRODUCTIONS): |
| PUSHBALL 1.0 |
| GOOD MORNING AGENT. Welcome to pushball. you have the mission to put your pushball in the Target your pushball should come out of the pipe use the hover-pentagons to push the ball. good luck, agent. go-> |
| YOUR MISSION: |
| TARGET |
| LAUNCH |
| LAUNCH |
| TARGET |
| LV.I |
| <space> |
| Reset |
| Simulation in Progress |
| . . . |
| . |
| . . |
| well done AGENT. i see you understand the princip... go-> |
| level completed: |
| LV.2 |
| Level 2 |
| COMPLETE |
| well done AGENT. let's move on to a harder quest go-> |
| LV.3 |
| Level 3 |
| You'll never beat this next level |
| well done AGENT. sometimes you have to try twice or more times but you're doing well so far go-> |
| LV.4 |
| Level 4 |
| Told you it was possible |
| This next ones got a bit of a twist |
| well done AGENT. the next level will be a little tricky. everything is upsidedown go-> |
| LV.5 |
| Level 5 |
| Thats better |
| well done AGENT. you weren't as shocked as the other agents when everything turned. go-> |
| Begin |
| Begin |
| BREAK |
| in the next level there will be jumppads wich will push your pushball up with an enormous power. its a little tricky but i know you can do it,agent! go-> |
| additional info: |
| LV.6 |
| Level 6 |
| well done AGENT. you know there is just a little amount of agents who went so far without getting crazy... go-> |
| LV.7 |
| Level 7 |
| Final level |
| well done AGENT. now there is only one quest left and you made it. so go out there and show your skills! go-> |
| final level |
| Ember Ball |
repeat the mission-> |
| Mission Accomplished! well done agent you passed this test. you have aprooved your aptitude, your good sense of physics and your patience. i know you could do it. if you want you can |
ActionScript [AS1/AS2]
Frame 2Stage.showMenu = false;Instance of Symbol 35 MovieClip in Frame 2onClipEvent (enterFrame) { Mouse.hide(); this._x = _root._xmouse; this._y = _root._ymouse; }Frame 3stop(); my_sound = new Sound(); my_sound.attachSound("mix1"); stop();Frame 4stop();Instance of Symbol 91 MovieClip in Frame 4onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { yVel = yVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 150; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 91 MovieClip in Frame 4onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { yVel = yVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 300; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 97 MovieClip "player" in Frame 4on (press) { this.startDrag(false); } on (release, releaseOutside) { this.stopDrag(); } onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { a = Math.atan((this._x - _root.ball._x) / (_root.ball._y - this._y)); sina = Math.sin(a); cosa = Math.cos(a); sin2a = Math.pow(sina, 2); cos2a = Math.pow(cosa, 2); xVel = (xVel * ((f * cos2a) - (e * sin2a))) + (((yVel * sina) * cosa) * (f + e)); yVel = (((xVel * sina) * cosa) * (f + e)) + (yVel * ((f * sin2a) - (e * cos2a))); }; _root.ball._x = this._x + (1.04 * (_root.ball._x - this._x)); _root.ball._y = this._y + (1.04 * (_root.ball._y - this._y)); tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 77 MovieClip in Frame 4onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - _y) / 4)); _x = (_x + ((_root.player._x - _x) / 4)); }Instance of Symbol 97 MovieClip "player2" in Frame 4on (press) { this.startDrag(false); } on (release, releaseOutside) { this.stopDrag(); } onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { a = Math.atan((this._x - _root.ball._x) / (_root.ball._y - this._y)); sina = Math.sin(a); cosa = Math.cos(a); sin2a = Math.pow(sina, 2); cos2a = Math.pow(cosa, 2); xVel = (xVel * ((f * cos2a) - (e * sin2a))) + (((yVel * sina) * cosa) * (f + e)); yVel = (((xVel * sina) * cosa) * (f + e)) + (yVel * ((f * sin2a) - (e * cos2a))); }; _root.ball._x = this._x + (1.04 * (_root.ball._x - this._x)); _root.ball._y = this._y + (1.04 * (_root.ball._y - this._y)); tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 77 MovieClip in Frame 4onClipEvent (enterFrame) { _y = (_y + ((_root.player2._y - _y) / 4)); _x = (_x + ((_root.player2._x - _x) / 4)); }Frame 5stop();Instance of Symbol 93 MovieClip "ball" in Frame 5onClipEvent (load) { var acceleration = 0.005; var termVelocity = 30; var yVel = 0; var xVel = 0; var e = 0.8; var f = 0.8; var dragged = 0; } onClipEvent (enterFrame) { if (this._y < 395) { if (dragged == 0) { yVel = yVel + ((termVelocity - yVel) * acceleration); } } else if (this._y > 395) { yVel = yVel * (-1 * e); xVel = xVel * f; this._y = 395; } if (this._x > 500) { xVel = xVel * (-1 * e); yVel = yVel * f; this._x = 500; } else if (this._x < 20) { xVel = xVel * (-1 * e); yVel = yVel * f; this._x = 20; } if (dragged == 0) { this._y = this._y + yVel; this._x = this._x + xVel; } }Instance of Symbol 89 MovieClip in Frame 5onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.gotoAndPlay("end1"); } }Instance of Symbol 91 MovieClip in Frame 5onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { yVel = yVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 160; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 91 MovieClip in Frame 5onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { yVel = yVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 325; tellTarget ("") { }; tellTarget ("") { } } }Frame 6stop();Frame 7stop();Instance of Symbol 91 MovieClip in Frame 7onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { yVel = yVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 160; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 91 MovieClip in Frame 7onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { yVel = yVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 275; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 97 MovieClip "player" in Frame 7on (press) { this.startDrag(false); } on (release, releaseOutside) { this.stopDrag(); } onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { a = Math.atan((this._x - _root.ball._x) / (_root.ball._y - this._y)); sina = Math.sin(a); cosa = Math.cos(a); sin2a = Math.pow(sina, 2); cos2a = Math.pow(cosa, 2); xVel = (xVel * ((f * cos2a) - (e * sin2a))) + (((yVel * sina) * cosa) * (f + e)); yVel = (((xVel * sina) * cosa) * (f + e)) + (yVel * ((f * sin2a) - (e * cos2a))); }; _root.ball._x = this._x + (1.04 * (_root.ball._x - this._x)); _root.ball._y = this._y + (1.04 * (_root.ball._y - this._y)); tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 77 MovieClip in Frame 7onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - _y) / 4)); _x = (_x + ((_root.player._x - _x) / 4)); }Instance of Symbol 97 MovieClip "player2" in Frame 7on (press) { this.startDrag(false); } on (release, releaseOutside) { this.stopDrag(); } onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { a = Math.atan((this._x - _root.ball._x) / (_root.ball._y - this._y)); sina = Math.sin(a); cosa = Math.cos(a); sin2a = Math.pow(sina, 2); cos2a = Math.pow(cosa, 2); xVel = (xVel * ((f * cos2a) - (e * sin2a))) + (((yVel * sina) * cosa) * (f + e)); yVel = (((xVel * sina) * cosa) * (f + e)) + (yVel * ((f * sin2a) - (e * cos2a))); }; _root.ball._x = this._x + (1.04 * (_root.ball._x - this._x)); _root.ball._y = this._y + (1.04 * (_root.ball._y - this._y)); tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 77 MovieClip in Frame 7onClipEvent (enterFrame) { _y = (_y + ((_root.player2._y - _y) / 4)); _x = (_x + ((_root.player2._x - _x) / 4)); }Instance of Symbol 97 MovieClip "player3" in Frame 7on (press) { this.startDrag(false); } on (release, releaseOutside) { this.stopDrag(); } onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { a = Math.atan((this._x - _root.ball._x) / (_root.ball._y - this._y)); sina = Math.sin(a); cosa = Math.cos(a); sin2a = Math.pow(sina, 2); cos2a = Math.pow(cosa, 2); xVel = (xVel * ((f * cos2a) - (e * sin2a))) + (((yVel * sina) * cosa) * (f + e)); yVel = (((xVel * sina) * cosa) * (f + e)) + (yVel * ((f * sin2a) - (e * cos2a))); }; _root.ball._x = this._x + (1.04 * (_root.ball._x - this._x)); _root.ball._y = this._y + (1.04 * (_root.ball._y - this._y)); tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 77 MovieClip in Frame 7onClipEvent (enterFrame) { _y = (_y + ((_root.player3._y - _y) / 4)); _x = (_x + ((_root.player3._x - _x) / 4)); }Frame 8stop();Instance of Symbol 93 MovieClip "ball" in Frame 8onClipEvent (load) { var acceleration = 0.005; var termVelocity = 30; var yVel = 0; var xVel = 0; var e = 0.8; var f = 0.8; var dragged = 0; } onClipEvent (enterFrame) { if (this._y < 395) { if (dragged == 0) { yVel = yVel + ((termVelocity - yVel) * acceleration); } } else if (this._y > 395) { yVel = yVel * (-1 * e); xVel = xVel * f; this._y = 395; } if (this._x > 500) { xVel = xVel * (-1 * e); yVel = yVel * f; this._x = 500; } else if (this._x < 20) { xVel = xVel * (-1 * e); yVel = yVel * f; this._x = 20; } if (dragged == 0) { this._y = this._y + yVel; this._x = this._x + xVel; } }Instance of Symbol 89 MovieClip in Frame 8onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.gotoAndPlay("end2"); } }Instance of Symbol 91 MovieClip in Frame 8onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { yVel = yVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 275; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 91 MovieClip in Frame 8onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { yVel = yVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 160; tellTarget ("") { }; tellTarget ("") { } } }Frame 9stop();Frame 10stop();Instance of Symbol 91 MovieClip in Frame 10onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { xVel = xVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 325; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 91 MovieClip in Frame 10onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { yVel = yVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 275; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 97 MovieClip "player" in Frame 10on (press) { this.startDrag(false); } on (release, releaseOutside) { this.stopDrag(); } onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { a = Math.atan((this._x - _root.ball._x) / (_root.ball._y - this._y)); sina = Math.sin(a); cosa = Math.cos(a); sin2a = Math.pow(sina, 2); cos2a = Math.pow(cosa, 2); xVel = (xVel * ((f * cos2a) - (e * sin2a))) + (((yVel * sina) * cosa) * (f + e)); yVel = (((xVel * sina) * cosa) * (f + e)) + (yVel * ((f * sin2a) - (e * cos2a))); }; _root.ball._x = this._x + (1.04 * (_root.ball._x - this._x)); _root.ball._y = this._y + (1.04 * (_root.ball._y - this._y)); tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 77 MovieClip in Frame 10onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - _y) / 4)); _x = (_x + ((_root.player._x - _x) / 4)); }Frame 11stop();Instance of Symbol 93 MovieClip "ball" in Frame 11onClipEvent (load) { var acceleration = 0.005; var termVelocity = 30; var yVel = 0; var xVel = 0; var e = 0.8; var f = 0.8; var dragged = 0; } onClipEvent (enterFrame) { if (this._y < 395) { if (dragged == 0) { yVel = yVel + ((termVelocity - yVel) * acceleration); } } else if (this._y > 395) { yVel = yVel * (-1 * e); xVel = xVel * f; this._y = 395; } if (this._x > 500) { xVel = xVel * (-1 * e); yVel = yVel * f; this._x = 500; } else if (this._x < 20) { xVel = xVel * (-1 * e); yVel = yVel * f; this._x = 20; } if (dragged == 0) { this._y = this._y + yVel; this._x = this._x + xVel; } }Instance of Symbol 89 MovieClip in Frame 11onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.gotoAndPlay("end3"); } }Instance of Symbol 91 MovieClip in Frame 11onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { xVel = xVel * (-1 * e); xVel = xVel * f; }; _root.ball._x = 160; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 91 MovieClip in Frame 11onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { yVel = yVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 245; tellTarget ("") { }; tellTarget ("") { } } }Frame 12stop();Frame 13stop();Instance of Symbol 89 MovieClip in Frame 13onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.gotoAndPlay("end3"); } }Instance of Symbol 91 MovieClip in Frame 13onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { yVel = yVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 245; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 97 MovieClip "player" in Frame 13on (press) { this.startDrag(false); } on (release, releaseOutside) { this.stopDrag(); } onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { a = Math.atan((this._x - _root.ball._x) / (_root.ball._y - this._y)); sina = Math.sin(a); cosa = Math.cos(a); sin2a = Math.pow(sina, 2); cos2a = Math.pow(cosa, 2); xVel = (xVel * ((f * cos2a) - (e * sin2a))) + (((yVel * sina) * cosa) * (f + e)); yVel = (((xVel * sina) * cosa) * (f + e)) + (yVel * ((f * sin2a) - (e * cos2a))); }; _root.ball._x = this._x + (1.04 * (_root.ball._x - this._x)); _root.ball._y = this._y + (1.04 * (_root.ball._y - this._y)); tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 77 MovieClip in Frame 13onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - _y) / 4)); _x = (_x + ((_root.player._x - _x) / 4)); }Instance of Symbol 97 MovieClip "player3" in Frame 13on (press) { this.startDrag(false); } on (release, releaseOutside) { this.stopDrag(); } onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { a = Math.atan((this._x - _root.ball._x) / (_root.ball._y - this._y)); sina = Math.sin(a); cosa = Math.cos(a); sin2a = Math.pow(sina, 2); cos2a = Math.pow(cosa, 2); xVel = (xVel * ((f * cos2a) - (e * sin2a))) + (((yVel * sina) * cosa) * (f + e)); yVel = (((xVel * sina) * cosa) * (f + e)) + (yVel * ((f * sin2a) - (e * cos2a))); }; _root.ball._x = this._x + (1.04 * (_root.ball._x - this._x)); _root.ball._y = this._y + (1.04 * (_root.ball._y - this._y)); tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 77 MovieClip in Frame 13onClipEvent (enterFrame) { _y = (_y + ((_root.player3._y - _y) / 4)); _x = (_x + ((_root.player3._x - _x) / 4)); }Instance of Symbol 91 MovieClip in Frame 13onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { xVel = xVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 325; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 91 MovieClip in Frame 13onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { yVel = yVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 270; tellTarget ("") { }; tellTarget ("") { } } }Frame 14stop();Instance of Symbol 93 MovieClip "ball" in Frame 14onClipEvent (load) { var acceleration = 0.005; var termVelocity = 30; var yVel = 0; var xVel = 0; var e = 0.8; var f = 0.8; var dragged = 0; } onClipEvent (enterFrame) { if (this._y < 395) { if (dragged == 0) { yVel = yVel + ((termVelocity - yVel) * acceleration); } } else if (this._y > 395) { yVel = yVel * (-1 * e); xVel = xVel * f; this._y = 395; } if (this._x > 500) { xVel = xVel * (-1 * e); yVel = yVel * f; this._x = 500; } else if (this._x < 20) { xVel = xVel * (-1 * e); yVel = yVel * f; this._x = 20; } if (dragged == 0) { this._y = this._y + yVel; this._x = this._x + xVel; } }Instance of Symbol 89 MovieClip in Frame 14onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.gotoAndPlay("end4"); } }Instance of Symbol 91 MovieClip in Frame 14onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { yVel = yVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 140; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 91 MovieClip in Frame 14onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { xVel = xVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 325; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 91 MovieClip in Frame 14onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { yVel = yVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 270; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 139 MovieClip in Frame 14onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.ball._y = _root.ball._y + 5; } }Frame 15stop();Frame 16stop();Instance of Symbol 89 MovieClip in Frame 16onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.gotoAndPlay("end3"); } }Instance of Symbol 91 MovieClip in Frame 16onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { yVel = yVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 175; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 97 MovieClip "player" in Frame 16on (press) { this.startDrag(false); } on (release, releaseOutside) { this.stopDrag(); } onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { a = Math.atan((this._x - _root.ball._x) / (_root.ball._y - this._y)); sina = Math.sin(a); cosa = Math.cos(a); sin2a = Math.pow(sina, 2); cos2a = Math.pow(cosa, 2); xVel = (xVel * ((f * cos2a) - (e * sin2a))) + (((yVel * sina) * cosa) * (f + e)); yVel = (((xVel * sina) * cosa) * (f + e)) + (yVel * ((f * sin2a) - (e * cos2a))); }; _root.ball._x = this._x + (1.04 * (_root.ball._x - this._x)); _root.ball._y = this._y + (1.04 * (_root.ball._y - this._y)); tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 77 MovieClip in Frame 16onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - _y) / 4)); _x = (_x + ((_root.player._x - _x) / 4)); }Frame 17stop();Instance of Symbol 93 MovieClip "ball" in Frame 17onClipEvent (load) { var acceleration = 0.005; var termVelocity = -30; var yVel = 0; var xVel = 0; var e = 0.8; var f = 0.8; var dragged = 0; } onClipEvent (enterFrame) { if (this._y < 395) { if (dragged == 0) { yVel = yVel + ((termVelocity - yVel) * acceleration); } } else if (this._y > 395) { yVel = yVel * (-1 * e); xVel = xVel * f; this._y = 395; } if (this._x > 500) { xVel = xVel * (-1 * e); yVel = yVel * f; this._x = 500; } else if (this._x < 20) { xVel = xVel * (-1 * e); yVel = yVel * f; this._x = 20; } if (dragged == 0) { this._y = this._y + yVel; this._x = this._x + xVel; } }Instance of Symbol 89 MovieClip in Frame 17onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.gotoAndPlay("end5"); } }Instance of Symbol 91 MovieClip in Frame 17onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { yVel = yVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 0; tellTarget ("") { }; tellTarget ("") { } } }Frame 18stop();Frame 19stop(); stop();Instance of Symbol 93 MovieClip "ball" in Frame 19onClipEvent (load) { var acceleration = 0.005; var termVelocity = 30; var yVel = 0; var xVel = 0; var e = 0.8; var f = 0.8; var dragged = 0; } onClipEvent (enterFrame) { if (this._y < 395) { if (dragged == 0) { yVel = yVel + ((termVelocity - yVel) * acceleration); } } else if (this._y > 395) { yVel = yVel * (-1 * e); xVel = xVel * f; this._y = 395; } if (this._x > 500) { xVel = xVel * (-1 * e); yVel = yVel * f; this._x = 500; } else if (this._x < 20) { xVel = xVel * (-1 * e); yVel = yVel * f; this._x = 20; } if (dragged == 0) { this._y = this._y + yVel; this._x = this._x + xVel; } }Instance of Symbol 165 MovieClip in Frame 19onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { yVel = yVel * (2 * e); xVel = xVel * f; }; _root.ball._y = 375; tellTarget ("") { }; tellTarget ("") { } } }Frame 20stop();Instance of Symbol 89 MovieClip in Frame 20onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.gotoAndPlay("end3"); } }Instance of Symbol 91 MovieClip in Frame 20onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { xVel = xVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 325; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 91 MovieClip in Frame 20onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { yVel = yVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 270; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 97 MovieClip "player" in Frame 20on (press) { this.startDrag(false); } on (release, releaseOutside) { this.stopDrag(); } onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { a = Math.atan((this._x - _root.ball._x) / (_root.ball._y - this._y)); sina = Math.sin(a); cosa = Math.cos(a); sin2a = Math.pow(sina, 2); cos2a = Math.pow(cosa, 2); xVel = (xVel * ((f * cos2a) - (e * sin2a))) + (((yVel * sina) * cosa) * (f + e)); yVel = (((xVel * sina) * cosa) * (f + e)) + (yVel * ((f * sin2a) - (e * cos2a))); }; _root.ball._x = this._x + (1.04 * (_root.ball._x - this._x)); _root.ball._y = this._y + (1.04 * (_root.ball._y - this._y)); tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 77 MovieClip in Frame 20onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - _y) / 4)); _x = (_x + ((_root.player._x - _x) / 4)); }Instance of Symbol 97 MovieClip "player2" in Frame 20on (press) { this.startDrag(false); } on (release, releaseOutside) { this.stopDrag(); } onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { a = Math.atan((this._x - _root.ball._x) / (_root.ball._y - this._y)); sina = Math.sin(a); cosa = Math.cos(a); sin2a = Math.pow(sina, 2); cos2a = Math.pow(cosa, 2); xVel = (xVel * ((f * cos2a) - (e * sin2a))) + (((yVel * sina) * cosa) * (f + e)); yVel = (((xVel * sina) * cosa) * (f + e)) + (yVel * ((f * sin2a) - (e * cos2a))); }; _root.ball._x = this._x + (1.04 * (_root.ball._x - this._x)); _root.ball._y = this._y + (1.04 * (_root.ball._y - this._y)); tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 77 MovieClip in Frame 20onClipEvent (enterFrame) { _y = (_y + ((_root.player2._y - _y) / 4)); _x = (_x + ((_root.player2._x - _x) / 4)); }Frame 21stop();Instance of Symbol 93 MovieClip "ball" in Frame 21onClipEvent (load) { var acceleration = 0.005; var termVelocity = 30; var yVel = 0; var xVel = 0; var e = 0.8; var f = 0.8; var dragged = 0; } onClipEvent (enterFrame) { if (this._y < 395) { if (dragged == 0) { yVel = yVel + ((termVelocity - yVel) * acceleration); } } else if (this._y > 395) { yVel = yVel * (-1 * e); xVel = xVel * f; this._y = 395; } if (this._x > 500) { xVel = xVel * (-1 * e); yVel = yVel * f; this._x = 500; } else if (this._x < 20) { xVel = xVel * (-1 * e); yVel = yVel * f; this._x = 20; } if (dragged == 0) { this._y = this._y + yVel; this._x = this._x + xVel; } }Instance of Symbol 89 MovieClip in Frame 21onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.gotoAndPlay("end6"); } }Instance of Symbol 91 MovieClip in Frame 21onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { yVel = yVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 170; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 172 MovieClip in Frame 21onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.ball._x = _root.ball._x - 5; } }Frame 22stop();Frame 23stop();Instance of Symbol 89 MovieClip in Frame 23onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.gotoAndPlay("end6"); } }Instance of Symbol 165 MovieClip in Frame 23onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { yVel = yVel * (2 * e); xVel = xVel * f; }; _root.ball._y = 295; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 91 MovieClip in Frame 23onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { xVel = xVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 325; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 91 MovieClip in Frame 23onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { yVel = yVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 270; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 91 MovieClip in Frame 23onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { yVel = yVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 270; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 91 MovieClip in Frame 23onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { xVel = xVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 325; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 91 MovieClip in Frame 23onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { xVel = xVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 325; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 97 MovieClip "player2" in Frame 23on (press) { this.startDrag(false); } on (release, releaseOutside) { this.stopDrag(); } onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { a = Math.atan((this._x - _root.ball._x) / (_root.ball._y - this._y)); sina = Math.sin(a); cosa = Math.cos(a); sin2a = Math.pow(sina, 2); cos2a = Math.pow(cosa, 2); xVel = (xVel * ((f * cos2a) - (e * sin2a))) + (((yVel * sina) * cosa) * (f + e)); yVel = (((xVel * sina) * cosa) * (f + e)) + (yVel * ((f * sin2a) - (e * cos2a))); }; _root.ball._x = this._x + (1.04 * (_root.ball._x - this._x)); _root.ball._y = this._y + (1.04 * (_root.ball._y - this._y)); tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 77 MovieClip in Frame 23onClipEvent (enterFrame) { _y = (_y + ((_root.player2._y - _y) / 4)); _x = (_x + ((_root.player2._x - _x) / 4)); }Frame 24stop();Instance of Symbol 93 MovieClip "ball" in Frame 24onClipEvent (load) { var acceleration = 0.005; var termVelocity = 30; var yVel = 0; var xVel = 0; var e = 0.8; var f = 0.8; var dragged = 0; } onClipEvent (enterFrame) { if (this._y < 395) { if (dragged == 0) { yVel = yVel + ((termVelocity - yVel) * acceleration); } } else if (this._y > 395) { yVel = yVel * (-1 * e); xVel = xVel * f; this._y = 395; } if (this._x > 500) { xVel = xVel * (-1 * e); yVel = yVel * f; this._x = 500; } else if (this._x < 20) { xVel = xVel * (-1 * e); yVel = yVel * f; this._x = 20; } if (dragged == 0) { this._y = this._y + yVel; this._x = this._x + xVel; } }Instance of Symbol 89 MovieClip in Frame 24onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.gotoAndPlay("end7"); } }Instance of Symbol 91 MovieClip in Frame 24onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { yVel = yVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 245; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 91 MovieClip in Frame 24onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { yVel = yVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 345; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 172 MovieClip in Frame 24onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.ball._x = _root.ball._x - 5; } }Instance of Symbol 180 MovieClip in Frame 24onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.player._y = _root.player._y + 5; } }Instance of Symbol 172 MovieClip in Frame 24onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.ball._x = _root.ball._x - 5; } }Instance of Symbol 180 MovieClip in Frame 24onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.player._y = _root.player._y - 5; } }Instance of Symbol 182 MovieClip in Frame 24onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.player._y = _root.player._y + 5; } } onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.player._y = _root.player._y + 5; } }Instance of Symbol 182 MovieClip in Frame 24onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.player._y = _root.player._y + 5; } } onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.player._y = _root.player._y + 5; } }Instance of Symbol 182 MovieClip in Frame 24onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.player._x = _root.player._x - 5; } }Instance of Symbol 182 MovieClip in Frame 24onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.player._x = _root.player._x + 5; } }Frame 25stop();Frame 26stop();Instance of Symbol 89 MovieClip in Frame 26onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.gotoAndPlay("end7"); } }Instance of Symbol 91 MovieClip in Frame 26onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { yVel = yVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 245; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 91 MovieClip in Frame 26onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { xVel = xVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 325; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 91 MovieClip in Frame 26onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { yVel = yVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 245; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 97 MovieClip "player" in Frame 26on (press) { this.startDrag(false); } on (release, releaseOutside) { this.stopDrag(); } onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { a = Math.atan((this._x - _root.ball._x) / (_root.ball._y - this._y)); sina = Math.sin(a); cosa = Math.cos(a); sin2a = Math.pow(sina, 2); cos2a = Math.pow(cosa, 2); xVel = (xVel * ((f * cos2a) - (e * sin2a))) + (((yVel * sina) * cosa) * (f + e)); yVel = (((xVel * sina) * cosa) * (f + e)) + (yVel * ((f * sin2a) - (e * cos2a))); }; _root.ball._x = this._x + (1.04 * (_root.ball._x - this._x)); _root.ball._y = this._y + (1.04 * (_root.ball._y - this._y)); tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 77 MovieClip in Frame 26onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - _y) / 4)); _x = (_x + ((_root.player._x - _x) / 4)); }Instance of Symbol 97 MovieClip "player2" in Frame 26on (press) { this.startDrag(false); } on (release, releaseOutside) { this.stopDrag(); } onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { a = Math.atan((this._x - _root.ball._x) / (_root.ball._y - this._y)); sina = Math.sin(a); cosa = Math.cos(a); sin2a = Math.pow(sina, 2); cos2a = Math.pow(cosa, 2); xVel = (xVel * ((f * cos2a) - (e * sin2a))) + (((yVel * sina) * cosa) * (f + e)); yVel = (((xVel * sina) * cosa) * (f + e)) + (yVel * ((f * sin2a) - (e * cos2a))); }; _root.ball._x = this._x + (1.04 * (_root.ball._x - this._x)); _root.ball._y = this._y + (1.04 * (_root.ball._y - this._y)); tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 77 MovieClip in Frame 26onClipEvent (enterFrame) { _y = (_y + ((_root.player2._y - _y) / 4)); _x = (_x + ((_root.player2._x - _x) / 4)); }Instance of Symbol 97 MovieClip "player3" in Frame 26on (press) { this.startDrag(false); } on (release, releaseOutside) { this.stopDrag(); } onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { a = Math.atan((this._x - _root.ball._x) / (_root.ball._y - this._y)); sina = Math.sin(a); cosa = Math.cos(a); sin2a = Math.pow(sina, 2); cos2a = Math.pow(cosa, 2); xVel = (xVel * ((f * cos2a) - (e * sin2a))) + (((yVel * sina) * cosa) * (f + e)); yVel = (((xVel * sina) * cosa) * (f + e)) + (yVel * ((f * sin2a) - (e * cos2a))); }; _root.ball._x = this._x + (1.04 * (_root.ball._x - this._x)); _root.ball._y = this._y + (1.04 * (_root.ball._y - this._y)); tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 77 MovieClip in Frame 26onClipEvent (enterFrame) { _y = (_y + ((_root.player3._y - _y) / 4)); _x = (_x + ((_root.player3._x - _x) / 4)); }Frame 27stop();Instance of Symbol 93 MovieClip "ball" in Frame 27onClipEvent (load) { var acceleration = 0.005; var termVelocity = 30; var yVel = 0; var xVel = 0; var e = 0.8; var f = 0.8; var dragged = 0; } onClipEvent (enterFrame) { if (this._y < 395) { if (dragged == 0) { yVel = yVel + ((termVelocity - yVel) * acceleration); } } else if (this._y > 395) { yVel = yVel * (-1 * e); xVel = xVel * f; this._y = 395; } if (this._x > 500) { xVel = xVel * (-1 * e); yVel = yVel * f; this._x = 500; } else if (this._x < 20) { xVel = xVel * (-1 * e); yVel = yVel * f; this._x = 20; } if (dragged == 0) { this._y = this._y + yVel; this._x = this._x + xVel; } }Instance of Symbol 89 MovieClip in Frame 27onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.gotoAndPlay("endfinal"); } }Instance of Symbol 91 MovieClip in Frame 27onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { yVel = yVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 250; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 91 MovieClip in Frame 27onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { xVel = xVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 315; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 91 MovieClip in Frame 27onClipEvent (enterFrame) { if (this.hitTest(_root.ball._x, _root.ball._y, true)) { tellTarget (_root.ball) { yVel = yVel * (-1 * e); xVel = xVel * f; }; _root.ball._y = 140; tellTarget ("") { }; tellTarget ("") { } } }Instance of Symbol 191 MovieClip in Frame 27onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.player._y = _root.player._y + 5; } } onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.player._y = _root.player._y + 5; } }Instance of Symbol 193 MovieClip in Frame 27onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.player._x = _root.player._x + 5; } }Instance of Symbol 172 MovieClip in Frame 27onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.ball._x = _root.ball._x - 5; } }Frame 28stop();Symbol 26 MovieClip Frame 1_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded != 100) { bar._xscale = PercentLoaded; } else { gotoAndPlay ("loaded"); }Symbol 26 MovieClip Frame 2gotoAndPlay (1);Symbol 26 MovieClip Frame 40_root.play();Symbol 51 MovieClip Frame 24stop();Symbol 80 Buttonon (release) { _root.nextFrame(); }Symbol 86 Buttonon (release) { gotoAndPlay ("play1"); }Symbol 100 Buttonon (keyPress "<End>") { stopAllSounds(); }Symbol 104 Buttonon (keyPress "<Space>") { gotoAndPlay ("edit1"); }Symbol 118 Buttonon (release) { gotoAndPlay ("play2"); }Symbol 121 Buttonon (keyPress "<Space>") { gotoAndPlay ("edit2"); }Symbol 125 MovieClip Frame 1stop();Symbol 126 Buttonon (release) { gotoAndPlay ("edit3"); }Symbol 128 Buttonon (release) { gotoAndPlay ("play3"); }Symbol 130 Buttonon (keyPress "<Space>") { gotoAndPlay ("edit3"); }Symbol 132 Buttonon (release) { gotoAndPlay ("edit4"); }Symbol 135 Buttonon (release) { gotoAndPlay ("play4"); }Symbol 137 Buttonon (keyPress "<Space>") { gotoAndPlay ("edit4"); }Symbol 141 Buttonon (release) { gotoAndPlay ("edit5"); }Symbol 148 Buttonon (release) { gotoAndPlay ("play5"); }Symbol 149 Buttonon (keyPress "<Space>") { gotoAndPlay ("edit5"); }Symbol 151 Buttonon (release) { gotoAndPlay ("edit5"); }Symbol 152 Buttonon (release) { gotoAndPlay ("edit5"); }Symbol 155 MovieClip Frame 54stop();Symbol 156 Buttonon (release) { gotoAndPlay ("break1"); }Symbol 160 Buttonon (release) { gotoAndPlay ("edit6"); }Symbol 168 Buttonon (release) { gotoAndPlay ("play6"); }Symbol 170 Buttonon (keyPress "<Space>") { gotoAndPlay ("edit6"); }Symbol 174 Buttonon (release) { gotoAndPlay ("edit7"); }Symbol 176 Buttonon (release) { gotoAndPlay ("play7"); }Symbol 178 Buttonon (keyPress "<Space>") { gotoAndPlay ("edit7"); }Symbol 184 Buttonon (release) { gotoAndPlay ("editfinal"); }Symbol 187 Buttonon (release) { gotoAndPlay ("playfinal"); }Symbol 189 Buttonon (keyPress "<Space>") { gotoAndPlay ("editfinal"); }Symbol 196 Buttonon (release) { gotoAndPlay ("preloader"); }Symbol 199 Buttonon (release) { _root.gotoAndPlay(2); }
Library Items
| Symbol 1 Sound [mix1] | ||
| Symbol 2 Graphic | Used by:Timeline | |
| Symbol 3 Graphic | Used by:26 | |
| Symbol 4 Graphic | Used by:5 | |
| Symbol 5 MovieClip | Uses:4 | Used by:26 |
| Symbol 6 Graphic | Used by:7 | |
| Symbol 7 MovieClip | Uses:6 | Used by:26 |
| Symbol 8 Graphic | Used by:19 | |
| Symbol 9 Font | Used by:10 27 28 30 36 52 53 64 88 98 107 116 117 120 127 129 134 136 144 147 157 162 163 169 175 177 186 188 197 198 | |
| Symbol 10 Text | Uses:9 | Used by:11 |
| Symbol 11 MovieClip | Uses:10 | Used by:19 |
| Symbol 12 Graphic | Used by:19 | |
| Symbol 13 Graphic | Used by:19 | |
| Symbol 14 Graphic | Used by:19 | |
| Symbol 15 Graphic | Used by:19 | |
| Symbol 16 Graphic | Used by:19 | |
| Symbol 17 Graphic | Used by:19 | |
| Symbol 18 Graphic | Used by:19 | |
| Symbol 19 MovieClip | Uses:8 11 12 13 14 15 16 17 18 | Used by:26 |
| Symbol 20 ShapeTweening | Used by:26 | |
| Symbol 21 Graphic | Used by:26 | |
| Symbol 22 ShapeTweening | Used by:26 | |
| Symbol 23 Graphic | Used by:26 | |
| Symbol 24 Graphic | Used by:26 | |
| Symbol 25 Graphic | Used by:26 | |
| Symbol 26 MovieClip | Uses:3 5 7 19 20 21 22 23 24 25 | Used by:Timeline |
| Symbol 27 Text | Uses:9 | Used by:Timeline |
| Symbol 28 Text | Uses:9 | Used by:Timeline |
| Symbol 29 Graphic | Used by:31 | |
| Symbol 30 Text | Uses:9 | Used by:31 |
| Symbol 31 MovieClip | Uses:29 30 | Used by:Timeline |
| Symbol 32 Font | Used by:33 122 123 131 133 140 142 143 150 154 158 159 161 173 183 185 195 | |
| Symbol 33 Text | Uses:32 | Used by:Timeline |
| Symbol 34 Graphic | Used by:35 | |
| Symbol 35 MovieClip | Uses:34 | Used by:Timeline |
| Symbol 36 Text | Uses:9 | Used by:Timeline |
| Symbol 37 Sound | Used by:Timeline | |
| Symbol 38 Graphic | Used by:Timeline | |
| Symbol 39 Graphic | Used by:51 | |
| Symbol 40 Graphic | Used by:51 54 | |
| Symbol 41 Graphic | Used by:51 | |
| Symbol 42 Graphic | Used by:48 | |
| Symbol 43 Graphic | Used by:48 | |
| Symbol 44 Graphic | Used by:48 | |
| Symbol 45 Graphic | Used by:48 | |
| Symbol 46 Graphic | Used by:48 | |
| Symbol 47 Graphic | Used by:48 | |
| Symbol 48 MovieClip | Uses:42 43 44 45 46 47 | Used by:51 |
| Symbol 49 Graphic | Used by:50 | |
| Symbol 50 MovieClip | Uses:49 | Used by:51 |
| Symbol 51 MovieClip | Uses:39 40 41 48 50 | Used by:Timeline |
| Symbol 52 Text | Uses:9 | Used by:Timeline |
| Symbol 53 Text | Uses:9 | Used by:Timeline |
| Symbol 54 MovieClip | Uses:40 | Used by:Timeline |
| Symbol 55 Graphic | Used by:60 | |
| Symbol 56 Graphic | Used by:60 | |
| Symbol 57 Graphic | Used by:58 | |
| Symbol 58 Button | Uses:57 | Used by:60 |
| Symbol 59 Graphic | Used by:60 | |
| Symbol 60 MovieClip | Uses:55 56 58 59 | Used by:62 |
| Symbol 61 Graphic | Used by:62 66 75 79 80 199 | |
| Symbol 62 Button | Uses:60 61 | Used by:Timeline |
| Symbol 63 Graphic | Used by:65 | |
| Symbol 64 Text | Uses:9 | Used by:65 |
| Symbol 65 MovieClip | Uses:63 64 | Used by:66 |
| Symbol 66 Button | Uses:65 61 | Used by:Timeline |
| Symbol 67 Graphic | Used by:75 | |
| Symbol 68 Graphic | Used by:69 | |
| Symbol 69 MovieClip | Uses:68 | Used by:74 |
| Symbol 70 Graphic | Used by:74 | |
| Symbol 71 Graphic | Used by:73 | |
| Symbol 72 Graphic | Used by:73 | |
| Symbol 73 MovieClip | Uses:71 72 | Used by:74 |
| Symbol 74 MovieClip | Uses:69 70 73 | Used by:75 |
| Symbol 75 Button | Uses:67 74 61 | Used by:Timeline |
| Symbol 76 Graphic | Used by:77 | |
| Symbol 77 MovieClip | Uses:76 | Used by:78 Timeline |
| Symbol 78 MovieClip | Uses:77 | Used by:79 |
| Symbol 79 Button | Uses:78 61 | Used by:Timeline |
| Symbol 80 Button | Uses:61 | Used by:Timeline |
| Symbol 81 Font | Used by:83 84 105 106 | |
| Symbol 82 Font | ||
| Symbol 83 Text | Uses:81 | Used by:86 118 128 135 148 168 176 187 |
| Symbol 84 Text | Uses:81 | Used by:86 118 128 135 148 168 176 187 |
| Symbol 85 Graphic | Used by:86 | |
| Symbol 86 Button | Uses:83 84 85 | Used by:Timeline |
| Symbol 87 Graphic | Used by:89 | |
| Symbol 88 Text | Uses:9 | Used by:89 |
| Symbol 89 MovieClip | Uses:87 88 | Used by:Timeline |
| Symbol 90 Graphic | Used by:91 | |
| Symbol 91 MovieClip | Uses:90 | Used by:Timeline |
| Symbol 92 Graphic | Used by:93 | |
| Symbol 93 MovieClip | Uses:92 | Used by:Timeline |
| Symbol 94 Graphic | Used by:95 | |
| Symbol 95 Button | Uses:94 | Used by:Timeline |
| Symbol 96 Graphic | Used by:97 | |
| Symbol 97 MovieClip | Uses:96 | Used by:Timeline |
| Symbol 98 Text | Uses:9 | Used by:Timeline |
| Symbol 99 Graphic | Used by:100 | |
| Symbol 100 Button | Uses:99 | Used by:Timeline |
| Symbol 101 Bitmap | Used by:102 | |
| Symbol 102 Graphic | Uses:101 | Used by:Timeline |
| Symbol 103 Graphic | Used by:104 121 130 137 149 170 178 189 | |
| Symbol 104 Button | Uses:103 | Used by:Timeline |
| Symbol 105 Text | Uses:81 | Used by:Timeline |
| Symbol 106 Text | Uses:81 | Used by:Timeline |
| Symbol 107 Text | Uses:9 | Used by:Timeline |
| Symbol 108 Font | Used by:109 110 111 | |
| Symbol 109 Text | Uses:108 | Used by:112 |
| Symbol 110 Text | Uses:108 | Used by:112 |
| Symbol 111 Text | Uses:108 | Used by:112 |
| Symbol 112 MovieClip | Uses:109 110 111 | Used by:Timeline |
| Symbol 113 Graphic | Used by:Timeline | |
| Symbol 114 Graphic | Used by:115 | |
| Symbol 115 Button | Uses:114 | Used by:Timeline |
| Symbol 116 Text | Uses:9 | Used by:Timeline |
| Symbol 117 Text | Uses:9 | Used by:Timeline |
| Symbol 118 Button | Uses:83 84 | Used by:Timeline |
| Symbol 119 Font | ||
| Symbol 120 Text | Uses:9 | Used by:Timeline |
| Symbol 121 Button | Uses:103 | Used by:Timeline |
| Symbol 122 Text | Uses:32 | Used by:Timeline |
| Symbol 123 Text | Uses:32 | Used by:153 155 Timeline |
| Symbol 124 Graphic | Used by:125 126 132 141 151 152 156 174 184 196 | |
| Symbol 125 MovieClip | Uses:124 | Used by:126 132 141 151 152 156 174 184 196 |
| Symbol 126 Button | Uses:125 124 | Used by:Timeline |
| Symbol 127 Text | Uses:9 | Used by:Timeline |
| Symbol 128 Button | Uses:83 84 | Used by:Timeline |
| Symbol 129 Text | Uses:9 | Used by:Timeline |
| Symbol 130 Button | Uses:103 | Used by:Timeline |
| Symbol 131 Text | Uses:32 | Used by:Timeline |
| Symbol 132 Button | Uses:125 124 | Used by:Timeline |
| Symbol 133 Text | Uses:32 | Used by:Timeline |
| Symbol 134 Text | Uses:9 | Used by:Timeline |
| Symbol 135 Button | Uses:83 84 | Used by:Timeline |
| Symbol 136 Text | Uses:9 | Used by:Timeline |
| Symbol 137 Button | Uses:103 | Used by:Timeline |
| Symbol 138 Graphic | Used by:139 | |
| Symbol 139 MovieClip | Uses:138 | Used by:Timeline |
| Symbol 140 Text | Uses:32 | Used by:Timeline |
| Symbol 141 Button | Uses:125 124 | Used by:Timeline |
| Symbol 142 Text | Uses:32 | Used by:Timeline |
| Symbol 143 Text | Uses:32 | Used by:Timeline |
| Symbol 144 Text | Uses:9 | Used by:Timeline |
| Symbol 145 Graphic | Used by:146 | |
| Symbol 146 MovieClip | Uses:145 | Used by:Timeline |
| Symbol 147 Text | Uses:9 | Used by:Timeline |
| Symbol 148 Button | Uses:83 84 | Used by:Timeline |
| Symbol 149 Button | Uses:103 | Used by:Timeline |
| Symbol 150 Text | Uses:32 | Used by:153 155 |
| Symbol 151 Button | Uses:125 124 | Used by:155 |
| Symbol 152 Button | Uses:125 124 | Used by:153 |
| Symbol 153 MovieClip | Uses:150 123 152 | Used by:155 |
| Symbol 154 Text | Uses:32 | Used by:155 |
| Symbol 155 MovieClip | Uses:150 123 151 153 154 | Used by:Timeline |
| Symbol 156 Button | Uses:125 124 | Used by:Timeline |
| Symbol 157 Text | Uses:9 | Used by:Timeline |
| Symbol 158 Text | Uses:32 | Used by:160 |
| Symbol 159 Text | Uses:32 | Used by:160 |
| Symbol 160 Button | Uses:158 159 | Used by:Timeline |
| Symbol 161 Text | Uses:32 | Used by:Timeline |
| Symbol 162 Text | Uses:9 | Used by:Timeline |
| Symbol 163 Text | Uses:9 | Used by:Timeline |
| Symbol 164 Graphic | Used by:165 | |
| Symbol 165 MovieClip | Uses:164 | Used by:Timeline |
| Symbol 166 Graphic | Used by:167 | |
| Symbol 167 MovieClip | Uses:166 | Used by:Timeline |
| Symbol 168 Button | Uses:83 84 | Used by:Timeline |
| Symbol 169 Text | Uses:9 | Used by:Timeline |
| Symbol 170 Button | Uses:103 | Used by:Timeline |
| Symbol 171 Graphic | Used by:172 | |
| Symbol 172 MovieClip | Uses:171 | Used by:Timeline |
| Symbol 173 Text | Uses:32 | Used by:Timeline |
| Symbol 174 Button | Uses:125 124 | Used by:Timeline |
| Symbol 175 Text | Uses:9 | Used by:Timeline |
| Symbol 176 Button | Uses:83 84 | Used by:Timeline |
| Symbol 177 Text | Uses:9 | Used by:Timeline |
| Symbol 178 Button | Uses:103 | Used by:Timeline |
| Symbol 179 Graphic | Used by:180 | |
| Symbol 180 MovieClip | Uses:179 | Used by:Timeline |
| Symbol 181 Graphic | Used by:182 | |
| Symbol 182 MovieClip | Uses:181 | Used by:Timeline |
| Symbol 183 Text | Uses:32 | Used by:Timeline |
| Symbol 184 Button | Uses:125 124 | Used by:Timeline |
| Symbol 185 Text | Uses:32 | Used by:Timeline |
| Symbol 186 Text | Uses:9 | Used by:Timeline |
| Symbol 187 Button | Uses:83 84 | Used by:Timeline |
| Symbol 188 Text | Uses:9 | Used by:Timeline |
| Symbol 189 Button | Uses:103 | Used by:Timeline |
| Symbol 190 Graphic | Used by:191 | |
| Symbol 191 MovieClip | Uses:190 | Used by:Timeline |
| Symbol 192 Graphic | Used by:193 | |
| Symbol 193 MovieClip | Uses:192 | Used by:Timeline |
| Symbol 194 MovieClip | Used by:Timeline | |
| Symbol 195 Text | Uses:32 | Used by:Timeline |
| Symbol 196 Button | Uses:125 124 | Used by:Timeline |
| Symbol 197 Text | Uses:9 | Used by:Timeline |
| Symbol 198 Text | Uses:9 | Used by:Timeline |
| Symbol 199 Button | Uses:61 | Used by:Timeline |
Instance Names
| "ball" | Frame 4 | Symbol 93 MovieClip |
| "player" | Frame 4 | Symbol 97 MovieClip |
| "player2" | Frame 4 | Symbol 97 MovieClip |
| "ball" | Frame 5 | Symbol 93 MovieClip |
| "player" | Frame 7 | Symbol 97 MovieClip |
| "player2" | Frame 7 | Symbol 97 MovieClip |
| "player3" | Frame 7 | Symbol 97 MovieClip |
| "ball" | Frame 8 | Symbol 93 MovieClip |
| "player" | Frame 10 | Symbol 97 MovieClip |
| "ball" | Frame 11 | Symbol 93 MovieClip |
| "player" | Frame 13 | Symbol 97 MovieClip |
| "player3" | Frame 13 | Symbol 97 MovieClip |
| "ball" | Frame 14 | Symbol 93 MovieClip |
| "player" | Frame 16 | Symbol 97 MovieClip |
| "ball" | Frame 17 | Symbol 93 MovieClip |
| "ball" | Frame 19 | Symbol 93 MovieClip |
| "player" | Frame 20 | Symbol 97 MovieClip |
| "player2" | Frame 20 | Symbol 97 MovieClip |
| "ball" | Frame 21 | Symbol 93 MovieClip |
| "player2" | Frame 23 | Symbol 97 MovieClip |
| "ball" | Frame 24 | Symbol 93 MovieClip |
| "player" | Frame 26 | Symbol 97 MovieClip |
| "player2" | Frame 26 | Symbol 97 MovieClip |
| "player3" | Frame 26 | Symbol 97 MovieClip |
| "ball" | Frame 27 | Symbol 93 MovieClip |
| "bar" | Symbol 26 MovieClip Frame 1 | Symbol 5 MovieClip |
Special Tags
| FileAttributes (69) | Timeline Frame 1 | Access local files only, Metadata not present, AS1/AS2. |
| ExportAssets (56) | Timeline Frame 1 | Symbol 1 as "mix1" |
Labels
| "preloader" | Frame 2 |
| "edit1" | Frame 4 |
| "play1" | Frame 5 |
| "end1" | Frame 6 |
| "edit2" | Frame 7 |
| "play2" | Frame 8 |
| "end2" | Frame 9 |
| "edit3" | Frame 10 |
| "play3" | Frame 11 |
| "end3" | Frame 12 |
| "edit4" | Frame 13 |
| "play4" | Frame 14 |
| "end4" | Frame 15 |
| "edit5" | Frame 16 |
| "play5" | Frame 17 |
| "end5" | Frame 18 |
| "break1" | Frame 19 |
| "edit6" | Frame 20 |
| "play6" | Frame 21 |
| "end6" | Frame 22 |
| "edit7" | Frame 23 |
| "play7" | Frame 24 |
| "end7" | Frame 25 |
| "editfinal" | Frame 26 |
| "playfinal" | Frame 27 |
| "endfinal" | Frame 28 |
| "loaded" | Symbol 26 MovieClip Frame 5 |
|
|