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

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

Pushball 1.0.swf

This is the info page for
Flash #72974

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


Text
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 2
Stage.showMenu = false;
Instance of Symbol 35 MovieClip in Frame 2
onClipEvent (enterFrame) { Mouse.hide(); this._x = _root._xmouse; this._y = _root._ymouse; }
Frame 3
stop(); my_sound = new Sound(); my_sound.attachSound("mix1"); stop();
Frame 4
stop();
Instance of Symbol 91 MovieClip in Frame 4
onClipEvent (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 4
onClipEvent (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 4
on (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 4
onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - _y) / 4)); _x = (_x + ((_root.player._x - _x) / 4)); }
Instance of Symbol 97 MovieClip "player2" in Frame 4
on (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 4
onClipEvent (enterFrame) { _y = (_y + ((_root.player2._y - _y) / 4)); _x = (_x + ((_root.player2._x - _x) / 4)); }
Frame 5
stop();
Instance of Symbol 93 MovieClip "ball" in Frame 5
onClipEvent (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 5
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.gotoAndPlay("end1"); } }
Instance of Symbol 91 MovieClip in Frame 5
onClipEvent (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 5
onClipEvent (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 6
stop();
Frame 7
stop();
Instance of Symbol 91 MovieClip in Frame 7
onClipEvent (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 7
onClipEvent (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 7
on (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 7
onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - _y) / 4)); _x = (_x + ((_root.player._x - _x) / 4)); }
Instance of Symbol 97 MovieClip "player2" in Frame 7
on (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 7
onClipEvent (enterFrame) { _y = (_y + ((_root.player2._y - _y) / 4)); _x = (_x + ((_root.player2._x - _x) / 4)); }
Instance of Symbol 97 MovieClip "player3" in Frame 7
on (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 7
onClipEvent (enterFrame) { _y = (_y + ((_root.player3._y - _y) / 4)); _x = (_x + ((_root.player3._x - _x) / 4)); }
Frame 8
stop();
Instance of Symbol 93 MovieClip "ball" in Frame 8
onClipEvent (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 8
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.gotoAndPlay("end2"); } }
Instance of Symbol 91 MovieClip in Frame 8
onClipEvent (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 8
onClipEvent (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 9
stop();
Frame 10
stop();
Instance of Symbol 91 MovieClip in Frame 10
onClipEvent (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 10
onClipEvent (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 10
on (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 10
onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - _y) / 4)); _x = (_x + ((_root.player._x - _x) / 4)); }
Frame 11
stop();
Instance of Symbol 93 MovieClip "ball" in Frame 11
onClipEvent (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 11
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.gotoAndPlay("end3"); } }
Instance of Symbol 91 MovieClip in Frame 11
onClipEvent (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 11
onClipEvent (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 12
stop();
Frame 13
stop();
Instance of Symbol 89 MovieClip in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.gotoAndPlay("end3"); } }
Instance of Symbol 91 MovieClip in Frame 13
onClipEvent (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 13
on (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 13
onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - _y) / 4)); _x = (_x + ((_root.player._x - _x) / 4)); }
Instance of Symbol 97 MovieClip "player3" in Frame 13
on (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 13
onClipEvent (enterFrame) { _y = (_y + ((_root.player3._y - _y) / 4)); _x = (_x + ((_root.player3._x - _x) / 4)); }
Instance of Symbol 91 MovieClip in Frame 13
onClipEvent (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 13
onClipEvent (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 14
stop();
Instance of Symbol 93 MovieClip "ball" in Frame 14
onClipEvent (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 14
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.gotoAndPlay("end4"); } }
Instance of Symbol 91 MovieClip in Frame 14
onClipEvent (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 14
onClipEvent (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 14
onClipEvent (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 14
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.ball._y = _root.ball._y + 5; } }
Frame 15
stop();
Frame 16
stop();
Instance of Symbol 89 MovieClip in Frame 16
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.gotoAndPlay("end3"); } }
Instance of Symbol 91 MovieClip in Frame 16
onClipEvent (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 16
on (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 16
onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - _y) / 4)); _x = (_x + ((_root.player._x - _x) / 4)); }
Frame 17
stop();
Instance of Symbol 93 MovieClip "ball" in Frame 17
onClipEvent (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 17
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.gotoAndPlay("end5"); } }
Instance of Symbol 91 MovieClip in Frame 17
onClipEvent (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 18
stop();
Frame 19
stop(); stop();
Instance of Symbol 93 MovieClip "ball" in Frame 19
onClipEvent (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 19
onClipEvent (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 20
stop();
Instance of Symbol 89 MovieClip in Frame 20
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.gotoAndPlay("end3"); } }
Instance of Symbol 91 MovieClip in Frame 20
onClipEvent (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 20
onClipEvent (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 20
on (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 20
onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - _y) / 4)); _x = (_x + ((_root.player._x - _x) / 4)); }
Instance of Symbol 97 MovieClip "player2" in Frame 20
on (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 20
onClipEvent (enterFrame) { _y = (_y + ((_root.player2._y - _y) / 4)); _x = (_x + ((_root.player2._x - _x) / 4)); }
Frame 21
stop();
Instance of Symbol 93 MovieClip "ball" in Frame 21
onClipEvent (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 21
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.gotoAndPlay("end6"); } }
Instance of Symbol 91 MovieClip in Frame 21
onClipEvent (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 21
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.ball._x = _root.ball._x - 5; } }
Frame 22
stop();
Frame 23
stop();
Instance of Symbol 89 MovieClip in Frame 23
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.gotoAndPlay("end6"); } }
Instance of Symbol 165 MovieClip in Frame 23
onClipEvent (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 23
onClipEvent (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 23
onClipEvent (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 23
onClipEvent (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 23
onClipEvent (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 23
onClipEvent (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 23
on (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 23
onClipEvent (enterFrame) { _y = (_y + ((_root.player2._y - _y) / 4)); _x = (_x + ((_root.player2._x - _x) / 4)); }
Frame 24
stop();
Instance of Symbol 93 MovieClip "ball" in Frame 24
onClipEvent (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 24
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.gotoAndPlay("end7"); } }
Instance of Symbol 91 MovieClip in Frame 24
onClipEvent (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 24
onClipEvent (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 24
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.ball._x = _root.ball._x - 5; } }
Instance of Symbol 180 MovieClip in Frame 24
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.player._y = _root.player._y + 5; } }
Instance of Symbol 172 MovieClip in Frame 24
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.ball._x = _root.ball._x - 5; } }
Instance of Symbol 180 MovieClip in Frame 24
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.player._y = _root.player._y - 5; } }
Instance of Symbol 182 MovieClip in Frame 24
onClipEvent (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 24
onClipEvent (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 24
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.player._x = _root.player._x - 5; } }
Instance of Symbol 182 MovieClip in Frame 24
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.player._x = _root.player._x + 5; } }
Frame 25
stop();
Frame 26
stop();
Instance of Symbol 89 MovieClip in Frame 26
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.gotoAndPlay("end7"); } }
Instance of Symbol 91 MovieClip in Frame 26
onClipEvent (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 26
onClipEvent (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 26
onClipEvent (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 26
on (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 26
onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - _y) / 4)); _x = (_x + ((_root.player._x - _x) / 4)); }
Instance of Symbol 97 MovieClip "player2" in Frame 26
on (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 26
onClipEvent (enterFrame) { _y = (_y + ((_root.player2._y - _y) / 4)); _x = (_x + ((_root.player2._x - _x) / 4)); }
Instance of Symbol 97 MovieClip "player3" in Frame 26
on (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 26
onClipEvent (enterFrame) { _y = (_y + ((_root.player3._y - _y) / 4)); _x = (_x + ((_root.player3._x - _x) / 4)); }
Frame 27
stop();
Instance of Symbol 93 MovieClip "ball" in Frame 27
onClipEvent (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 27
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.gotoAndPlay("endfinal"); } }
Instance of Symbol 91 MovieClip in Frame 27
onClipEvent (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 27
onClipEvent (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 27
onClipEvent (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 27
onClipEvent (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 27
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.player._x = _root.player._x + 5; } }
Instance of Symbol 172 MovieClip in Frame 27
onClipEvent (enterFrame) { if (this.hitTest(_root.ball)) { _root.ball._x = _root.ball._x - 5; } }
Frame 28
stop();
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 2
gotoAndPlay (1);
Symbol 26 MovieClip Frame 40
_root.play();
Symbol 51 MovieClip Frame 24
stop();
Symbol 80 Button
on (release) { _root.nextFrame(); }
Symbol 86 Button
on (release) { gotoAndPlay ("play1"); }
Symbol 100 Button
on (keyPress "<End>") { stopAllSounds(); }
Symbol 104 Button
on (keyPress "<Space>") { gotoAndPlay ("edit1"); }
Symbol 118 Button
on (release) { gotoAndPlay ("play2"); }
Symbol 121 Button
on (keyPress "<Space>") { gotoAndPlay ("edit2"); }
Symbol 125 MovieClip Frame 1
stop();
Symbol 126 Button
on (release) { gotoAndPlay ("edit3"); }
Symbol 128 Button
on (release) { gotoAndPlay ("play3"); }
Symbol 130 Button
on (keyPress "<Space>") { gotoAndPlay ("edit3"); }
Symbol 132 Button
on (release) { gotoAndPlay ("edit4"); }
Symbol 135 Button
on (release) { gotoAndPlay ("play4"); }
Symbol 137 Button
on (keyPress "<Space>") { gotoAndPlay ("edit4"); }
Symbol 141 Button
on (release) { gotoAndPlay ("edit5"); }
Symbol 148 Button
on (release) { gotoAndPlay ("play5"); }
Symbol 149 Button
on (keyPress "<Space>") { gotoAndPlay ("edit5"); }
Symbol 151 Button
on (release) { gotoAndPlay ("edit5"); }
Symbol 152 Button
on (release) { gotoAndPlay ("edit5"); }
Symbol 155 MovieClip Frame 54
stop();
Symbol 156 Button
on (release) { gotoAndPlay ("break1"); }
Symbol 160 Button
on (release) { gotoAndPlay ("edit6"); }
Symbol 168 Button
on (release) { gotoAndPlay ("play6"); }
Symbol 170 Button
on (keyPress "<Space>") { gotoAndPlay ("edit6"); }
Symbol 174 Button
on (release) { gotoAndPlay ("edit7"); }
Symbol 176 Button
on (release) { gotoAndPlay ("play7"); }
Symbol 178 Button
on (keyPress "<Space>") { gotoAndPlay ("edit7"); }
Symbol 184 Button
on (release) { gotoAndPlay ("editfinal"); }
Symbol 187 Button
on (release) { gotoAndPlay ("playfinal"); }
Symbol 189 Button
on (keyPress "<Space>") { gotoAndPlay ("editfinal"); }
Symbol 196 Button
on (release) { gotoAndPlay ("preloader"); }
Symbol 199 Button
on (release) { _root.gotoAndPlay(2); }

Library Items

Symbol 1 Sound [mix1]
Symbol 2 GraphicUsed by:Timeline
Symbol 3 GraphicUsed by:26
Symbol 4 GraphicUsed by:5
Symbol 5 MovieClipUses:4Used by:26
Symbol 6 GraphicUsed by:7
Symbol 7 MovieClipUses:6Used by:26
Symbol 8 GraphicUsed by:19
Symbol 9 FontUsed 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 TextUses:9Used by:11
Symbol 11 MovieClipUses:10Used by:19
Symbol 12 GraphicUsed by:19
Symbol 13 GraphicUsed by:19
Symbol 14 GraphicUsed by:19
Symbol 15 GraphicUsed by:19
Symbol 16 GraphicUsed by:19
Symbol 17 GraphicUsed by:19
Symbol 18 GraphicUsed by:19
Symbol 19 MovieClipUses:8 11 12 13 14 15 16 17 18Used by:26
Symbol 20 ShapeTweeningUsed by:26
Symbol 21 GraphicUsed by:26
Symbol 22 ShapeTweeningUsed by:26
Symbol 23 GraphicUsed by:26
Symbol 24 GraphicUsed by:26
Symbol 25 GraphicUsed by:26
Symbol 26 MovieClipUses:3 5 7 19 20 21 22 23 24 25Used by:Timeline
Symbol 27 TextUses:9Used by:Timeline
Symbol 28 TextUses:9Used by:Timeline
Symbol 29 GraphicUsed by:31
Symbol 30 TextUses:9Used by:31
Symbol 31 MovieClipUses:29 30Used by:Timeline
Symbol 32 FontUsed by:33 122 123 131 133 140 142 143 150 154 158 159 161 173 183 185 195
Symbol 33 TextUses:32Used by:Timeline
Symbol 34 GraphicUsed by:35
Symbol 35 MovieClipUses:34Used by:Timeline
Symbol 36 TextUses:9Used by:Timeline
Symbol 37 SoundUsed by:Timeline
Symbol 38 GraphicUsed by:Timeline
Symbol 39 GraphicUsed by:51
Symbol 40 GraphicUsed by:51 54
Symbol 41 GraphicUsed by:51
Symbol 42 GraphicUsed by:48
Symbol 43 GraphicUsed by:48
Symbol 44 GraphicUsed by:48
Symbol 45 GraphicUsed by:48
Symbol 46 GraphicUsed by:48
Symbol 47 GraphicUsed by:48
Symbol 48 MovieClipUses:42 43 44 45 46 47Used by:51
Symbol 49 GraphicUsed by:50
Symbol 50 MovieClipUses:49Used by:51
Symbol 51 MovieClipUses:39 40 41 48 50Used by:Timeline
Symbol 52 TextUses:9Used by:Timeline
Symbol 53 TextUses:9Used by:Timeline
Symbol 54 MovieClipUses:40Used by:Timeline
Symbol 55 GraphicUsed by:60
Symbol 56 GraphicUsed by:60
Symbol 57 GraphicUsed by:58
Symbol 58 ButtonUses:57Used by:60
Symbol 59 GraphicUsed by:60
Symbol 60 MovieClipUses:55 56 58 59Used by:62
Symbol 61 GraphicUsed by:62 66 75 79 80 199
Symbol 62 ButtonUses:60 61Used by:Timeline
Symbol 63 GraphicUsed by:65
Symbol 64 TextUses:9Used by:65
Symbol 65 MovieClipUses:63 64Used by:66
Symbol 66 ButtonUses:65 61Used by:Timeline
Symbol 67 GraphicUsed by:75
Symbol 68 GraphicUsed by:69
Symbol 69 MovieClipUses:68Used by:74
Symbol 70 GraphicUsed by:74
Symbol 71 GraphicUsed by:73
Symbol 72 GraphicUsed by:73
Symbol 73 MovieClipUses:71 72Used by:74
Symbol 74 MovieClipUses:69 70 73Used by:75
Symbol 75 ButtonUses:67 74 61Used by:Timeline
Symbol 76 GraphicUsed by:77
Symbol 77 MovieClipUses:76Used by:78  Timeline
Symbol 78 MovieClipUses:77Used by:79
Symbol 79 ButtonUses:78 61Used by:Timeline
Symbol 80 ButtonUses:61Used by:Timeline
Symbol 81 FontUsed by:83 84 105 106
Symbol 82 Font
Symbol 83 TextUses:81Used by:86 118 128 135 148 168 176 187
Symbol 84 TextUses:81Used by:86 118 128 135 148 168 176 187
Symbol 85 GraphicUsed by:86
Symbol 86 ButtonUses:83 84 85Used by:Timeline
Symbol 87 GraphicUsed by:89
Symbol 88 TextUses:9Used by:89
Symbol 89 MovieClipUses:87 88Used by:Timeline
Symbol 90 GraphicUsed by:91
Symbol 91 MovieClipUses:90Used by:Timeline
Symbol 92 GraphicUsed by:93
Symbol 93 MovieClipUses:92Used by:Timeline
Symbol 94 GraphicUsed by:95
Symbol 95 ButtonUses:94Used by:Timeline
Symbol 96 GraphicUsed by:97
Symbol 97 MovieClipUses:96Used by:Timeline
Symbol 98 TextUses:9Used by:Timeline
Symbol 99 GraphicUsed by:100
Symbol 100 ButtonUses:99Used by:Timeline
Symbol 101 BitmapUsed by:102
Symbol 102 GraphicUses:101Used by:Timeline
Symbol 103 GraphicUsed by:104 121 130 137 149 170 178 189
Symbol 104 ButtonUses:103Used by:Timeline
Symbol 105 TextUses:81Used by:Timeline
Symbol 106 TextUses:81Used by:Timeline
Symbol 107 TextUses:9Used by:Timeline
Symbol 108 FontUsed by:109 110 111
Symbol 109 TextUses:108Used by:112
Symbol 110 TextUses:108Used by:112
Symbol 111 TextUses:108Used by:112
Symbol 112 MovieClipUses:109 110 111Used by:Timeline
Symbol 113 GraphicUsed by:Timeline
Symbol 114 GraphicUsed by:115
Symbol 115 ButtonUses:114Used by:Timeline
Symbol 116 TextUses:9Used by:Timeline
Symbol 117 TextUses:9Used by:Timeline
Symbol 118 ButtonUses:83 84Used by:Timeline
Symbol 119 Font
Symbol 120 TextUses:9Used by:Timeline
Symbol 121 ButtonUses:103Used by:Timeline
Symbol 122 TextUses:32Used by:Timeline
Symbol 123 TextUses:32Used by:153 155  Timeline
Symbol 124 GraphicUsed by:125 126 132 141 151 152 156 174 184 196
Symbol 125 MovieClipUses:124Used by:126 132 141 151 152 156 174 184 196
Symbol 126 ButtonUses:125 124Used by:Timeline
Symbol 127 TextUses:9Used by:Timeline
Symbol 128 ButtonUses:83 84Used by:Timeline
Symbol 129 TextUses:9Used by:Timeline
Symbol 130 ButtonUses:103Used by:Timeline
Symbol 131 TextUses:32Used by:Timeline
Symbol 132 ButtonUses:125 124Used by:Timeline
Symbol 133 TextUses:32Used by:Timeline
Symbol 134 TextUses:9Used by:Timeline
Symbol 135 ButtonUses:83 84Used by:Timeline
Symbol 136 TextUses:9Used by:Timeline
Symbol 137 ButtonUses:103Used by:Timeline
Symbol 138 GraphicUsed by:139
Symbol 139 MovieClipUses:138Used by:Timeline
Symbol 140 TextUses:32Used by:Timeline
Symbol 141 ButtonUses:125 124Used by:Timeline
Symbol 142 TextUses:32Used by:Timeline
Symbol 143 TextUses:32Used by:Timeline
Symbol 144 TextUses:9Used by:Timeline
Symbol 145 GraphicUsed by:146
Symbol 146 MovieClipUses:145Used by:Timeline
Symbol 147 TextUses:9Used by:Timeline
Symbol 148 ButtonUses:83 84Used by:Timeline
Symbol 149 ButtonUses:103Used by:Timeline
Symbol 150 TextUses:32Used by:153 155
Symbol 151 ButtonUses:125 124Used by:155
Symbol 152 ButtonUses:125 124Used by:153
Symbol 153 MovieClipUses:150 123 152Used by:155
Symbol 154 TextUses:32Used by:155
Symbol 155 MovieClipUses:150 123 151 153 154Used by:Timeline
Symbol 156 ButtonUses:125 124Used by:Timeline
Symbol 157 TextUses:9Used by:Timeline
Symbol 158 TextUses:32Used by:160
Symbol 159 TextUses:32Used by:160
Symbol 160 ButtonUses:158 159Used by:Timeline
Symbol 161 TextUses:32Used by:Timeline
Symbol 162 TextUses:9Used by:Timeline
Symbol 163 TextUses:9Used by:Timeline
Symbol 164 GraphicUsed by:165
Symbol 165 MovieClipUses:164Used by:Timeline
Symbol 166 GraphicUsed by:167
Symbol 167 MovieClipUses:166Used by:Timeline
Symbol 168 ButtonUses:83 84Used by:Timeline
Symbol 169 TextUses:9Used by:Timeline
Symbol 170 ButtonUses:103Used by:Timeline
Symbol 171 GraphicUsed by:172
Symbol 172 MovieClipUses:171Used by:Timeline
Symbol 173 TextUses:32Used by:Timeline
Symbol 174 ButtonUses:125 124Used by:Timeline
Symbol 175 TextUses:9Used by:Timeline
Symbol 176 ButtonUses:83 84Used by:Timeline
Symbol 177 TextUses:9Used by:Timeline
Symbol 178 ButtonUses:103Used by:Timeline
Symbol 179 GraphicUsed by:180
Symbol 180 MovieClipUses:179Used by:Timeline
Symbol 181 GraphicUsed by:182
Symbol 182 MovieClipUses:181Used by:Timeline
Symbol 183 TextUses:32Used by:Timeline
Symbol 184 ButtonUses:125 124Used by:Timeline
Symbol 185 TextUses:32Used by:Timeline
Symbol 186 TextUses:9Used by:Timeline
Symbol 187 ButtonUses:83 84Used by:Timeline
Symbol 188 TextUses:9Used by:Timeline
Symbol 189 ButtonUses:103Used by:Timeline
Symbol 190 GraphicUsed by:191
Symbol 191 MovieClipUses:190Used by:Timeline
Symbol 192 GraphicUsed by:193
Symbol 193 MovieClipUses:192Used by:Timeline
Symbol 194 MovieClipUsed by:Timeline
Symbol 195 TextUses:32Used by:Timeline
Symbol 196 ButtonUses:125 124Used by:Timeline
Symbol 197 TextUses:9Used by:Timeline
Symbol 198 TextUses:9Used by:Timeline
Symbol 199 ButtonUses:61Used by:Timeline

Instance Names

"ball"Frame 4Symbol 93 MovieClip
"player"Frame 4Symbol 97 MovieClip
"player2"Frame 4Symbol 97 MovieClip
"ball"Frame 5Symbol 93 MovieClip
"player"Frame 7Symbol 97 MovieClip
"player2"Frame 7Symbol 97 MovieClip
"player3"Frame 7Symbol 97 MovieClip
"ball"Frame 8Symbol 93 MovieClip
"player"Frame 10Symbol 97 MovieClip
"ball"Frame 11Symbol 93 MovieClip
"player"Frame 13Symbol 97 MovieClip
"player3"Frame 13Symbol 97 MovieClip
"ball"Frame 14Symbol 93 MovieClip
"player"Frame 16Symbol 97 MovieClip
"ball"Frame 17Symbol 93 MovieClip
"ball"Frame 19Symbol 93 MovieClip
"player"Frame 20Symbol 97 MovieClip
"player2"Frame 20Symbol 97 MovieClip
"ball"Frame 21Symbol 93 MovieClip
"player2"Frame 23Symbol 97 MovieClip
"ball"Frame 24Symbol 93 MovieClip
"player"Frame 26Symbol 97 MovieClip
"player2"Frame 26Symbol 97 MovieClip
"player3"Frame 26Symbol 97 MovieClip
"ball"Frame 27Symbol 93 MovieClip
"bar"Symbol 26 MovieClip Frame 1Symbol 5 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 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




http://swfchan.com/15/72974/info.shtml
Created: 8/4 -2019 12:22:00 Last modified: 8/4 -2019 12:22:00 Server time: 12/05 -2024 14:46:34