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

swfchan turned sixteen years old yesterday! (5may2024)

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

Football & Soccer & Rugby - Soccer Shootout.swf

This is the info page for
Flash #234820

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


Text
THIS GAME FINAL SCORE:

CONGRATULATIONS!  YOUR TEAM SUCCESSFULLY
COMPLETED THE SEASON!

TOTAL WINS:

TOTAL POINTS SCORED:

> SUBMIT TOTAL POINTS

> SUBMIT TOTAL POINTS

YOUR TEAM:

VISITING TEAM:

> PLAY AGAIN

> PLAY AGAIN

OH NO! YOUR TEAM LOST.
BETTER LUCK NEXT SOCCER SEASON!

> RESTART SEASON

> RESTART SEASON

YOUR NAME:

YOUR SCORE THIS ROUND:

FINAL SCORE:

IT'S A TIE!  TIME FOR A REMATCH!

> RETRY MATCH

> RETRY MATCH

GOOD JOB! YOU WON THE GAME!

> PLAY NEXT MATCH

> PLAY NEXT MATCH

> START GAME

> START GAME

IT'S THE LAST

SECONDS OF THE GAME.

YOUR TEAM IS DOWN

TO

CAN YOU SCORE ENOUGH GOALS TO WIN THE GAME BEFORE THE
CLOCK RUNS OUT?

GAME

YOUR TEAM NEEDS AT LEAST

MORE GOALS TO WIN THE GAME.

It's almost the end of the game and score is tied! Your team must
win every game to progess in the season.
Can you score enough goals to win this game before the clock
runs out?

> LEARN CONTROLS

> LEARN CONTROLS

LEFT ARROW:  Rotate to your left
RIGHT ARROW: Rotate to your right
UP ARROW:  Move forward
DOWN ARROW:  Move backwards

A KEY: Direct team-mate to the left
S KEY: Direct team-mate to the right
D KEY: Switch players

SPACE BAR: Hold down  to power up, release to pass or kick, active player
switches to team-mate automatically

INSTRUCTIONS:
The player you are currently controlling is highlighted by a yellow circle.
Run up to the ball to pick it up.  Move down the field by dribbling the ball and
passing it to your teammate.  Try to make smooth passes and watch out for
the defender trying to steal the ball!

CONTROLS:

POINTS SCORED:

TIME LEFT:

HOME TEAM:

VISITING TEAM:

> POSTING SCORE <

> POSTING SCORE <

ActionScript [AS1/AS2]

Frame 1
a = this.getBytesLoaded(); b = this.getBytesTotal(); percent = (100 * a) / b; if (5 < b) { preloader = ("LOADING..." + Math.floor(percent)) + "%"; }
Frame 2
if ((percent < 100) || (b < 5)) { gotoAndPlay(_currentframe - 1); } else { commHit.loadVariables("/kids/games/soccershootout/soccer-load.html", "GET"); }
Frame 3
stop();
Frame 12
stop();
Instance of Symbol 230 MovieClip "game" in Frame 13
onClipEvent (load) { x0 = _x; y0 = _y; } onClipEvent (keyDown) { this["keyDown" + Key.getCode()](); } onClipEvent (keyUp) { this["keyUp" + Key.getCode()](); } onClipEvent (enterFrame) { updateBall(); followBall(1.2); }
Frame 14
stop();
Instance of Symbol 135 MovieClip [blank] in Frame 14
onClipEvent (enterFrame) { _parent.game.updateTimer(); }
Frame 15
stop();
Frame 115
commPost.gameid = 102; commPost.clientid = 1; commPost.action = "submitscore"; commPost.loadVariables("/kids/games/submitscore.jsp", "POST");
Frame 130
gotoAndStop (3);
Symbol 2 MovieClip [stealBall] Frame 1
_parent.guy.gotoAndPlay("run");
Symbol 2 MovieClip [stealBall] Frame 2
dx = _parent._parent.ball._x - _parent._x; dy = _parent._parent.ball._y - _parent._y; theta = Math.atan2(dy, dx); _parent._rotation = (theta * 180) / Math.PI; R = Math.sqrt((dx * dx) + (dy * dy)); if (R < _parent.reach) { _parent.guy.gotoAndStop("still"); if (_parent._parent.ball.state == 0) { _parent._parent.stealSuccess(_parent); } this.removeMovieClip(); } else { signdx = Math.abs(dx) / dx; signdy = Math.abs(dy) / dy; _parent._x = _parent._x + (signdx * Math.min((_parent.fitness * Math.abs(dx)) / R, R)); _parent._y = _parent._y + (signdy * Math.min((_parent.fitness * Math.abs(dy)) / R, R)); }
Symbol 2 MovieClip [stealBall] Frame 3
dx = _parent._parent.ball._x - _parent._x; dy = _parent._parent.ball._y - _parent._y; theta = Math.atan2(dy, dx); _parent._rotation = (theta * 180) / Math.PI; R = Math.sqrt((dx * dx) + (dy * dy)); if (R < _parent.reach) { _parent.guy.gotoAndStop("still"); if (_parent._parent.ball.state == 0) { _parent._parent.stealSuccess(_parent); } this.removeMovieClip(); } else { signdx = Math.abs(dx) / dx; signdy = Math.abs(dy) / dy; _parent._x = _parent._x + (signdx * Math.min((_parent.fitness * Math.abs(dx)) / R, R)); _parent._y = _parent._y + (signdy * Math.min((_parent.fitness * Math.abs(dy)) / R, R)); gotoAndPlay (2); }
Symbol 3 MovieClip [defend] Frame 1
lag = 1;
Symbol 3 MovieClip [defend] Frame 2
lag++; if (lag >= delay) { gotoAndPlay (4); }
Symbol 3 MovieClip [defend] Frame 3
lag++; if (lag >= delay) { gotoAndPlay (4); } else { gotoAndPlay (2); }
Symbol 3 MovieClip [defend] Frame 4
dx = xtarget - _parent._x; dy = ytarget - _parent._y; R = Math.sqrt((dx * dx) + (dy * dy)); cosA = dx / R; sinA = dy / R; if (10 < R) { theta = Math.atan2(dy, dx); _parent._rotation = (theta * 180) / Math.PI; _parent.guy.gotoAndPlay("run"); }
Symbol 3 MovieClip [defend] Frame 5
if (speed < R) { _parent._x = _parent._x + (speed * cosA); _parent._y = _parent._y + (speed * sinA); R = R - speed; } else if (2 < R) { R = R / 3; _parent._x = _parent._x + (R * cosA); _parent._y = _parent._y + (R * sinA); } else { _parent.guy.gotoAndStop("still"); rdx = _parent._parent.ball._x - _parent._x; rdy = _parent._parent.ball._y - _parent._y; theta = Math.atan2(rdy, rdx); _parent._rotation = (theta * 180) / Math.PI; this.removeMovieClip(); }
Symbol 3 MovieClip [defend] Frame 6
if (speed < R) { _parent._x = _parent._x + (speed * cosA); _parent._y = _parent._y + (speed * sinA); R = R - speed; } else if (2 < R) { R = R / 3; _parent._x = _parent._x + (R * cosA); _parent._y = _parent._y + (R * sinA); } else { _parent.guy.gotoAndStop("still"); rdx = _parent._parent.ball._x - _parent._x; rdy = _parent._parent.ball._y - _parent._y; theta = Math.atan2(rdy, rdx); _parent._rotation = (theta * 180) / Math.PI; this.removeMovieClip(); } gotoAndPlay (5);
Symbol 4 MovieClip [run] Frame 1
lag = 1;
Symbol 4 MovieClip [run] Frame 2
lag++; if (lag >= delay) { gotoAndPlay (4); }
Symbol 4 MovieClip [run] Frame 3
lag++; if (lag >= delay) { gotoAndPlay (4); } else { gotoAndPlay (2); }
Symbol 4 MovieClip [run] Frame 4
dx = xtarget - _parent._x; dy = ytarget - _parent._y; R = Math.sqrt((dx * dx) + (dy * dy)); cosA = dx / R; sinA = dy / R; if (10 < R) { theta = Math.atan2(dy, dx); _parent._rotation = (theta * 180) / Math.PI; _parent.guy.gotoAndPlay("run"); }
Symbol 4 MovieClip [run] Frame 5
if (speed < R) { _parent._x = _parent._x + (speed * cosA); _parent._y = _parent._y + (speed * sinA); R = R - speed; } else if (2 < R) { R = R / 3; _parent._x = _parent._x + (R * cosA); _parent._y = _parent._y + (R * sinA); } else { rdx = _parent._parent.goal._x - _parent._x; rdy = _parent._parent.goal._y - _parent._y; theta = Math.atan2(rdy, rdx); _parent._rotation = (theta * 180) / Math.PI; _parent.guy.gotoAndStop("still"); this.removeMovieClip(); }
Symbol 4 MovieClip [run] Frame 6
if (speed < R) { _parent._x = _parent._x + (speed * cosA); _parent._y = _parent._y + (speed * sinA); R = R - speed; } else if (2 < R) { R = R / 3; _parent._x = _parent._x + (R * cosA); _parent._y = _parent._y + (R * sinA); } else { rdx = _parent._parent.goal._x - _parent._x; rdy = _parent._parent.goal._y - _parent._y; theta = Math.atan2(rdy, rdx); _parent._rotation = (theta * 180) / Math.PI; _parent.guy.gotoAndStop("still"); this.removeMovieClip(); } gotoAndPlay (5);
Symbol 5 MovieClip [rotate] Frame 1
with (_parent) { if (hasBall) { _parent.ball._x = _x + (Math.cos((_rotation * Math.PI) / 180) * 20); _parent.ball._y = _y + (Math.sin((_rotation * Math.PI) / 180) * 20); } _rotation = _rotation + theta; }
Symbol 5 MovieClip [rotate] Frame 2
with (_parent) { if (hasBall) { _parent.ball._x = _x + (Math.cos((_rotation * Math.PI) / 180) * 20); _parent.ball._y = _y + (Math.sin((_rotation * Math.PI) / 180) * 20); } _rotation = _rotation + theta; }
Symbol 6 MovieClip [forward] Frame 1
with (_parent) { _parent.tryToDribble(); if (hasBall) { _parent.ball._x = _x + (Math.cos((_rotation * Math.PI) / 180) * 20); _parent.ball._y = _y + (Math.sin((_rotation * Math.PI) / 180) * 20); } _x = _x + (speed * Math.cos((_rotation * Math.PI) / 180)); _y = _y + (speed * Math.sin((_rotation * Math.PI) / 180)); }
Symbol 6 MovieClip [forward] Frame 2
with (_parent) { _parent.tryToDribble(); if (hasBall) { _parent.ball._x = _x + (Math.cos((_rotation * Math.PI) / 180) * 20); _parent.ball._y = _y + (Math.sin((_rotation * Math.PI) / 180) * 20); } _x = _x + (speed * Math.cos((_rotation * Math.PI) / 180)); _y = _y + (speed * Math.sin((_rotation * Math.PI) / 180)); }
Symbol 7 MovieClip [powerUp] Frame 1
with (_parent) { power = Math.min(power + 2, maxPower); powerMeter._xscale = 100 + (power * 60); powerMeter._yscale = 100 + (power * 60); }
Symbol 7 MovieClip [powerUp] Frame 2
with (_parent) { power = Math.min(power + 2, maxPower); powerMeter._xscale = 100 + (power * 60); powerMeter._yscale = 100 + (power * 60); }
Symbol 19 MovieClip [savedCine] Frame 71
_parent._parent.game.adjustTimer(); _parent._parent.gotoAndPlay("playGame"); _parent._parent.game.reset(); this.removeMovieClip();
Symbol 24 MovieClip [outOfBoundsCine] Frame 31
_parent._parent.game.reset(); this.removeMovieClip();
Symbol 38 MovieClip [goalCine] Frame 77
_parent._parent.gotoAndPlay("playGame"); _parent._parent.game.adjustTimer(); _parent._parent.game.reset(); this.removeMovieClip();
Symbol 42 MovieClip [stolenCine] Frame 31
_parent._parent.game.reset(); this.removeMovieClip();
Symbol 47 MovieClip [startCine] Frame 33
stop(); this.removeMovieClip();
Symbol 65 Button
on (release) { _parent._parent.gotoAndPlay("postScore"); }
Symbol 73 Button
on (release) { _parent._parent.gotoAndPlay(1); this.removeMovieClip(); }
Symbol 74 MovieClip [endSuccessScreen] Frame 50
stop();
Symbol 89 Button
on (release) { _parent._parent.gotoAndStop("title"); this.removeMovieClip(); }
Symbol 90 Button
on (release) { _parent._parent.commPost.score = _parent._parent.game.totalPointsScored; _parent._parent.commPost.level = _parent._parent.game.level; _parent._parent.commPost.username = txt_username; _parent._parent.gotoAndPlay("postScore"); }
Symbol 95 MovieClip [endFailScreen] Frame 84
_parent._parent.commHit.loadVariables("/kids/games/soccershootout/soccer-play.html", "GET"); stop();
Symbol 105 Button
on (release) { _parent._parent.game.setUpRematch(); this.removeMovieClip(); }
Symbol 106 MovieClip [retryRound] Frame 26
stop();
Symbol 116 Button
on (release) { _parent._parent.game.setUpNextRound(); nextFrame(); }
Symbol 120 Button
on (release) { _parent._parent.game.startNextRound(); this.removeMovieClip(); }
Symbol 134 MovieClip [endRoundScreen] Frame 26
stop();
Symbol 134 MovieClip [endRoundScreen] Frame 27
stop();
Symbol 151 Button
on (release) { targetLabel = "playGame"; gotoAndPlay (39); }
Symbol 153 Button
on (release) { targetLabel = "instructions"; gotoAndPlay (39); }
Symbol 174 MovieClip Frame 38
stop();
Symbol 174 MovieClip Frame 53
_parent.gotoAndPlay(targetLabel);
Symbol 179 Button
on (release) { gotoAndStop (2); }
Symbol 185 Button
on (release) { _parent.gotoAndPlay("playGame"); }
Symbol 186 MovieClip Frame 1
stop();
Symbol 186 MovieClip Frame 2
stop();
Symbol 213 MovieClip Frame 1
stop();
Symbol 213 MovieClip Frame 2
play();
Symbol 213 MovieClip Frame 18
gotoAndPlay (2);
Symbol 214 MovieClip Frame 1
stop();
Symbol 214 MovieClip Frame 2
stop();
Symbol 215 MovieClip Frame 1
stop();
Symbol 215 MovieClip Frame 2
stop();
Symbol 226 MovieClip Frame 1
stop();
Symbol 226 MovieClip Frame 2
play();
Symbol 226 MovieClip Frame 18
gotoAndPlay (2);
Symbol 227 MovieClip Frame 1
stop();
Instance of Symbol 217 MovieClip "dribble" in Symbol 227 MovieClip Frame 1
onClipEvent (load) { _visible = false; }
Symbol 227 MovieClip Frame 2
stop();
Symbol 228 MovieClip Frame 1
stop();
Instance of Symbol 217 MovieClip "dribble" in Symbol 228 MovieClip Frame 1
onClipEvent (load) { _visible = false; }
Symbol 228 MovieClip Frame 2
stop();
Symbol 230 MovieClip Frame 1
function init() { p1.fitness = 5; p1.maxPower = 20; p1.dx = 0; p1.dy = 0; p1.R = 0; p1.F = 0; p1.t0 = 0; p1.x0 = p1._x; p1.y0 = p1._y; p1.z = 0; p1.dxSign = 1; p1.dySign = 1; p1.power = 0; p1.num = 1; p1.hasBall = false; p1.dribble.stop(); p1.dribble._visible = false; p2.dx = 0; p2.maxPower = 20; p2.fitness = 5; p2.dy = 0; p2.R = 0; p2.F = 0; p2.to = 0; p2.x0 = p2._x; p2.y0 = p2._y; p2.z = 0; p2.dxSign = 1; p2.dySign = 1; p2.power = 0; p2.num = 2; p2.hasBall = false; p2.dribble._visible = false; p2.dribble.stop(); defender.fitness = 2.2; defender.stealRange = 35; defender.reach = 20; defender._rotation = 90; defender.x0 = defender._x; defender.y0 = defender._y; defender.hasBall = false; goalie.fitness = 3.5; goalie.stealRange = 190; goalie.reach = 30; goalie._rotation = 90; goalie.x0 = goalie._x; goalie.y0 = goalie._y; goalie.hasBall = false; ball.dx = 0; ball.dy = 0; ball.R = 0; ball.x0 = ball._x; ball.y0 = ball._y; ball.z = 0; ball.xIncr = 0; ball.yIncr = 0; ball.zIncr = 0; ball.state = 0; currentPlayer = p1; teamMate = p2; currentPlayer.gotoAndStop("player"); currentPlayer._rotation = -90; teamMate.gotoAndStop("partner"); tmCurrAngle = -0.785398163397448; tmMinAngle = -3.14159265358979; tmMaxAngle = 0; tmR = 150; startKick = false; defR = 100; defCurrAngle = -1.5707963267949; score = 0; totalPointsScored = 0; requiredGoals = 1; homeScore = Math.round(Math.random() * 5); visitingScore = (homeScore + requiredGoals) - 1; t0 = getTimer() / 1000; totalTime = 60; timeLeft = totalTime; timeAtPause = 0; level = 1; totalWins = 0; lockBall(); soundEffect = new Sound(); _parent.cine.attachMovie("startCine", "clip", 1); this.gotoAndPlay("goUpField"); } function reset() { stopAllActions(); p1._x = p1.x0; p1._y = p1.y0; p1.z = 0; p1.power = 0; p1.hasBall = false; p1.dribble._visible = false; p1.dribble.stop(); p1.guy.gotoAndStop("still"); p2._x = p2.x0; p2._y = p2.y0; p2.z = 0; p2.power = 0; p2.num = 2; p2.hasBall = false; p2.dribble._visible = false; p2.dribble.stop(); p2.guy.gotoAndStop("still"); defender._rotation = 90; defender._x = defender.x0; defender._y = defender.y0; defender.hasBall = false; defender.dribble._visible = false; defender.guy.gotoAndStop("still"); goalie._rotation = 90; goalie._x = goalie.x0; goalie._y = goalie.y0; goalie.hasBall = false; goalie.dribble._visible = false; goalie.guy.gotoAndStop("still"); ball._x = ball.x0; ball._y = ball.y0; ball.z = 0; ball.xIncr = 0; ball.yIncr = 0; ball.zIncr = 0; ball._visible = true; bShadow._visible = true; ball.state = 0; currentPlayer = p1; teamMate = p2; currentPlayer.gotoAndStop("player"); currentPlayer._rotation = -90; teamMate.gotoAndStop("partner"); tmCurrAngle = -0.785398163397448 - ((Math.round(Math.random()) * Math.PI) / 2); tmMinAngle = -3.14159265358979; tmMaxAngle = 0; tmR = 150; startKick = false; lockBall(); defR = 100; defCurrAngle = -0.785398163397448; goalieR = 100; goalieCurrAngle = -4.71238898038469; _parent.cine.attachMovie("startCine", "clip", 1); gotoAndPlay (5); } function keyUp68() { switchPlayers(); } function keyDown32() { if (currentMovie.powerUp == undefined) { currentPlayer.attachMovie("powerUp", "powerUp", 4); } } function keyUp32() { currentPlayer.powerUp.removeMovieClip(); currentPlayer.powerMeter._xscale = 100; currentPlayer.powerMeter._yscale = 100; currentPlayer.F = currentPlayer.power; currentPlayer.power = 0; var dx = (ball._x - currentPlayer._x); var dy = (ball._y - currentPlayer._y); var R = Math.sqrt((dx * dx) + (dy * dy)); if (currentPlayer.hasBall) { soundEffect.attachSound("kickSound"); currentPlayer.dribble._visible = false; currentPlayer.dribble.stop(); ball._visible = true; bShadow._visible = true; with (currentPlayer) { dx = ball._x - _x; dy = ball._y - _y; R = Math.sqrt((dx * dx) + (dy * dy)); if ((R < 30) && (ball.z == 0)) { ball.xIncr = Math.cos((_rotation * Math.PI) / 180) * F; ball.yIncr = Math.sin((_rotation * Math.PI) / 180) * F; ball.zIncr = 5 + (0.3 * F); } hasBall = false; switchPlayers(); soundEffect.start(); } updateGoalie(); } } function keyDown37() { if (currentPlayer.rotate == undefined) { currentPlayer.attachMovie("rotate", "rotate", 2); currentPlayer.rotate.theta = -5; } } function keyUp37() { currentPlayer.rotate.removeMovieClip(); } function keyDown39() { if (currentPlayer.rotate == undefined) { currentPlayer.attachMovie("rotate", "rotate", 2); currentPlayer.rotate.theta = 5; } } function keyUp39() { currentPlayer.rotate.removeMovieClip(); } function keyDown38() { if (currentPlayer.forward == undefined) { currentPlayer.attachMovie("forward", "forward", 3); currentPlayer.forward.speed = currentPlayer.fitness; currentPlayer.guy.gotoAndPlay("run"); currentPlayer.dribble.play(); } } function keyUp38() { currentPlayer.forward.removeMovieClip(); currentPlayer.dribble.stop(); currentPlayer.guy.gotoAndStop("still"); } function keyDown40() { if (currentPlayer.forward == undefined) { currentPlayer.attachMovie("forward", "forward", 3); currentPlayer.forward.speed = -currentPlayer.fitness; currentPlayer.guy.gotoAndPlay("run"); currentPlayer.dribble.play(); } } function keyUp40() { currentPlayer.forward.removeMovieClip(); currentPlayer.guy.gotoAndStop("still"); currentPlayer.dribble.stop(); } function keyUp65() { if ((tmCurrAngle - (Math.PI/4)) >= tmMinAngle) { tmCurrAngle = tmCurrAngle - (Math.PI/4); teamMate.runTo(currentPlayer._x + (tmR * Math.cos(tmCurrAngle)), currentPlayer._y + (tmR * Math.sin(tmCurrAngle)), currentPlayer.fitness * 0.5, 3); } } function keyUp83() { if (tmMaxAngle >= (tmCurrAngle + (Math.PI/4))) { tmCurrAngle = tmCurrAngle + (Math.PI/4); teamMate.runTo(currentPlayer._x + (tmR * Math.cos(tmCurrAngle)), currentPlayer._y + (tmR * Math.sin(tmCurrAngle)), currentPlayer.fitness, 3); } } function updateBall() { if (ball.state == 0) { checkForBounds(); } if (ball.state == 0) { checkForGoal(); } with (ball) { _x = _x + xIncr; _y = _y + yIncr; z = z + zIncr; if (z < 0) { z = 0; zIncr = zIncr * -0.8; xIncr = xIncr * 0.8; yIncr = yIncr * 0.8; } xIncr = xIncr * 0.97; yIncr = yIncr * 0.97; zIncr = zIncr - 2; _xscale = 100 + z; _yscale = 100 + z; bShadow._x = _x - (z * 0.5); bShadow._y = _y; bShadow._xscale = 100 - (z / 2); bShadow._yscale = bShadow._xscale; } } function checkForBounds() { with (ball) { if ((((_x < -320) || (318 < _x)) || (903 < _y)) || ((_y < 102) && ((_x < -94) || (95 < _x)))) { outOfBounds(); } } } function outOfBounds() { with (ball) { state = 1; xIncr = 0; yIncr = 0; zIncr = 0; } this.gotoAndStop(); stopAllActions(); _parent.cine.attachMovie("outOfBoundsCine", "clip", 1); } function checkForGoal() { with (ball) { if ((((-94 < _x) && (_x < 95)) && (_y < 105)) && (goalie.hasBall == false)) { goalScored(); } } } function goalScored() { ball.state = 2; this.gotoAndStop("pause"); _parent.gotoAndStop("pauseTimer"); timeAtPause = getTimer() / 1000; goalie.hasBall = true; stopAllActions(); _parent.cine.attachMovie("goalCine", "clip", 1); with (ball) { xIncr = 0; yIncr = 0; zIncr = 0; } score++; homeScore++; } function switchPlayers() { stopAllActions(); teamMate.run.removeMovieClip(); if (currentPlayer.hasBall) { currentPlayer.dribble._visible = false; currentPlayer.dribble.stop(); ball._visible = true; bShadow._visible = true; ball._x = currentPlayer._x + (Math.cos((currentPlayer._rotation * Math.PI) / 180) * 20); ball._y = currentPlayer._y + (Math.sin((currentPlayer._rotation * Math.PI) / 180) * 20); currentPlayer.hasBall = false; } else { ball._visible = true; bShadow._visible = true; } if (currentPlayer.num == 1) { currentPlayer = p2; teamMate = p1; } else { currentPlayer = p1; teamMate = p2; } currentPlayer.gotoAndStop("player"); teamMate.gotoAndStop("partner"); tmCurrAngle = -3.14159265358979 - tmCurrAngle; currentPlayer.dribble._visible = false; currentPlayer.dribble.stop(); if (Key.isDown(38)) { keyDown38(); } if (Key.isDown(40)) { keyDown40(); } tryToDribble(); } function runTo(xtarget, ytarget, speed, delay) { this.attachMovie("run", "run", 1); run.xtarget = xtarget; run.ytarget = ytarget; run.speed = speed; run.delay = delay; } function defendTo(xtarget, ytarget, speed, delay) { this.attachMovie("defend", "defend", 1); defend.xtarget = xtarget; defend.ytarget = ytarget; defend.speed = speed; defend.delay = delay; } function tryToDribble() { var dx = (currentPlayer._x - ball._x); var dy = (currentPlayer._y - ball._y); var R = Math.sqrt((dx * dx) + (dy * dy)); if ((((R < 30) && (currentPlayer.hasBall == false)) && (!defender.hasBall)) && (!goalie.hasBall)) { lockBall(); } } function lockBall() { currentPlayer.hasBall = true; with (ball) { _visible = false; xIncr = 0; yIncr = 0; zIncr = 0; } bShadow._visible = false; currentPlayer.dribble._visible = true; } function stealBall(player) { player.attachMovie("stealBall", "stealBall", 1); } function stealSuccess(stealer) { if (ball.state == 0) { this.gotoAndStop("pause"); stopAllActions(); with (ball) { xIncr = 0; yIncr = 0; zIncr = 0; state = 4; _visible = false; } stealer.hasBall = true; bShadow._visible = false; currentPlayer.dribble._visible = false; currentPlayer.dribble.stop(); currentPlayer.hasBall = false; stealer.dribble._visible = true; ball._x = stealer._x + (Math.cos((stealer._rotation * Math.PI) / 180) * 20); ball._y = stealer._y + (Math.sin((stealer._rotation * Math.PI) / 180) * 20); if (stealer._name == "goalie") { _parent.gotoAndStop("pauseTimer"); timeAtPause = getTimer() / 1000; _parent.cine.attachMovie("savedCine", "clip", 1); } else { _parent.cine.attachMovie("stolenCine", "clip", 1); } } } function stopAllActions() { p1.forward.removeMovieClip(); p1.rotate.removeMovieClip(); p1.run.removeMovieClip(); p1.powerUp.removeMovieClip(); p1.guy.gotoAndStop("still"); p2.forward.removeMovieClip(); p2.rotate.removeMovieClip(); p2.run.removeMovieClip(); p2.powerUp.removeMovieClip(); p2.guy.gotoAndStop("still"); defender.defend.removeMovieClip(); defender.stealBall.removeMovieClip(); defender.guy.gotoAndStop("still"); goalie.defend.removeMovieClip(); goalie.stealBall.removeMovieClip(); goalie.guy.gotoAndStop("still"); } function followBall(ease) { _x = (x0 - ((ball._x - focus._x) / ease)); _y = (y0 - ((ball._y - focus._y) / ease)); } function updateDefender() { var dpx = (defender._x - ball._x); var dpy = (defender._y - ball._y); var dpR = Math.sqrt((dpx * dpx) + (dpy * dpy)); if (!currentPlayer.hasball) { if (defender.stealBall == undefined) { stealBall(defender); } } else if ((currentPlayer.hasBall && (dpR < defender.stealRange)) && (defender.stealBall == undefined)) { stealBall(defender); } else { var dx = (goal._x - ball._x); var dy = (goal._x - ball._y); var defR = (25 + (Math.sqrt((dx * dx) + (dy * dy)) / 15)); defAngle = Math.atan2(dy, dx); var dAngle = (((currentPlayer._rotation * Math.PI) / 180) - defAngle); if (Math.PI < Math.abs(dAngle)) { dAngle = dAngle - (Math.PI*2); } if (Math.abs(dAngle) < 0.523598775598299) { defCurrAngle = defAngle + dAngle; } else { defCurrAngle = defAngle + (((Math.abs(dAngle) / dAngle) * Math.PI) / 6); } defender.defendTo(ball._x + (defR * Math.cos(defCurrAngle)), ball._y + (defR * Math.sin(defCurrAngle)), defender.fitness, 1); } } function updateGoalie() { var dpx = (goal._x - ball._x); var dpy = (goal._y - ball._y); var dpR = Math.sqrt((dpx * dpx) + (dpy * dpy)); if (dpR < goalie.stealRange) { if (goalie.stealBall == undefined) { stealBall(goalie); } } else { var dx = (goal._x - ball._x); var dy = (goal._x - ball._y); var goalieR = (100 + (Math.sqrt((dx * dx) + (dy * dy)) / 3.5)); goalieAngle = Math.atan2(dy, dx); goalieCurrAngle = Math.min(Math.max(goalieAngle, -2.35619449019234), -0.785398163397448); goalie.defendTo(goal._x - (goalieR * Math.cos(goalieCurrAngle)), goal._y - (goalieR * Math.sin(goalieCurrAngle)), goalie.fitness / 2, 1); } } function updateTeamMate() { var dx = (goal._x - ball._x); var dy = (goal._x - ball._y); var tmR = (150 + Math.min(Math.sqrt((dx * dx) + (dy * dy)) / 20, 75)); teamMate.runTo(Math.min(303, Math.max(-300, currentPlayer._x + (tmR * Math.cos(tmCurrAngle)))), Math.max(currentPlayer._y + (tmR * Math.sin(tmCurrAngle)), 112), currentPlayer.fitness, 3); } function updateTimer() { if (0 < timeLeft) { timeLeft = Math.round(totalTime - ((getTimer() / 1000) - t0)); } else { endRound(); } } function endRound() { ball.state = 3; this.gotoAndStop("pause"); stopAllActions(); _parent.gotoAndStop("pauseTimer"); totalPointsScored = totalPointsScored + score; if (score == (requiredGoals - 1)) { _parent.cine.attachMovie("retryRound", "clip", 1); } else if (score < requiredGoals) { _parent.cine.attachMovie("endFailScreen", "clip", 1); } else if (level < 7) { totalWins++; _parent.cine.attachMovie("endRoundScreen", "clip", 1); } else { totalWins++; _parent.cine.attachMovie("endSuccessScreen", "clip", 1); } } function setUpNextRound() { timeLeft = totalTime; score = 0; requiredGoals++; homeScore = Math.round(Math.random() * 5); visitingScore = (homeScore + requiredGoals) - 1; level++; } function startNextRound() { t0 = getTimer() / 1000; _parent.gotoAndPlay("playGame"); reset(); defender.fitness = defender.fitness + 0.2; goalie.fitness = goalie.fitness + 0.1; goalie.stealRange = goalie.stealRange + 10; } function setUpRematch() { _parent.gotoAndPlay("playGame"); reset(); timeLeft = totalTime; t0 = getTimer() / 1000; score = 0; homeScore = Math.round(Math.random() * 5); visitingScore = (homeScore + requiredGoals) - 1; } function adjustTimer() { t0 = t0 + Math.round((getTimer() / 1000) - timeAtPause); }
Instance of Symbol 214 MovieClip "p1" in Symbol 230 MovieClip Frame 1
onClipEvent (load) { runTo = _parent.runTo; }
Instance of Symbol 215 MovieClip "p2" in Symbol 230 MovieClip Frame 1
onClipEvent (load) { runTo = _parent.runTo; }
Instance of Symbol 227 MovieClip "defender" in Symbol 230 MovieClip Frame 1
onClipEvent (load) { defendTo = _parent.defendTo; }
Instance of Symbol 228 MovieClip "goalie" in Symbol 230 MovieClip Frame 1
onClipEvent (load) { defendTo = _parent.defendTo; }
Symbol 230 MovieClip Frame 2
init();
Symbol 230 MovieClip Frame 5
play(); updateGoalie();
Symbol 230 MovieClip Frame 13
updateTeamMate(); updateDefender();
Symbol 230 MovieClip Frame 20
updateTeamMate(); updateGoalie();
Symbol 230 MovieClip Frame 28
updateDefender(); gotoAndPlay (5);
Symbol 230 MovieClip Frame 29
stop();

Library Items

Symbol 1 Sound [kickSound]
Symbol 2 MovieClip [stealBall]
Symbol 3 MovieClip [defend]
Symbol 4 MovieClip [run]
Symbol 5 MovieClip [rotate]
Symbol 6 MovieClip [forward]
Symbol 7 MovieClip [powerUp]
Symbol 8 ShapeTweeningUsed by:19
Symbol 9 GraphicUsed by:19 95
Symbol 10 GraphicUsed by:19
Symbol 11 GraphicUsed by:19 95
Symbol 12 GraphicUsed by:19
Symbol 13 GraphicUsed by:19 95
Symbol 14 SoundUsed by:19 95
Symbol 15 GraphicUsed by:19
Symbol 16 GraphicUsed by:19 38
Symbol 17 GraphicUsed by:18
Symbol 18 MovieClipUses:17Used by:19
Symbol 19 MovieClip [savedCine]Uses:8 9 10 11 12 13 14 15 16 18
Symbol 20 GraphicUsed by:24
Symbol 21 SoundUsed by:24 47 74 95 106 134
Symbol 22 ShapeTweeningUsed by:24
Symbol 23 GraphicUsed by:24
Symbol 24 MovieClip [outOfBoundsCine]Uses:20 21 22 23
Symbol 25 ShapeTweeningUsed by:38
Symbol 26 GraphicUsed by:38
Symbol 27 GraphicUsed by:38
Symbol 28 GraphicUsed by:38
Symbol 29 GraphicUsed by:38
Symbol 30 GraphicUsed by:38
Symbol 31 GraphicUsed by:38
Symbol 32 GraphicUsed by:38
Symbol 33 GraphicUsed by:38
Symbol 34 GraphicUsed by:35
Symbol 35 MovieClipUses:34Used by:38
Symbol 36 GraphicUsed by:38
Symbol 37 SoundUsed by:38 74
Symbol 38 MovieClip [goalCine]Uses:25 26 27 28 29 30 31 32 33 16 35 36 37
Symbol 39 GraphicUsed by:42
Symbol 40 ShapeTweeningUsed by:42
Symbol 41 GraphicUsed by:42
Symbol 42 MovieClip [stolenCine]Uses:39 40 41
Symbol 43 ShapeTweeningUsed by:47
Symbol 44 GraphicUsed by:47
Symbol 45 ShapeTweeningUsed by:47
Symbol 46 GraphicUsed by:47
Symbol 47 MovieClip [startCine]Uses:43 44 21 45 46
Symbol 48 GraphicUsed by:74 95 106 134
Symbol 49 ShapeTweeningUsed by:74
Symbol 50 GraphicUsed by:74 95 106 134
Symbol 51 GraphicUsed by:74 106 134
Symbol 52 GraphicUsed by:53
Symbol 53 MovieClipUses:52Used by:74
Symbol 54 FontUsed by:55 56 57 58 59 60 61 62 66 67 68 69 70 71 83 84 85 86 87 91 92 93 94 97 98 99 100 101 102 103 108 109 110 111 112 113 114 117 118 121 122 123 124 125 126 127 128 129 130 131 132 133 136 175 176 177 180 181 182 183 184 231 232 233 234 235 236 237 238 240 241
Symbol 55 TextUses:54Used by:74 95 134
Symbol 56 TextUses:54Used by:74
Symbol 57 EditableTextUses:54Used by:74
Symbol 58 TextUses:54Used by:74 95 134
Symbol 59 EditableTextUses:54Used by:74
Symbol 60 TextUses:54Used by:74 95 134
Symbol 61 TextUses:54Used by:65 90
Symbol 62 TextUses:54Used by:65 90
Symbol 63 GraphicUsed by:65 90
Symbol 64 SoundUsed by:65 73 89 90 105 116 120 151 153 179 185
Symbol 65 ButtonUses:61 62 63 64Used by:74
Symbol 66 EditableTextUses:54Used by:74
Symbol 67 TextUses:54Used by:74 95 106 134
Symbol 68 EditableTextUses:54Used by:74
Symbol 69 TextUses:54Used by:74 95 106 134
Symbol 70 TextUses:54Used by:73
Symbol 71 TextUses:54Used by:73
Symbol 72 GraphicUsed by:73
Symbol 73 ButtonUses:70 71 72 64Used by:74
Symbol 74 MovieClip [endSuccessScreen]Uses:48 21 49 50 51 53 37 55 56 57 58 59 60 65 66 67 68 69 73
Symbol 75 ShapeTweeningUsed by:95
Symbol 76 GraphicUsed by:95
Symbol 77 GraphicUsed by:78
Symbol 78 MovieClipUses:77Used by:95
Symbol 79 GraphicUsed by:95
Symbol 80 GraphicUsed by:95
Symbol 81 GraphicUsed by:95
Symbol 82 GraphicUsed by:95
Symbol 83 TextUses:54Used by:95
Symbol 84 EditableTextUses:54Used by:95
Symbol 85 EditableTextUses:54Used by:95
Symbol 86 TextUses:54Used by:89
Symbol 87 TextUses:54Used by:89
Symbol 88 GraphicUsed by:89
Symbol 89 ButtonUses:86 87 88 64Used by:95
Symbol 90 ButtonUses:61 62 63 64Used by:95
Symbol 91 EditableTextUses:54Used by:95
Symbol 92 EditableTextUses:54Used by:95
Symbol 93 TextUses:54Used by:95
Symbol 94 EditableTextUses:54Used by:95
Symbol 95 MovieClip [endFailScreen]Uses:48 21 75 50 76 9 78 79 80 11 14 13 81 82 55 83 84 58 85 60 89 90 91 67 92 69 93 94
Symbol 96 ShapeTweeningUsed by:106
Symbol 97 TextUses:54Used by:106 134
Symbol 98 TextUses:54Used by:106
Symbol 99 TextUses:54Used by:106
Symbol 100 EditableTextUses:54Used by:106
Symbol 101 EditableTextUses:54Used by:106
Symbol 102 TextUses:54Used by:105
Symbol 103 TextUses:54Used by:105
Symbol 104 GraphicUsed by:105
Symbol 105 ButtonUses:102 103 104 64Used by:106
Symbol 106 MovieClip [retryRound]Uses:48 21 96 50 97 51 98 99 100 67 101 69 105
Symbol 107 ShapeTweeningUsed by:134
Symbol 108 TextUses:54Used by:134
Symbol 109 EditableTextUses:54Used by:134
Symbol 110 EditableTextUses:54Used by:134
Symbol 111 EditableTextUses:54Used by:134
Symbol 112 EditableTextUses:54Used by:134
Symbol 113 TextUses:54Used by:116
Symbol 114 TextUses:54Used by:116
Symbol 115 GraphicUsed by:116
Symbol 116 ButtonUses:113 114 115 64Used by:134
Symbol 117 TextUses:54Used by:120 185
Symbol 118 TextUses:54Used by:120 185
Symbol 119 GraphicUsed by:120 185
Symbol 120 ButtonUses:117 118 119 64Used by:134
Symbol 121 TextUses:54Used by:134
Symbol 122 EditableTextUses:54Used by:134
Symbol 123 TextUses:54Used by:134
Symbol 124 EditableTextUses:54Used by:134
Symbol 125 TextUses:54Used by:134
Symbol 126 TextUses:54Used by:134
Symbol 127 EditableTextUses:54Used by:134
Symbol 128 TextUses:54Used by:134
Symbol 129 TextUses:54Used by:134
Symbol 130 EditableTextUses:54Used by:134
Symbol 131 EditableTextUses:54Used by:134
Symbol 132 TextUses:54Used by:134
Symbol 133 TextUses:54Used by:134
Symbol 134 MovieClip [endRoundScreen]Uses:48 21 107 50 51 55 108 109 58 110 60 111 67 112 69 116 97 120 121 122 123 124 125 126 127 128 129 130 131 132 133
Symbol 135 MovieClip [blank]Used by:230  Timeline
Symbol 136 EditableTextUses:54Used by:Timeline
Symbol 137 GraphicUsed by:Timeline
Symbol 138 GraphicUsed by:174
Symbol 139 GraphicUsed by:174
Symbol 140 GraphicUsed by:173 174
Symbol 141 GraphicUsed by:144
Symbol 142 GraphicUsed by:144
Symbol 143 GraphicUsed by:144
Symbol 144 MovieClipUses:141 142 143Used by:174
Symbol 145 GraphicUsed by:146
Symbol 146 MovieClipUses:145Used by:148
Symbol 147 GraphicUsed by:148
Symbol 148 MovieClipUses:146 147Used by:174
Symbol 149 GraphicUsed by:151
Symbol 150 GraphicUsed by:151 153
Symbol 151 ButtonUses:149 150 64Used by:174
Symbol 152 GraphicUsed by:153
Symbol 153 ButtonUses:152 150 64Used by:174
Symbol 154 GraphicUsed by:174
Symbol 155 GraphicUsed by:174
Symbol 156 GraphicUsed by:174
Symbol 157 GraphicUsed by:174
Symbol 158 GraphicUsed by:174
Symbol 159 GraphicUsed by:174
Symbol 160 GraphicUsed by:174
Symbol 161 GraphicUsed by:174
Symbol 162 GraphicUsed by:174
Symbol 163 GraphicUsed by:174
Symbol 164 GraphicUsed by:174
Symbol 165 GraphicUsed by:174
Symbol 166 GraphicUsed by:174
Symbol 167 GraphicUsed by:174
Symbol 168 GraphicUsed by:173 174
Symbol 169 GraphicUsed by:174
Symbol 170 GraphicUsed by:174
Symbol 171 GraphicUsed by:174
Symbol 172 GraphicUsed by:174
Symbol 173 MovieClipUses:140 168Used by:174
Symbol 174 MovieClipUses:138 139 140 144 148 151 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173Used by:Timeline
Symbol 175 TextUses:54Used by:186
Symbol 176 TextUses:54Used by:179
Symbol 177 TextUses:54Used by:179
Symbol 178 GraphicUsed by:179
Symbol 179 ButtonUses:176 177 178 64Used by:186
Symbol 180 TextUses:54Used by:186
Symbol 181 TextUses:54Used by:186
Symbol 182 TextUses:54Used by:186
Symbol 183 TextUses:54Used by:186
Symbol 184 TextUses:54Used by:186
Symbol 185 ButtonUses:117 118 119 64Used by:186
Symbol 186 MovieClipUses:175 179 180 181 182 183 184 185Used by:Timeline
Symbol 187 GraphicUsed by:196
Symbol 188 GraphicUsed by:196
Symbol 189 GraphicUsed by:196
Symbol 190 GraphicUsed by:196
Symbol 191 GraphicUsed by:196
Symbol 192 GraphicUsed by:196
Symbol 193 GraphicUsed by:196
Symbol 194 GraphicUsed by:196
Symbol 195 GraphicUsed by:196
Symbol 196 MovieClipUses:187 188 189 190 191 192 193 194 195Used by:230
Symbol 197 GraphicUsed by:198
Symbol 198 MovieClipUses:197Used by:230
Symbol 199 GraphicUsed by:200
Symbol 200 MovieClipUses:199Used by:201
Symbol 201 MovieClipUses:200Used by:214 215
Symbol 202 GraphicUsed by:205
Symbol 203 GraphicUsed by:205
Symbol 204 GraphicUsed by:205
Symbol 205 MovieClipUses:202 203 204Used by:214 215
Symbol 206 GraphicUsed by:213
Symbol 207 GraphicUsed by:213
Symbol 208 GraphicUsed by:213
Symbol 209 GraphicUsed by:213
Symbol 210 GraphicUsed by:213
Symbol 211 GraphicUsed by:213
Symbol 212 GraphicUsed by:213
Symbol 213 MovieClipUses:206 207 208 209 210 211 212Used by:214 215
Symbol 214 MovieClipUses:201 205 213Used by:230
Symbol 215 MovieClipUses:201 205 213Used by:230
Symbol 216 GraphicUsed by:217
Symbol 217 MovieClipUses:216Used by:227 228 230
Symbol 218 MovieClipUsed by:230
Symbol 219 GraphicUsed by:226
Symbol 220 GraphicUsed by:226
Symbol 221 GraphicUsed by:226
Symbol 222 GraphicUsed by:226
Symbol 223 GraphicUsed by:226
Symbol 224 GraphicUsed by:226
Symbol 225 GraphicUsed by:226
Symbol 226 MovieClipUses:219 220 221 222 223 224 225Used by:227 228
Symbol 227 MovieClipUses:217 226Used by:230
Symbol 228 MovieClipUses:217 226Used by:230
Symbol 229 GraphicUsed by:230
Symbol 230 MovieClipUses:196 135 198 214 215 217 218 227 228 229Used by:Timeline
Symbol 231 TextUses:54Used by:Timeline
Symbol 232 EditableTextUses:54Used by:Timeline
Symbol 233 TextUses:54Used by:Timeline
Symbol 234 EditableTextUses:54Used by:Timeline
Symbol 235 TextUses:54Used by:Timeline
Symbol 236 EditableTextUses:54Used by:Timeline
Symbol 237 TextUses:54Used by:Timeline
Symbol 238 EditableTextUses:54Used by:Timeline
Symbol 239 GraphicUsed by:Timeline
Symbol 240 TextUses:54Used by:242
Symbol 241 TextUses:54Used by:242
Symbol 242 MovieClipUses:240 241Used by:Timeline

Instance Names

"commHit"Frame 1Symbol 135 MovieClip [blank]
"commPost"Frame 1Symbol 135 MovieClip [blank]
"splash"Frame 3Symbol 174 MovieClip
"game"Frame 13Symbol 230 MovieClip
"cine"Frame 13Symbol 135 MovieClip [blank]
"powerMeter"Symbol 214 MovieClip Frame 1Symbol 201 MovieClip
"dribble"Symbol 214 MovieClip Frame 1Symbol 205 MovieClip
"guy"Symbol 214 MovieClip Frame 1Symbol 213 MovieClip
"powerMeter"Symbol 215 MovieClip Frame 1Symbol 201 MovieClip
"dribble"Symbol 215 MovieClip Frame 1Symbol 205 MovieClip
"guy"Symbol 215 MovieClip Frame 1Symbol 213 MovieClip
"dribble"Symbol 227 MovieClip Frame 1Symbol 217 MovieClip
"guy"Symbol 227 MovieClip Frame 1Symbol 226 MovieClip
"dribble"Symbol 228 MovieClip Frame 1Symbol 217 MovieClip
"guy"Symbol 228 MovieClip Frame 1Symbol 226 MovieClip
"bShadow"Symbol 230 MovieClip Frame 1Symbol 198 MovieClip
"p1"Symbol 230 MovieClip Frame 1Symbol 214 MovieClip
"p2"Symbol 230 MovieClip Frame 1Symbol 215 MovieClip
"ball"Symbol 230 MovieClip Frame 1Symbol 217 MovieClip
"goal"Symbol 230 MovieClip Frame 1Symbol 218 MovieClip
"defender"Symbol 230 MovieClip Frame 1Symbol 227 MovieClip
"goalie"Symbol 230 MovieClip Frame 1Symbol 228 MovieClip
"focus"Symbol 230 MovieClip Frame 1Symbol 135 MovieClip [blank]

Special Tags

Protect (24)Timeline Frame 10 bytes ""
ExportAssets (56)Timeline Frame 1Symbol 1 as "kickSound"
ExportAssets (56)Timeline Frame 1Symbol 2 as "stealBall"
ExportAssets (56)Timeline Frame 1Symbol 3 as "defend"
ExportAssets (56)Timeline Frame 1Symbol 4 as "run"
ExportAssets (56)Timeline Frame 1Symbol 5 as "rotate"
ExportAssets (56)Timeline Frame 1Symbol 6 as "forward"
ExportAssets (56)Timeline Frame 1Symbol 7 as "powerUp"
ExportAssets (56)Timeline Frame 1Symbol 19 as "savedCine"
ExportAssets (56)Timeline Frame 1Symbol 24 as "outOfBoundsCine"
ExportAssets (56)Timeline Frame 1Symbol 38 as "goalCine"
ExportAssets (56)Timeline Frame 1Symbol 42 as "stolenCine"
ExportAssets (56)Timeline Frame 1Symbol 47 as "startCine"
ExportAssets (56)Timeline Frame 1Symbol 74 as "endSuccessScreen"
ExportAssets (56)Timeline Frame 1Symbol 95 as "endFailScreen"
ExportAssets (56)Timeline Frame 1Symbol 106 as "retryRound"
ExportAssets (56)Timeline Frame 1Symbol 134 as "endRoundScreen"
ExportAssets (56)Timeline Frame 1Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 1Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 1Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 2Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 2Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 3Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 3Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 4Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 4Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 5Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 5Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 6Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 6Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 7Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 7Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 8Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 8Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 9Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 9Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 10Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 10Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 11Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 11Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 12Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 12Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 14Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 14Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 14Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 14Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 15Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 15Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 15Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 16Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 16Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 17Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 17Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 18Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 18Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 19Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 19Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 20Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 20Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 21Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 21Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 22Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 22Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 23Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 23Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 24Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 24Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 25Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 25Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 26Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 26Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 27Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 27Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 28Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 28Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 29Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 29Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 30Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 30Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 31Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 31Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 32Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 32Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 33Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 33Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 34Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 34Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 35Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 35Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 36Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 36Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 37Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 37Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 38Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 38Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 39Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 39Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 40Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 40Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 41Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 41Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 42Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 42Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 43Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 43Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 44Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 44Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 45Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 45Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 46Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 46Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 47Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 47Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 48Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 48Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 49Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 49Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 50Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 50Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 51Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 51Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 52Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 52Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 53Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 53Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 54Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 54Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 55Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 55Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 56Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 56Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 57Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 57Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 58Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 58Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 59Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 59Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 60Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 60Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 61Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 61Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 62Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 62Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 63Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 63Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 64Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 64Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 65Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 65Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 66Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 66Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 67Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 67Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 68Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 68Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 69Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 69Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 70Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 70Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 71Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 71Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 72Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 72Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 73Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 73Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 74Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 74Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 75Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 75Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 76Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 76Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 77Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 77Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 78Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 78Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 79Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 79Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 80Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 80Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 81Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 81Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 82Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 82Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 83Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 83Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 84Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 84Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 85Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 85Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 86Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 86Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 87Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 87Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 88Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 88Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 89Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 89Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 90Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 90Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 91Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 91Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 92Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 92Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 93Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 93Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 94Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 94Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 95Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 95Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 96Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 96Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 97Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 97Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 98Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 98Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 99Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 99Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 100Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 100Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 101Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 101Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 102Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 102Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 103Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 103Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 104Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 104Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 105Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 105Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 106Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 106Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 107Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 107Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 108Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 108Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 109Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 109Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 110Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 110Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 111Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 111Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 112Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 112Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 113Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 113Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 114Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 114Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 115Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 115Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 116Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 116Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 117Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 117Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 118Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 118Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 119Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 119Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 120Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 120Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 121Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 121Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 122Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 122Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 123Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 123Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 124Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 124Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 125Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 125Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 126Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 126Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 127Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 127Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 128Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 128Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 129Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 129Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 130Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 130Symbol 135 as "blank"
ExportAssets (56)Timeline Frame 131Symbol 135 as "blank"

Labels

"title"Frame 3
"instructions"Frame 12
"playGame"Frame 13
"pauseTimer"Frame 15
"postScore"Frame 16
"loop"Symbol 2 MovieClip [stealBall] Frame 2
"run"Symbol 3 MovieClip [defend] Frame 4
"loop"Symbol 3 MovieClip [defend] Frame 5
"run"Symbol 4 MovieClip [run] Frame 4
"loop"Symbol 4 MovieClip [run] Frame 5
"miss"Symbol 174 MovieClip Frame 39
"ballDribble"Symbol 205 MovieClip Frame 1
"still"Symbol 213 MovieClip Frame 1
"run"Symbol 213 MovieClip Frame 2
"player"Symbol 214 MovieClip Frame 1
"partner"Symbol 214 MovieClip Frame 2
"player"Symbol 215 MovieClip Frame 1
"partner"Symbol 215 MovieClip Frame 2
"still"Symbol 226 MovieClip Frame 1
"run"Symbol 226 MovieClip Frame 2
"player"Symbol 227 MovieClip Frame 1
"partner"Symbol 227 MovieClip Frame 2
"player"Symbol 228 MovieClip Frame 1
"partner"Symbol 228 MovieClip Frame 2
"goUpField"Symbol 230 MovieClip Frame 5
"pause"Symbol 230 MovieClip Frame 29

Dynamic Text Variables

game.totalWinsSymbol 57 EditableText""
game.totalPointsScoredSymbol 59 EditableText""
game.homeScoreSymbol 66 EditableText""
game.visitingScoreSymbol 68 EditableText""
game.totalWinsSymbol 84 EditableText""
game.totalPointsScoredSymbol 85 EditableText""
game.homeScoreSymbol 91 EditableText""
game.visitingScoreSymbol 92 EditableText""
txt_usernameSymbol 94 EditableText""
game.homeScoreSymbol 100 EditableText""
game.visitingScoreSymbol 101 EditableText""
game.totalWinsSymbol 109 EditableText""
game.totalPointsScoredSymbol 110 EditableText""
game.homeScoreSymbol 111 EditableText""
game.visitingScoreSymbol 112 EditableText""
_parent._parent.game.totalTimeSymbol 122 EditableText""
_parent._parent.game.homeScoreSymbol 124 EditableText""
_parent._parent.game.visitingScoreSymbol 127 EditableText""
_parent._parent.game.levelSymbol 130 EditableText""
_parent._parent.game.requiredGoalsSymbol 131 EditableText""
preloaderSymbol 136 EditableText""
game.scoreSymbol 232 EditableText""
game.timeLeftSymbol 234 EditableText""
game.homeScoreSymbol 236 EditableText""
game.visitingScoreSymbol 238 EditableText""




http://swfchan.com/47/234820/info.shtml
Created: 1/5 -2020 02:25:32 Last modified: 1/5 -2020 02:25:32 Server time: 06/05 -2024 16:30:26