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

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

soccer-shootout.swf

This is the info page for
Flash #26238

(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.

HOW TO PLAY

MORE CBC GAMES

PLAY THE GAME

a

cbc.ca/kids

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 244 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 134 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 ("title");
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 ("loop"); }
Symbol 3 MovieClip [defend] Frame 1
lag = 1;
Symbol 3 MovieClip [defend] Frame 2
lag++; if (lag >= delay) { gotoAndPlay ("run"); }
Symbol 3 MovieClip [defend] Frame 3
lag++; if (lag >= delay) { gotoAndPlay ("run"); } 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 ("loop");
Symbol 4 MovieClip [run] Frame 1
lag = 1;
Symbol 4 MovieClip [run] Frame 2
lag++; if (lag >= delay) { gotoAndPlay ("run"); }
Symbol 4 MovieClip [run] Frame 3
lag++; if (lag >= delay) { gotoAndPlay ("run"); } 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 ("loop");
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 88 Button
on (release) { _parent._parent.gotoAndStop("title"); this.removeMovieClip(); }
Symbol 89 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 94 MovieClip [endFailScreen] Frame 84
_parent._parent.commHit.loadVariables("/kids/games/soccershootout/soccer-play.html", "GET"); stop();
Symbol 104 Button
on (release) { _parent._parent.game.setUpRematch(); this.removeMovieClip(); }
Symbol 105 MovieClip [retryRound] Frame 26
stop();
Symbol 115 Button
on (release) { _parent._parent.game.setUpNextRound(); nextFrame(); }
Symbol 119 Button
on (release) { _parent._parent.game.startNextRound(); this.removeMovieClip(); }
Symbol 133 MovieClip [endRoundScreen] Frame 26
stop();
Symbol 133 MovieClip [endRoundScreen] Frame 27
stop();
Symbol 153 Button
on (release) { targetLabel = "instructions"; gotoAndPlay ("miss"); }
Symbol 155 Button
on (release) { getURL ("http://www.cbc.ca/kids/games/", "_blank"); }
Symbol 157 Button
on (release) { targetLabel = "playGame"; gotoAndPlay ("miss"); }
Symbol 184 MovieClip Frame 38
stop();
Symbol 184 MovieClip Frame 53
_parent.gotoAndPlay(targetLabel);
Symbol 191 Button
on (release) { gotoAndStop (2); }
Symbol 197 Button
on (release) { _parent.gotoAndPlay("playGame"); }
Symbol 198 MovieClip Frame 1
stop();
Symbol 198 MovieClip Frame 2
stop();
Symbol 227 MovieClip Frame 1
stop();
Symbol 227 MovieClip Frame 2
play();
Symbol 227 MovieClip Frame 18
gotoAndPlay ("run");
Symbol 228 MovieClip Frame 1
stop();
Symbol 228 MovieClip Frame 2
stop();
Symbol 229 MovieClip Frame 1
stop();
Symbol 229 MovieClip Frame 2
stop();
Symbol 240 MovieClip Frame 1
stop();
Symbol 240 MovieClip Frame 2
play();
Symbol 240 MovieClip Frame 18
gotoAndPlay ("run");
Symbol 241 MovieClip Frame 1
stop();
Instance of Symbol 231 MovieClip "dribble" in Symbol 241 MovieClip Frame 1
onClipEvent (load) { _visible = false; }
Symbol 241 MovieClip Frame 2
stop();
Symbol 242 MovieClip Frame 1
stop();
Instance of Symbol 231 MovieClip "dribble" in Symbol 242 MovieClip Frame 1
onClipEvent (load) { _visible = false; }
Symbol 242 MovieClip Frame 2
stop();
Symbol 244 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 ("goUpField"); } 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 228 MovieClip "p1" in Symbol 244 MovieClip Frame 1
onClipEvent (load) { runTo = _parent.runTo; }
Instance of Symbol 229 MovieClip "p2" in Symbol 244 MovieClip Frame 1
onClipEvent (load) { runTo = _parent.runTo; }
Instance of Symbol 241 MovieClip "defender" in Symbol 244 MovieClip Frame 1
onClipEvent (load) { defendTo = _parent.defendTo; }
Instance of Symbol 242 MovieClip "goalie" in Symbol 244 MovieClip Frame 1
onClipEvent (load) { defendTo = _parent.defendTo; }
Symbol 244 MovieClip Frame 2
init();
Symbol 244 MovieClip Frame 5
play(); updateGoalie();
Symbol 244 MovieClip Frame 13
updateTeamMate(); updateDefender();
Symbol 244 MovieClip Frame 20
updateTeamMate(); updateGoalie();
Symbol 244 MovieClip Frame 28
updateDefender(); gotoAndPlay ("goUpField");
Symbol 244 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 94
Symbol 10 GraphicUsed by:19
Symbol 11 GraphicUsed by:19 94
Symbol 12 GraphicUsed by:19
Symbol 13 GraphicUsed by:19 94
Symbol 14 SoundUsed by:19 94
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 94 105 133
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 94 105 133
Symbol 49 ShapeTweeningUsed by:74
Symbol 50 GraphicUsed by:74 94 105 133
Symbol 51 GraphicUsed by:74 94 105 133
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 82 83 84 85 86 90 91 92 93 96 97 98 99 100 101 102 107 108 109 110 111 112 113 116 117 120 121 122 123 124 125 126 127 128 129 130 131 132 135 188 189 196 245 246 247 248 249 250 251 252 254 255
Symbol 55 TextUses:54Used by:74 94 133
Symbol 56 TextUses:54Used by:74
Symbol 57 EditableTextUses:54Used by:74
Symbol 58 TextUses:54Used by:74 94 133
Symbol 59 EditableTextUses:54Used by:74
Symbol 60 TextUses:54Used by:74 94 133
Symbol 61 TextUses:54Used by:65 89
Symbol 62 TextUses:54Used by:65 89
Symbol 63 GraphicUsed by:65 89
Symbol 64 SoundUsed by:65 73 88 89 104 115 119 153 155 157 191 197
Symbol 65 ButtonUses:61 62 63 64Used by:74
Symbol 66 EditableTextUses:54Used by:74
Symbol 67 TextUses:54Used by:74 94 105 133
Symbol 68 EditableTextUses:54Used by:74
Symbol 69 TextUses:54Used by:74 94 105 133
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:94
Symbol 76 GraphicUsed by:77
Symbol 77 MovieClipUses:76Used by:94
Symbol 78 GraphicUsed by:94
Symbol 79 GraphicUsed by:94
Symbol 80 GraphicUsed by:94
Symbol 81 GraphicUsed by:94
Symbol 82 TextUses:54Used by:94
Symbol 83 EditableTextUses:54Used by:94
Symbol 84 EditableTextUses:54Used by:94
Symbol 85 TextUses:54Used by:88
Symbol 86 TextUses:54Used by:88
Symbol 87 GraphicUsed by:88
Symbol 88 ButtonUses:85 86 87 64Used by:94
Symbol 89 ButtonUses:61 62 63 64Used by:94
Symbol 90 EditableTextUses:54Used by:94
Symbol 91 EditableTextUses:54Used by:94
Symbol 92 TextUses:54Used by:94
Symbol 93 EditableTextUses:54Used by:94
Symbol 94 MovieClip [endFailScreen]Uses:48 21 75 50 51 9 77 78 79 11 14 13 80 81 55 82 83 58 84 60 88 89 90 67 91 69 92 93
Symbol 95 ShapeTweeningUsed by:105
Symbol 96 TextUses:54Used by:105 133
Symbol 97 TextUses:54Used by:105
Symbol 98 TextUses:54Used by:105
Symbol 99 EditableTextUses:54Used by:105
Symbol 100 EditableTextUses:54Used by:105
Symbol 101 TextUses:54Used by:104
Symbol 102 TextUses:54Used by:104
Symbol 103 GraphicUsed by:104
Symbol 104 ButtonUses:101 102 103 64Used by:105
Symbol 105 MovieClip [retryRound]Uses:48 21 95 50 96 51 97 98 99 67 100 69 104
Symbol 106 ShapeTweeningUsed by:133
Symbol 107 TextUses:54Used by:133
Symbol 108 EditableTextUses:54Used by:133
Symbol 109 EditableTextUses:54Used by:133
Symbol 110 EditableTextUses:54Used by:133
Symbol 111 EditableTextUses:54Used by:133
Symbol 112 TextUses:54Used by:115
Symbol 113 TextUses:54Used by:115
Symbol 114 GraphicUsed by:115
Symbol 115 ButtonUses:112 113 114 64Used by:133
Symbol 116 TextUses:54Used by:119 197
Symbol 117 TextUses:54Used by:119 197
Symbol 118 GraphicUsed by:119 197
Symbol 119 ButtonUses:116 117 118 64Used by:133
Symbol 120 TextUses:54Used by:133
Symbol 121 EditableTextUses:54Used by:133
Symbol 122 TextUses:54Used by:133
Symbol 123 EditableTextUses:54Used by:133
Symbol 124 TextUses:54Used by:133
Symbol 125 TextUses:54Used by:133
Symbol 126 EditableTextUses:54Used by:133
Symbol 127 TextUses:54Used by:133
Symbol 128 TextUses:54Used by:133
Symbol 129 EditableTextUses:54Used by:133
Symbol 130 EditableTextUses:54Used by:133
Symbol 131 TextUses:54Used by:133
Symbol 132 TextUses:54Used by:133
Symbol 133 MovieClip [endRoundScreen]Uses:48 21 106 50 51 55 107 108 58 109 60 110 67 111 69 115 96 119 120 121 122 123 124 125 126 127 128 129 130 131 132
Symbol 134 MovieClip [blank]Used by:244  Timeline
Symbol 135 EditableTextUses:54Used by:Timeline
Symbol 136 GraphicUsed by:Timeline
Symbol 137 GraphicUsed by:184
Symbol 138 GraphicUsed by:184
Symbol 139 GraphicUsed by:183 184
Symbol 140 GraphicUsed by:143
Symbol 141 GraphicUsed by:143
Symbol 142 GraphicUsed by:143
Symbol 143 MovieClipUses:140 141 142Used by:184
Symbol 144 GraphicUsed by:145
Symbol 145 MovieClipUses:144Used by:147
Symbol 146 GraphicUsed by:147
Symbol 147 MovieClipUses:145 146Used by:184
Symbol 148 GraphicUsed by:153 155 157
Symbol 149 GraphicUsed by:153 155 157
Symbol 150 FontUsed by:151 154 156
Symbol 151 TextUses:150Used by:153
Symbol 152 GraphicUsed by:153 155 157
Symbol 153 ButtonUses:148 149 151 152 64Used by:184
Symbol 154 TextUses:150Used by:155
Symbol 155 ButtonUses:148 149 154 152 64Used by:184
Symbol 156 TextUses:150Used by:157
Symbol 157 ButtonUses:148 149 156 152 64Used by:184
Symbol 158 GraphicUsed by:163
Symbol 159 FontUsed by:160 161 162
Symbol 160 TextUses:159Used by:163 200
Symbol 161 TextUses:159Used by:163 200
Symbol 162 TextUses:159Used by:163 200
Symbol 163 MovieClipUses:158 160 161 162Used by:184
Symbol 164 GraphicUsed by:184
Symbol 165 GraphicUsed by:184
Symbol 166 GraphicUsed by:184
Symbol 167 GraphicUsed by:184
Symbol 168 GraphicUsed by:184
Symbol 169 GraphicUsed by:184
Symbol 170 GraphicUsed by:184
Symbol 171 GraphicUsed by:184
Symbol 172 GraphicUsed by:184
Symbol 173 GraphicUsed by:184
Symbol 174 GraphicUsed by:184
Symbol 175 GraphicUsed by:184
Symbol 176 GraphicUsed by:184
Symbol 177 GraphicUsed by:184
Symbol 178 GraphicUsed by:183 184
Symbol 179 GraphicUsed by:184
Symbol 180 GraphicUsed by:184
Symbol 181 GraphicUsed by:184
Symbol 182 GraphicUsed by:184
Symbol 183 MovieClipUses:139 178Used by:184
Symbol 184 MovieClipUses:137 138 139 143 147 153 155 157 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183Used by:Timeline
Symbol 185 GraphicUsed by:198
Symbol 186 FontUsed by:187 192 193 194 195
Symbol 187 TextUses:186Used by:198
Symbol 188 TextUses:54Used by:191
Symbol 189 TextUses:54Used by:191
Symbol 190 GraphicUsed by:191
Symbol 191 ButtonUses:188 189 190 64Used by:198
Symbol 192 TextUses:186Used by:198
Symbol 193 TextUses:186Used by:198
Symbol 194 TextUses:186Used by:198
Symbol 195 TextUses:186Used by:198
Symbol 196 TextUses:54Used by:198
Symbol 197 ButtonUses:116 117 118 64Used by:198
Symbol 198 MovieClipUses:185 187 191 192 193 194 195 196 197Used by:Timeline
Symbol 199 GraphicUsed by:200
Symbol 200 MovieClipUses:199 160 161 162Used by:Timeline
Symbol 201 GraphicUsed by:210
Symbol 202 GraphicUsed by:210
Symbol 203 GraphicUsed by:210
Symbol 204 GraphicUsed by:210
Symbol 205 GraphicUsed by:210
Symbol 206 GraphicUsed by:210
Symbol 207 GraphicUsed by:210
Symbol 208 GraphicUsed by:210
Symbol 209 GraphicUsed by:210
Symbol 210 MovieClipUses:201 202 203 204 205 206 207 208 209Used by:244
Symbol 211 GraphicUsed by:212
Symbol 212 MovieClipUses:211Used by:244
Symbol 213 GraphicUsed by:214
Symbol 214 MovieClipUses:213Used by:215
Symbol 215 MovieClipUses:214Used by:228 229
Symbol 216 GraphicUsed by:219
Symbol 217 GraphicUsed by:219
Symbol 218 GraphicUsed by:219
Symbol 219 MovieClipUses:216 217 218Used by:228 229
Symbol 220 GraphicUsed by:227
Symbol 221 GraphicUsed by:227
Symbol 222 GraphicUsed by:227
Symbol 223 GraphicUsed by:227
Symbol 224 GraphicUsed by:227
Symbol 225 GraphicUsed by:227
Symbol 226 GraphicUsed by:227
Symbol 227 MovieClipUses:220 221 222 223 224 225 226Used by:228 229
Symbol 228 MovieClipUses:215 219 227Used by:244
Symbol 229 MovieClipUses:215 219 227Used by:244
Symbol 230 GraphicUsed by:231
Symbol 231 MovieClipUses:230Used by:241 242 244
Symbol 232 MovieClipUsed by:244
Symbol 233 GraphicUsed by:240
Symbol 234 GraphicUsed by:240
Symbol 235 GraphicUsed by:240
Symbol 236 GraphicUsed by:240
Symbol 237 GraphicUsed by:240
Symbol 238 GraphicUsed by:240
Symbol 239 GraphicUsed by:240
Symbol 240 MovieClipUses:233 234 235 236 237 238 239Used by:241 242
Symbol 241 MovieClipUses:231 240Used by:244
Symbol 242 MovieClipUses:231 240Used by:244
Symbol 243 GraphicUsed by:244
Symbol 244 MovieClipUses:210 134 212 228 229 231 232 241 242 243Used by:Timeline
Symbol 245 TextUses:54Used by:Timeline
Symbol 246 EditableTextUses:54Used by:Timeline
Symbol 247 TextUses:54Used by:Timeline
Symbol 248 EditableTextUses:54Used by:Timeline
Symbol 249 TextUses:54Used by:Timeline
Symbol 250 EditableTextUses:54Used by:Timeline
Symbol 251 TextUses:54Used by:Timeline
Symbol 252 EditableTextUses:54Used by:Timeline
Symbol 253 GraphicUsed by:Timeline
Symbol 254 TextUses:54Used by:256
Symbol 255 TextUses:54Used by:256
Symbol 256 MovieClipUses:254 255Used by:Timeline

Instance Names

"commHit"Frame 1Symbol 134 MovieClip [blank]
"commPost"Frame 1Symbol 134 MovieClip [blank]
"splash"Frame 3Symbol 184 MovieClip
"game"Frame 13Symbol 244 MovieClip
"cine"Frame 13Symbol 134 MovieClip [blank]
"powerMeter"Symbol 228 MovieClip Frame 1Symbol 215 MovieClip
"dribble"Symbol 228 MovieClip Frame 1Symbol 219 MovieClip
"guy"Symbol 228 MovieClip Frame 1Symbol 227 MovieClip
"powerMeter"Symbol 229 MovieClip Frame 1Symbol 215 MovieClip
"dribble"Symbol 229 MovieClip Frame 1Symbol 219 MovieClip
"guy"Symbol 229 MovieClip Frame 1Symbol 227 MovieClip
"dribble"Symbol 241 MovieClip Frame 1Symbol 231 MovieClip
"guy"Symbol 241 MovieClip Frame 1Symbol 240 MovieClip
"dribble"Symbol 242 MovieClip Frame 1Symbol 231 MovieClip
"guy"Symbol 242 MovieClip Frame 1Symbol 240 MovieClip
"bShadow"Symbol 244 MovieClip Frame 1Symbol 212 MovieClip
"p1"Symbol 244 MovieClip Frame 1Symbol 228 MovieClip
"p2"Symbol 244 MovieClip Frame 1Symbol 229 MovieClip
"ball"Symbol 244 MovieClip Frame 1Symbol 231 MovieClip
"goal"Symbol 244 MovieClip Frame 1Symbol 232 MovieClip
"defender"Symbol 244 MovieClip Frame 1Symbol 241 MovieClip
"goalie"Symbol 244 MovieClip Frame 1Symbol 242 MovieClip
"focus"Symbol 244 MovieClip Frame 1Symbol 134 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 94 as "endFailScreen"
ExportAssets (56)Timeline Frame 1Symbol 105 as "retryRound"
ExportAssets (56)Timeline Frame 1Symbol 133 as "endRoundScreen"
ExportAssets (56)Timeline Frame 1Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 1Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 1Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 2Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 2Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 3Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 3Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 4Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 4Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 5Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 5Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 6Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 6Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 7Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 7Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 8Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 8Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 9Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 9Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 10Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 10Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 11Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 11Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 12Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 12Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 13Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 14Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 14Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 14Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 14Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 15Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 15Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 15Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 16Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 16Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 17Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 17Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 18Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 18Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 19Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 19Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 20Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 20Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 21Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 21Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 22Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 22Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 23Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 23Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 24Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 24Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 25Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 25Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 26Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 26Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 27Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 27Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 28Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 28Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 29Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 29Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 30Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 30Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 31Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 31Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 32Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 32Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 33Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 33Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 34Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 34Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 35Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 35Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 36Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 36Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 37Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 37Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 38Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 38Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 39Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 39Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 40Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 40Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 41Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 41Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 42Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 42Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 43Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 43Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 44Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 44Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 45Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 45Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 46Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 46Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 47Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 47Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 48Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 48Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 49Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 49Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 50Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 50Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 51Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 51Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 52Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 52Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 53Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 53Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 54Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 54Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 55Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 55Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 56Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 56Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 57Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 57Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 58Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 58Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 59Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 59Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 60Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 60Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 61Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 61Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 62Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 62Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 63Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 63Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 64Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 64Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 65Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 65Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 66Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 66Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 67Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 67Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 68Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 68Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 69Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 69Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 70Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 70Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 71Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 71Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 72Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 72Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 73Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 73Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 74Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 74Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 75Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 75Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 76Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 76Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 77Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 77Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 78Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 78Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 79Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 79Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 80Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 80Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 81Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 81Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 82Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 82Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 83Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 83Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 84Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 84Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 85Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 85Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 86Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 86Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 87Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 87Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 88Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 88Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 89Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 89Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 90Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 90Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 91Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 91Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 92Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 92Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 93Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 93Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 94Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 94Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 95Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 95Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 96Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 96Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 97Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 97Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 98Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 98Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 99Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 99Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 100Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 100Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 101Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 101Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 102Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 102Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 103Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 103Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 104Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 104Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 105Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 105Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 106Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 106Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 107Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 107Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 108Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 108Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 109Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 109Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 110Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 110Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 111Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 111Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 112Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 112Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 113Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 113Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 114Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 114Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 115Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 115Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 116Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 116Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 117Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 117Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 118Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 118Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 119Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 119Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 120Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 120Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 121Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 121Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 122Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 122Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 123Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 123Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 124Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 124Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 125Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 125Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 126Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 126Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 127Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 127Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 128Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 128Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 129Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 129Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 130Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 130Symbol 134 as "blank"
ExportAssets (56)Timeline Frame 131Symbol 134 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 184 MovieClip Frame 39
"ballDribble"Symbol 219 MovieClip Frame 1
"still"Symbol 227 MovieClip Frame 1
"run"Symbol 227 MovieClip Frame 2
"player"Symbol 228 MovieClip Frame 1
"partner"Symbol 228 MovieClip Frame 2
"player"Symbol 229 MovieClip Frame 1
"partner"Symbol 229 MovieClip Frame 2
"still"Symbol 240 MovieClip Frame 1
"run"Symbol 240 MovieClip Frame 2
"player"Symbol 241 MovieClip Frame 1
"partner"Symbol 241 MovieClip Frame 2
"player"Symbol 242 MovieClip Frame 1
"partner"Symbol 242 MovieClip Frame 2
"goUpField"Symbol 244 MovieClip Frame 5
"pause"Symbol 244 MovieClip Frame 29

Dynamic Text Variables

game.totalWinsSymbol 57 EditableText""
game.totalPointsScoredSymbol 59 EditableText""
game.homeScoreSymbol 66 EditableText""
game.visitingScoreSymbol 68 EditableText""
game.totalWinsSymbol 83 EditableText""
game.totalPointsScoredSymbol 84 EditableText""
game.homeScoreSymbol 90 EditableText""
game.visitingScoreSymbol 91 EditableText""
txt_usernameSymbol 93 EditableText""
game.homeScoreSymbol 99 EditableText""
game.visitingScoreSymbol 100 EditableText""
game.totalWinsSymbol 108 EditableText""
game.totalPointsScoredSymbol 109 EditableText""
game.homeScoreSymbol 110 EditableText""
game.visitingScoreSymbol 111 EditableText""
_parent._parent.game.totalTimeSymbol 121 EditableText""
_parent._parent.game.homeScoreSymbol 123 EditableText""
_parent._parent.game.visitingScoreSymbol 126 EditableText""
_parent._parent.game.levelSymbol 129 EditableText""
_parent._parent.game.requiredGoalsSymbol 130 EditableText""
preloaderSymbol 135 EditableText""
game.scoreSymbol 246 EditableText""
game.timeLeftSymbol 248 EditableText""
game.homeScoreSymbol 250 EditableText""
game.visitingScoreSymbol 252 EditableText""




http://swfchan.com/6/26238/info.shtml
Created: 22/5 -2019 21:26:49 Last modified: 22/5 -2019 21:26:49 Server time: 15/05 -2024 18:48:27