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

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

Tabletop Cricket.swf

This is the info page for
Flash #28483

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


Text
AUSTRALIA

Free Games AND ShowS

LOADING

LOADING

99

Ashes Edition

CRICKET

CRICKET

PLAY GAME

INSTRUCTIONS

FREE GAMES BY EMAIL

PLAY MORE GAMES

BACK

£50 FIRST TRADE BONUS

<p align="left"><font face="VAGRounded BT" size="10" color="#ffffff">Like your sport and know your cricket? </font></p><p align="left"><font face="VAGRounded BT" size="10" color="#ffffff">Open a Cantor Spreadfair account and get a £50 first </font></p><p align="left"><font face="VAGRounded BT" size="10" color="#ffffff">trade bonus*. Trade on wickets and runs and other </font></p><p align="left"><font face="VAGRounded BT" size="10" color="#ffffff">markets throughout the Ashes Series. </font></p><p align="left"><font face="VAGRounded BT" size="10" color="#ffff00"><a href="http://switch.atdmt.com/action/pmlcan_fromcricketgametocantorspreadfairhomepag_6" target = "cantor"><b>Click here</b></a><font color="#ffffff"> to open an account. </font></font></p><p align="left"></p><p align="left"><font face="VAGRounded BT" size="10" color="#ffffff">*To withdraw £50 bonus you must risk at least £50 </font></p><p align="left"></p><p align="left"><font face="VAGRounded BT" size="10" color="#ffffff">Spread bets are high risk products; you need deposit <sbr />only a small percentage of the value of the bet. <sbr />However, your losses may substantially exceed that <sbr />deposit very rapidly and thus require you to make <sbr />additional deposits at short notice to maintain your bets. <sbr />Spread bets are not suitable for all customers. Before <sbr />betting, you should ensure you fully understand the risks <sbr />and seek independent financial advice if necessary.</font></p>

TOTAL

OVERS

WICKETS

LAST INNS

000

01.1

00

000

3
2
1

1
2
3

1           2           3

3           2          1

BACK

BACK

NEXT

NEXT

The game has 2 innings, one where you control the
batsman and one where you control the bowler. When
bowling you need to position your fielders. Each innings
has 4 overs of 6 balls each.

Click and drag the bowler and batsman to set up their
speed and direction. Release the mouse to activate them.

Each team has 11 players. Each player stays in bat until
they are either bowled or caught out. When either the 10th
batsman is out or all of the overs have been completed the
innings will end.

1, 2 or 3 points are scored if the ball finishes up on in the
relevant zones on the pitch. A 4 is scored if the ball hits
the boundary and 6 is scored if the ball hits the yellow
boundary in the outlined zones.

LEADERBOARD

Pick a team to represent. At the end of the game,
your score will go towards that team's batting
averages.

SELECT YOUR TEAM

Now pick a team to play against...

SELECT YOUR OPPONENT

Get ready for your cricket match!

VS.

MATCH:

Select heads or tails by clicking on a coin. If you
win the toss then you can choose whether you
want to bat first or bowl.

THE TOSS

Now choose whether you want to bat or bowl first...

YOU WON!!

BOWL

BAT

For the purposes of the first phase, the player selects to represent either England or Australia, which the result of the match added to the stats area at the end of the game

YOU LOST!!

POSITION YOUR FIELDERS AND
THEN PRESS PLAY TO BEGIN.

CLICK AND DRAG THE BOWLER
TO LAUNCH THE BALL.

CLICK AND DRAG THE BATSMAN TO SET
THE SPEED AND DIRECTION OF THE BALL.
RELEASE THE MOUSE TO HIT THE BALL.

READY?

OUT!!

NEXT

PLAY

CHANGE
FIELDERS

YOU'RE OUT!!

YOU'VE GOT A CENTURY!

TEST

PLAY AGAIN

SCORES

ActionScript [AS1/AS2]

Frame 100
stop(); loadMovieNum ("http://watches.whodidit.co.uk/watch44.swf", 10); _global.buttonOverSFX = new Sound(this); _global.buttonOverSFX.attachSound("buttonOverSFX"); _global.buttonDownSFX = new Sound(this); _global.buttonDownSFX.attachSound("buttonDownSFX");
Frame 110
Ellipse = function (width, height) { this.width = width; this.height = height; var wRadius = (width >> 1); var hRadius = (height >> 1); this.focus = Math.sqrt((wRadius * wRadius) - (hRadius * hRadius)); return(this); }; Ellipse.prototype.pointInEllipse = function (x, y) { var dx1 = (x - this.focus); var dx2 = (x + this.focus); var yy = (y * y); var focus1Dist = Math.sqrt((dx1 * dx1) + yy); var focus2Dist = Math.sqrt((dx2 * dx2) + yy); return((focus1Dist + focus2Dist) < this.width); }; Object.registerClass("Ellipse", Ellipse); Game = function () { this.innings; this.mc; this.state; this.userScore; this.total; this.overs; this.ballNum; this.wickets; this.lastInnings; this.inningsNum; this.batsman; this.bowler; this.fielders; this.counter; this.mouseListener; this.caughtOut; this.ballWithinBoundary; this.ballOverBoundaryValue; this.numSixes; this.numFours; this.numBalls; this.numOuts; this.bowlDuration = 15; this.battingLeeway = 5; this.teamSize = 11; this.fielderSpread = [3, 3, 3, 1]; this.maxOvers = 4; this.friction = 0.96; this.minPitchScale = 37; this.ring1 = new Ellipse(740, 556); this.ring2 = new Ellipse(1054, 792); this.pitchEllipse = new Ellipse(1278, 1003); this.boundaryEllipse = new Ellipse(1648, 1373); this.creaseEllipse = new Ellipse(500, 260); this.previousAngle = null; _global.teamScore = 0; _global.teamWickets = 0; _global.opponentScore = 0; _global.opponentWickets = 0; _global.userSixes = 0; _global.userFours = 0; _global.strikeRate = 0; _global.battingRate = 0; this.fielderPositions = [[], [], [], []]; this.fielderPositions[0].push([[35, -453], [101, -430], [167, -443], [204, -415], [251, -429], [251, -382]]); this.fielderPositions[0].push([[-327, -410], [-346, -371], [-386, -332], [-457, -275], [-489, -217]]); this.fielderPositions[0].push([[-489, 195], [-467, 235], [-423, 271], [-373, 302], [-327, 332]]); this.fielderPositions[0].push([[18, 424], [56, 392], [106, 401], [139, 379], [221, 379]]); this.fielderPositions[1].push([[160, -288], [159, -365], [56, -382], [85, -315], [144, -332]]); this.fielderPositions[1].push([[-305, -328], [-360, -282], [-411, -207], [-397, -151], [-337, -193]]); this.fielderPositions[1].push([[-294, 282], [-287, 208], [-360, 192], [-344, 145], [-454, 172]]); this.fielderPositions[1].push([[158, 248], [125, 284], [104, 324], [75, 271], [35, 353]]); this.fielderPositions[2].push([[44, -257], [85, -125], [106, -193], [-60, -193], [21, -179]]); this.fielderPositions[2].push([[-78, 150], [80, 149], [58, 234], [18, 184], [154, 184]]); this.fielderPositions[2].push([[-164, -189], [-114, -145], [-277, -84], [-255, 62], [-190, 115], [-154, 184]]); this.fielderPositions[3].push([[226, 0]]); }; Game.prototype.init = function (mc, innings) { this.mc = mc; this.innings = innings; this.batsman = mc.pitch.batsman; this.bowler = mc.pitch.bowler; this.fielders = []; var i = 0; while (i < (this.teamSize - 1)) { var f = mc.pitch["fielder" + i]; f.faceTarget(); if (innings == "field") { f.hat.gotoAndStop(_global.teamColour); } else { f.hat.gotoAndStop(_global.opponentColour); } this.fielders.push(f); i++; } this.total = 0; this.overs = 1; this.ballNum = 1; this.wickets = 0; this.numSixes = 0; this.numFours = 0; this.numBalls = 0; this.numOuts = 0; this.lastInnings = 0; this.inningsNum = 1; this.xStep = 0; this.yStep = 0; this.mc.pitch.x0 = this.mc.pitch._x; this.mc.pitch.y0 = this.mc.pitch._y; this.ballRadius = mc.pitch.ball._width / 2; this.randomiseFielderPositions(); this.updateScoreboard(); this.updateSmallPitch(); this.mc.message.gotoAndStop("hidden"); this.mc.playButton._visible = false; this.mc.changeFieldersButton._visible = false; this.mc.pitch.ball._visible = false; this.mc.pitch.sixAreas._alpha = 0; this.batsman.marker._xscale = (this.batsman.marker._yscale = 1); this.lightHitAudio = new Sound(this.mc); this.lightHitAudio.attachSound("lightHit"); this.mediumHitAudio = new Sound(this.mc); this.mediumHitAudio.attachSound("mediumHit"); this.hardHitAudio = new Sound(this.mc); this.hardHitAudio.attachSound("hardHit"); this.heavyHitAudio = new Sound(this.mc); this.heavyHitAudio.attachSound("heavyHit"); this.caughtAudio = new Sound(this.mc); this.caughtAudio.attachSound("caught"); this.bowledAudio = new Sound(this.mc); this.bowledAudio.attachSound("bowled"); this.inningsAudio = new Sound(this.mc); this.inningsAudio.attachSound("innings"); this.bgAudio = new Sound(this.mc); this.bgAudio.attachSound("bgLoop"); this.bgAudio.start(0, 10000); if (innings == "field") { this.batsman.batsmanGraphic.ani.hat.gotoAndStop(_global.opponentColour); this.zoomTo(this.minPitchScale); this.state = 1; } else if (innings == "bat") { this.batsman.batsmanGraphic.ani.hat.gotoAndStop(_global.teamColour); this.state = 3; } var callback = this; this.mc.onEnterFrame = function () { callback.update(); }; _global.gameInited = true; _global.scoreSubmitted = false; }; Game.prototype.update = function () { switch (this.state) { case -1 : this.killEventLoop(); return; case 0 : return; case 1 : this.initFielders(); return; case 2 : this.updateFielders(); return; case 3 : this.autoInitFielders(); return; case 4 : this.initBowler(); return; case 5 : this.initBatsman(); return; case 6 : this.bowl(); return; case 7 : this.initBall(); return; case 8 : this.updateBall(); return; case 9 : this.followBall(); return; case 10 : this.finishBall(); } }; Game.prototype.initFielders = function () { var callback = this; var counter = (this.fielders.length - 2); var rings = [this.creaseEllipse, this.ring1, this.ring2, this.pitchEllipse]; var i = 0; while (i < (this.fielderSpread.length - 1)) { var j = 0; while (j < this.fielderSpread[i]) { this.fielders[counter].innerRing = rings[i]; this.fielders[counter].outerRing = rings[i + 1]; this.fielders[counter].init(1); counter--; j++; } i++; } if (((this.wickets == 0) && (this.overs == 1)) && (this.ballNum == 1)) { this.mc.message.gotoAndStop("setFielders"); this.zoomTo(this.minPitchScale); } else { this.mc.changeFieldersButton._visible = true; this.mc.changeFieldersButton.onRelease = function () { callback.zoomTo(callback.minPitchScale); this._visible = false; }; } this.mc.pitch.ball._visible = false; this.bowler.init(); if (this.outMessageShowing) { this.outMessageShowing = false; this.mc.message.gotoAndStop("hidden"); } this.messageTimer = setInterval(function () { callback.mc.message.gotoAndStop("hidden"); clearInterval(callback.messageTimer); }, 2400); this.state = 2; this.mc.playButton._visible = true; this.mc.playButton.onRollOver = function () { _global.buttonOverSFX.start(); }; this.mc.playButton.onPress = function () { _global.buttonDownSFX.start(); }; this.mc.playButton.onRelease = function () { callback.state = 4; }; }; Game.prototype.updateFielders = function () { this.updateSmallPitch(); }; Game.prototype.autoInitFielders = function () { this.randomiseFielderPositions(); if (((this.wickets == 0) && (this.overs == 1)) && (this.ballNum == 1)) { this.mc.message.gotoAndStop("setBatsman"); var pauseTime = 3200; } else { this.mc.message.gotoAndStop("ready"); if (this.caughtOut) { var pauseTime = 5000; this.caughtOut = false; } else { var pauseTime = 1700; } } this.mc.pitch.ball._visible = false; this.bowler.init(); var mouseListener = new Object(); var callback = this; this.messageTimer = setInterval(function () { callback.mc.message.gotoAndStop("hidden"); callback.state = 5; clearInterval(callback.messageTimer); }, pauseTime); this.updateSmallPitch(); this.state = 0; }; Game.prototype.initBowler = function () { this.caughtOut = false; this.mc.playButton._visible = false; this.mc.changeFieldersButton._visible = false; if (((this.wickets == 0) && (this.overs == 1)) && (this.ballNum == 1)) { this.mc.message.gotoAndStop("setBowler"); var mouseListener = new Object(); var callback = this; Mouse.addListener(mouseListener); mouseListener.onMouseDown = function () { callback.mc.message.gotoAndStop("hidden"); Mouse.removeListener(this); delete this; }; } var i = 0; while (i < this.fielders.length) { this.fielders[i].state = 3; i++; } this.zoomTo(100); this.bowler.init(1); this.state = 0; }; Game.prototype.initBatsman = function () { this.numBalls++; this.caughtOut = false; var mouseListener = new Object(); var callback = this; Mouse.addListener(mouseListener); mouseListener.onMouseDown = function () { callback.state = 6; Mouse.removeListener(this); delete this; }; this.zoomTo(100); this.batsman.init(1); this.state = 0; }; Game.prototype.bowl = function () { this.bowler.init(4); this.state = 0; }; Game.prototype.initBall = function () { if (this.innings == "field") { var pt = {x:0, y:0}; this.batsman.init(4); if (random(100) < 10) { this.batsmanTrigger = (this.bowlDuration - this.batsman.numFramesToBat) + 1; } else { var batsmanHandicap = random(3); this.batsmanTrigger = this.batsman.numFramesToBat + batsmanHandicap; } } else if (this.innings == "bat") { var pt = {x:0, y:17}; } this.ballWithinBoundary = true; this.bowler.bowlerGraphic.localToGlobal(pt); this.mc.pitch.globalToLocal(pt); this.mc.pitch.ball._visible = true; this.mc.pitch.ball._x = pt.x; this.mc.pitch.ball._y = pt.y; this.xGoal = 125; this.yGoal = 0; this.xStep = (this.xGoal - pt.x) / this.bowlDuration; this.yStep = (this.yGoal - pt.y) / this.bowlDuration; this.updateSmallPitch(this.mc.pitch.ball); this.counter = 0; this.state = 8; }; Game.prototype.updateBall = function () { this.mc.pitch.ball._x = this.mc.pitch.ball._x + this.xStep; this.mc.pitch.ball._y = this.mc.pitch.ball._y + this.yStep; this.mc.pitch.ball.gfx._rotation = this.mc.pitch.ball.gfx._rotation + 14; this.updateSmallPitch(this.mc.pitch.ball); if ((this.counter == (this.bowlDuration - this.batsmanTrigger)) && (this.innings == "field")) { this.batsman.state = 5; } if ((++this.counter) == (this.bowlDuration + 1)) { this.goingOut = true; this.numOuts++; this.mc.pitch.wicket.gotoAndPlay(2); if (this.innings == "bat") { this.mc.cutMask.showMovie("bowled"); } else { this.outMessageShowing = true; this.mc.message.gotoAndStop("out"); } } else if (this.counter == (this.bowlDuration + 50)) { if (this.goingOut) { this.bowledAudio.start(); this.goingOut = false; this.wickets++; this.updateScoreboard(); this.xStep = 0; this.yStep = 0; this.counter = 0; this.state = 10; } else { this.state = 3; } } }; Game.prototype.checkHit = function (speed, angle, maxAngle) { var impact = (this.bowlDuration - this.counter); if ((impact < this.battingLeeway) && (impact >= 0)) { var impactPenalty = (3 * impact); var maxSpeed = 30; if (speed > 0.75) { this.heavyHitAudio.start(); } else if (speed > 0.5) { this.hardHitAudio.start(); } else if (speed > 0.25) { this.mediumHitAudio.start(); } else { this.lightHitAudio.start(); } var radAngle = ((Math.PI * maxAngle) / 180); var meanSpeed = ((maxSpeed - impactPenalty) * speed); var meanAngle = (radAngle * angle); this.xStep = (-meanSpeed) * Math.cos(meanAngle); this.yStep = (-meanSpeed) * Math.sin(meanAngle); this.previousAngle = maxAngle * angle; this.zoomTo(80); this.state = 9; } }; Game.prototype.followBall = function () { var ball = this.mc.pitch.ball; var pMask = this.mc.pitchMask; if (!this.caughtOut) { ball._x = ball._x + this.xStep; ball._y = ball._y + this.yStep; ball.gfx._rotation = ball.gfx._rotation + (6 * (this.xStep + this.yStep)); this.checkFielders(ball._x, ball._y); if (this.ballWithinBoundary && (!this.pitchEllipse.pointInEllipse(ball._x, ball._y))) { var damping = 0.1; this.xStep = damping * (-this.xStep); this.yStep = damping * (-this.yStep); this.ballWithinBoundary = false; var pt = {x:ball._x, y:ball._y}; this.mc.pitch.localToGlobal(pt); if (this.mc.pitch.sixAreas.hitTest(pt.x, pt.y, true)) { this.caughtAudio.start(); this.ballOverBoundaryValue = 6; if (this.innings == "bat") { this.mc.cutMask.showMovie("six"); this.numSixes++; } } else { this.bowledAudio.start(); this.ballOverBoundaryValue = 4; if (this.innings == "bat") { this.mc.cutMask.showMovie("four"); this.numFours++; } } } } else { ball._x = ball._x + (0.3 * (this.xCatchingFielder - ball._x)); ball._y = ball._y + (0.3 * (this.yCatchingFielder - ball._y)); } var xGoal = ((0.5 * pMask._width) - ball._x); var yGoal = ((0.5 * pMask._height) - ball._y); var xPitch = (this.mc.pitch._x + (0.3 * (xGoal - this.mc.pitch._x))); var yPitch = (this.mc.pitch._y + (0.3 * (yGoal - this.mc.pitch._y))); var pw = ((this.mc.pitch._xscale * this.mc.pitch.bg._width) / 200); var ph = ((this.mc.pitch._yscale * this.mc.pitch.bg._height) / 200); var leftEdge = (pMask._x + pw); var topEdge = (pMask._y + ph); var rightEdge = ((pMask._x + pMask._width) - pw); var bottomEdge = ((pMask._y + pMask._height) - ph); xPitch = Math.min(xPitch, leftEdge); xPitch = Math.max(xPitch, rightEdge); yPitch = Math.min(yPitch, topEdge); yPitch = Math.max(yPitch, bottomEdge); this.mc.pitch._x = xPitch; this.mc.pitch._y = yPitch; this.updateSmallPitch(this.mc.pitch.ball); this.xStep = this.xStep * this.friction; this.yStep = this.yStep * this.friction; if ((Math.abs(this.xStep) < 0.2) && (Math.abs(this.yStep) < 0.2)) { if (!this.caughtOut) { var numRuns = 3; if (this.ballWithinBoundary) { if (this.ring1.pointInEllipse(ball._x, ball._y)) { numRuns = 1; } else if (this.ring2.pointInEllipse(ball._x, ball._y)) { numRuns = 2; } } else { numRuns = this.ballOverBoundaryValue; } if (((this.total < 100) && ((this.total + numRuns) >= 100)) && (this.innings == "bat")) { this.mc.cutMask.showMovie("century"); } this.total = this.total + numRuns; } this.updateScoreboard(); this.xStep = (this.mc.pitch.x0 - this.mc.pitch._x) / 30; this.yStep = (this.mc.pitch.y0 - this.mc.pitch._y) / 30; this.counter = 0; this.state = 10; } }; Game.prototype.checkFielders = function (x, y) { var bL = (x - this.ballRadius); var bR = (x + this.ballRadius); var bT = (y - this.ballRadius); var bB = (y + this.ballRadius); var i = -1; while (i < this.fielders.length) { var f = ((i == -1) ? (this.bowler) : (this.fielders[i])); var fielderRadius = 25; var fL = (f._x - fielderRadius); var fR = (f._x + fielderRadius); var fT = (f._y - fielderRadius); var fB = (f._y + fielderRadius); var dx = (x - f._x); var dy = (y - f._y); var dist = Math.sqrt((dx * dx) + (dy * dy)); var minDist = (fielderRadius + this.ballRadius); if ((dist < 150) && (i != -1)) { var angle = ((180 * Math.atan2(dy, dx)) / Math.PI); var r = f._rotation; if (Math.abs(angle - r) > 180) { if (angle < 0) { angle = 360 + angle; } else { r = 360 + r; } } f._rotation = f._rotation + (0.1 * (angle - r)); f.setShadow(); } if ((!this.caughtOut) && (dist < minDist)) { var pt = {x:24, y:0}; f.localToGlobal(pt); this.mc.pitch.globalToLocal(pt); this.xCatchingFielder = pt.x; this.yCatchingFielder = pt.y; this.xStep = 0.4; this.yStep = 0.4; this.caughtOut = true; this.wickets++; this.numOuts++; this.updateScoreboard(); this.caughtAudio.start(); if (this.innings == "field") { this.outMessageShowing = true; this.mc.message.gotoAndStop("out"); } } i++; } }; Game.prototype.finishBall = function () { if (this.caughtOut && (this.innings == "bat")) { if (this.counter == 0) { this.mc.cutMask.showMovie("caught"); } else if (this.counter == 10) { this.mc.pitch._x = this.mc.pitch._x + (30 * this.xStep); this.mc.pitch._y = this.mc.pitch._y + (30 * this.yStep); this.counter = 29; } } else { this.mc.pitch._x = this.mc.pitch._x + this.xStep; this.mc.pitch._y = this.mc.pitch._y + this.yStep; } if ((this.counter++) == 30) { this.ballNum++; if (this.ballNum == 7) { this.overs++; this.ballNum = 1; } if ((this.overs > this.maxOvers) || (this.wickets == this.teamSize)) { if ((++this.inningsNum) > 2) { this.endGame(); } else { this.setNextInnings(); } } else if (this.innings == "bat") { this.state = 3; } else { this.state = 1; } this.mc.pitch._x = this.pitch.x0; this.mc.pitch._y = this.pitch.y0; this.updateScoreboard(); } }; Game.prototype.endGame = function () { if (this.innings == "bat") { _global.teamScore = this.total; _global.teamWickets = this.wickets; _global.userSixes = this.numSixes; _global.userFours = this.numFours; var sr = (this.total / this.numBalls); var br = (this.total / this.numOuts); _global.strikeRate = Math.round(sr * 10) / 10; _global.battingRate = Math.round(br * 10) / 10; } else { _global.opponentScore = this.total; _global.opponentWickets = this.wickets; } this.mc.message.gotoAndStop("gameOver"); this.state = -1; }; Game.prototype.setNextInnings = function () { this.inningsAudio.start(); this.mc.message.gotoAndStop("nextInnings"); if (this.innings == "bat") { _global.teamScore = this.total; _global.teamWickets = this.wickets; _global.userSixes = this.numSixes; _global.userFours = this.numFours; var sr = (this.total / this.numBalls); var br = (this.total / this.numOuts); _global.strikeRate = Math.round(sr * 10) / 10; _global.battingRate = Math.round(br * 10) / 10; this.innings = "field"; } else { _global.opponentScore = this.total; _global.opponentWickets = this.wickets; this.innings = "bat"; } this.previousAngle = null; this.state = 0; }; Game.prototype.randomiseFielderPositions = function () { var seed; var temp; var pos; var sixAreasOrder; var i = 0; while (i < this.fielderPositions.length) { var j = 0; while (j < this.fielderPositions[i].length) { var k = 0; while (k < this.fielderPositions[i][j].length) { seed = k + random(this.fielderPositions[i][j].length - k); temp = this.fielderPositions[i][j][seed]; this.fielderPositions[i][j][seed] = this.fielderPositions[i][j][k]; this.fielderPositions[i][j][k] = temp; k++; } j++; } i++; } sixAreasOrder = [0, 1, 2, 3]; var i = 0; while (i < sixAreasOrder.length) { seed = i + random(sixAreasOrder.length - i); temp = sixAreasOrder[seed]; sixAreasOrder[seed] = sixAreasOrder[i]; sixAreasOrder[i] = temp; i++; } seed = random(this.fielderPositions[0][sixAreasOrder[0]].length); pos = this.fielderPositions[0][sixAreasOrder[0]][seed]; this.fielders[0]._x = pos[0]; this.fielders[0]._y = pos[1]; seed = random(this.fielderPositions[0][sixAreasOrder[1]].length); pos = this.fielderPositions[0][sixAreasOrder[1]][seed]; this.fielders[1]._x = pos[0]; this.fielders[1]._y = pos[1]; seed = random(this.fielderPositions[0][sixAreasOrder[2]].length); pos = this.fielderPositions[0][sixAreasOrder[2]][seed]; this.fielders[2]._x = pos[0]; this.fielders[2]._y = pos[1]; seed = random(this.fielderPositions[1][sixAreasOrder[0]].length); pos = this.fielderPositions[1][sixAreasOrder[0]][seed]; this.fielders[3]._x = pos[0]; this.fielders[3]._y = pos[1]; seed = random(this.fielderPositions[1][sixAreasOrder[1]].length); pos = this.fielderPositions[1][sixAreasOrder[1]][seed]; this.fielders[4]._x = pos[0]; this.fielders[4]._y = pos[1]; seed = random(this.fielderPositions[1][sixAreasOrder[3]].length); pos = this.fielderPositions[1][sixAreasOrder[3]][seed]; this.fielders[5]._x = pos[0]; this.fielders[5]._y = pos[1]; seed = random(this.fielderPositions[2][0].length); pos = this.fielderPositions[2][0][seed]; this.fielders[6]._x = pos[0]; this.fielders[6]._y = pos[1]; seed = random(this.fielderPositions[2][1].length); pos = this.fielderPositions[2][1][seed]; this.fielders[7]._x = pos[0]; this.fielders[7]._y = pos[1]; seed = random(this.fielderPositions[2][2].length); pos = this.fielderPositions[2][2][seed]; this.fielders[8]._x = pos[0]; this.fielders[8]._y = pos[1]; seed = random(this.fielderPositions[3][0].length); pos = this.fielderPositions[3][0][seed]; this.fielders[9]._x = pos[0]; this.fielders[9]._y = pos[1]; var i = 0; while (i < this.fielders.length) { this.fielders[i].faceTarget(); i++; } }; Game.prototype.updateScoreboard = function () { var t = this.total; if (this.total < 10) { t = "0" + t; } if (this.total < 100) { t = "0" + t; } var w = this.wickets; if (this.wickets < 10) { w = "0" + w; } var o = (this.overs - 1); if (o < 10) { o = "0" + o; } o = o + ("." + (this.ballNum - 1)); var li = this.lastInnings; if (this.lastInnings < 10) { li = "0" + li; } if (this.lastInnings < 100) { li = "0" + li; } this.mc.scoreboard.total.text = t; this.mc.scoreboard.wickets.text = w; this.mc.scoreboard.overs.text = o; this.mc.scoreboard.lastInnings.text = li; }; Game.prototype.updateSmallPitch = function (mc) { if (mc != undefined) { var marker = this.mc.scoreboard.pitch[mc._name]; marker._x = 0.66 * mc._x; marker._y = 0.66 * mc._y; marker._rotation = mc._rotation; marker._visible = mc._visible; } else { for (var i in this.mc.pitch) { var marker = this.mc.scoreboard.pitch[this.mc.pitch[i]._name]; marker._x = 0.66 * this.mc.pitch[i]._x; marker._y = 0.66 * this.mc.pitch[i]._y; marker._rotation = this.mc.pitch[i]._rotation; marker._visible = this.mc.pitch[i]._visible; } } }; Game.prototype.zoomTo = function (scale) { this.mc.pitch.goalScale = scale; this.mc.pitch.onEnterFrame = function () { this._xscale = this._xscale + (0.2 * (this.goalScale - this._xscale)); this._yscale = this._yscale + (0.2 * (this.goalScale - this._yscale)); if (Math.abs(this._xscale - this.goalScale) < 0.3) { this._xscale = (this._yscale = this.goalScale); delete this.onEnterFrame; } }; }; Game.prototype.killEventLoop = function () { delete this.mc.onEnterFrame; this.state = 0; }; _global.game = new Game();
Symbol 6 MovieClip Frame 1
_visible = false;
Symbol 24 MovieClip Frame 1
stop();
Symbol 25 MovieClip Frame 1
stop();
Symbol 27 MovieClip [batsman] Frame 1
#initclip 3 Batsman = function () { this.maxAngle = 120; this.maxRadius = 180; this.minAngle = -this.maxAngle; this.minSpeed = 0.1; this.numFramesToBat = 5; this.angle; this.speed; this.counter; this.state; }; Batsman.prototype = new MovieClip(); Batsman.prototype.init = function (startState) { this.state = startState; this.angle = 0; this.speed = 0; this.counter = 0; this.radar._visible = false; this.marker._visible = true; this.markerMask._rotation = 180; this.batsmanGraphic._rotation = 0; this.marker._xscale = (this.marker._yscale = 1); this.onEnterFrame = this.update; }; Batsman.prototype.update = function () { switch (this.state) { case -1 : this.killEventLoop(); return; case 0 : return; case 1 : this.initUserInteraction(); return; case 2 : this.handleUserInteraction(); return; case 3 : this.initBat(); return; case 4 : this.initAutoBat(); return; case 5 : this.doBat(); } }; Batsman.prototype.initUserInteraction = function () { var callback = this; this.hotSpot.onPress = function () { callback.state = 2; }; this.hotSpot.onRelease = function () { callback.state = 3; }; this.hotSpot.onReleaseOutside = function () { callback.state = 3; }; }; Batsman.prototype.handleUserInteraction = function () { this.radar._visible = true; var x = this._xmouse; var y = this._ymouse; var radius = Math.sqrt((x * x) + (y * y)); radius = Math.min(radius, this.maxRadius); var degAngle = ((180 * Math.atan2(y, x)) / Math.PI); degAngle = Math.min(degAngle, this.maxAngle); degAngle = Math.max(degAngle, this.minAngle); this.markerMask._rotation = degAngle + 180; this.batsmanGraphic._rotation = degAngle; this.marker._width = this.marker._width + (0.3 * ((2 * radius) - this.marker._width)); this.marker._height = this.marker._width; this.angle = degAngle / this.maxAngle; this.speed = radius / this.maxRadius; this.speed = Math.max(this.minSpeed, this.speed); }; Batsman.prototype.initBat = function () { this.radar._visible = false; if (_global.game.state == 0) { this.init(1); } else { delete this.hotSpot.onPress; delete this.hotSpot.onRelease; delete this.hotSpot.onReleaseOutside; this.counter = 0; this.state = 5; } this.batsmanGraphic.ani.play(); }; Batsman.prototype.doBat = function () { var angle = (0.3 * this.batsmanGraphic._rotation); this.markerMask._rotation = angle + 180; this.batsmanGraphic._rotation = angle; var tween = (0.5 * this.marker._width); this.marker._width = (this.marker._height = tween); if (tween < 1) { this.markerMask._rotation = 180; this.batsmanGraphic._rotation = 0; delete this.onEnterFrame; } if ((++this.counter) == this.numFramesToBat) { this.checkHit(); } }; Batsman.prototype.initAutoBat = function () { if (random(100) < 10) { this.angle = Math.random(); this.speed = (0.7 * Math.random()) + 0.3; } else { var badAngles = [[-3, 9]]; if (_global.game.previousAngle != null) { badAngles.push([_global.game.previousAngle, _global.game.previousAngle]); } var i = 0; while (i < _global.game.fielders.length) { var fielderRadius = 27; var x = (_global.game.fielders[i]._x - this._x); var y = (_global.game.fielders[i]._y - this._y); var dist = Math.sqrt((x * x) + (y * y)); var rad = Math.atan2(-y, -x); var spread = Math.atan(fielderRadius / dist); var rMin = int((180 * (rad - spread)) / Math.PI); var rMax = int((180 * (rad + spread)) / Math.PI); badAngles.push([rMin, rMax]); i++; } var goodAngles = []; var i = this.minAngle; while (i <= this.maxAngle) { var isGood = true; var j = 0; while (j < badAngles.length) { if ((i >= badAngles[j][0]) && (i <= badAngles[j][1])) { isGood = false; break; } j++; } if (isGood) { goodAngles.push(i); } i++; } if (goodAngles.length == 0) { this.angle = Math.random(); this.speed = (0.7 * Math.random()) + 0.3; } else { var gaps = []; var prev = (goodAngles[0] - 1); var currGap = []; var i = 0; while (i < goodAngles.length) { if (goodAngles[i] == (prev + 1)) { currGap.push(goodAngles[i]); } else { gaps.push(currGap); currGap = []; } prev = goodAngles[i]; i++; } if (currGap.length > 0) { gaps.push(currGap); } var bigGapRef; var bigGapSize = 0; var i = 0; while (i < gaps.length) { if (gaps[i].length > bigGapSize) { bigGapSize = gaps[i].length; bigGapRef = i; } i++; } var midPosition = Math.round(gaps[bigGapRef].length / 2); var midAngle = gaps[bigGapRef][midPosition]; this.angle = midAngle / this.maxAngle; this.speed = 1; } } this.batsmanGraphic._rotation = this.minAngle + (this.angle * (this.maxAngle - this.minAngle)); this.marker._visible = false; this.marker._width = (this.marker._height = this.speed * this.maxRadius); this.counter = 0; this.state = 0; this.batsmanGraphic.ani.play(); }; Batsman.prototype.checkHit = function () { _global.game.checkHit(this.speed, this.angle, this.maxAngle); }; Batsman.prototype.killEventLoop = function () { delete this.onEnterFrame; this.state = 0; }; Object.registerClass("batsman", batsman); #endinitclip
Symbol 36 MovieClip Frame 1
stop();
Symbol 41 MovieClip [bowler] Frame 1
#initclip 1 Bowler = function () { this.maxRadius = 140; this.maxAngle = 25; this.minAngle = -25; this.minSpeed = 0.1; this.numFramesToBowl = 6; this.bowlStep; this.angle; this.speed; this.counter; this.state; this.bowlerGraphic.ball._y = 17; this.marker._xscale = (this.marker._yscale = 1); }; Bowler.prototype = new MovieClip(); Bowler.prototype.init = function (startState) { this.state = startState; this.angle = 0; this.speed = 0; this.counter = 0; this.markerMask._rotation = 180; this.batsmanGraphic._rotation = 0; this.bowlerGraphic.ball._x = 0; this.bowlerGraphic.ball._y = 17; this.marker._xscale = (this.marker._yscale = 10); this.onEnterFrame = this.update; }; Bowler.prototype.update = function () { switch (this.state) { case -1 : this.killEventLoop(); return; case 0 : return; case 1 : this.initUserInteraction(); return; case 2 : this.handleUserInteraction(); return; case 3 : this.initBowl(); return; case 4 : this.initAutoBowl(); return; case 5 : this.doBowl(); return; case 6 : this.autoBowl(); } }; Bowler.prototype.initUserInteraction = function () { this.bowlerGraphic.ball._visible = true; this.marker._visible = true; var callback = this; this.hotSpot.onPress = function () { callback.state = 2; }; this.hotSpot.onRelease = function () { callback.state = 3; }; this.hotSpot.onReleaseOutside = function () { callback.state = 3; }; }; Bowler.prototype.handleUserInteraction = function () { var x = this._xmouse; var y = this._ymouse; var radius = Math.sqrt((x * x) + (y * y)); radius = Math.min(radius, this.maxRadius); this.markerMask._rotation = 0; var angle = ((180 * Math.atan2(-y, -x)) / Math.PI); angle = Math.min(angle, this.maxAngle); angle = Math.max(angle, this.minAngle); this.markerMask._rotation = angle; this.bowlerGraphic._rotation = angle; this.bowlerGraphic.ball._y = 0; this.marker._width = this.marker._width + (0.3 * ((2 * radius) - this.marker._width)); this.marker._height = this.marker._width; this.bowlerGraphic.ball._x = -0.5 * this.marker._height; this.angle = (-angle) / this.maxAngle; this.speed = radius / this.maxRadius; this.speed = Math.max(this.minSpeed, this.speed); }; Bowler.prototype.initBowl = function () { delete this.hotSpot.onPress; delete this.hotSpot.onRelease; delete this.hotSpot.onReleaseOutside; this.counter = 0; this.bowlStep = (-this.bowlerGraphic.ball._x) / this.numFramesToBowl; this.state = 5; this.bowlerGraphic.ani.play(); }; Bowler.prototype.doBowl = function () { var angle = (0.3 * this.bowlerGraphic._rotation); this.markerMask._rotation = angle; this.bowlerGraphic._rotation = angle; var tween = (0.5 * this.marker._width); this.marker._width = (this.marker._height = tween); this.bowlerGraphic.ball._x = this.bowlerGraphic.ball._x + this.bowlStep; if ((++this.counter) == this.numFramesToBowl) { this.launchBall(); } if ((tween < 1) && (this.counter >= this.numFramesToBowl)) { this.markerMask._rotation = 180; this.bowlerGraphic._rotation = 0; delete this.onEnterFrame; } }; Bowler.prototype.initAutoBowl = function () { this.bowlerGraphic.ball._visible = true; this.angle = 0.5 + (0.5 * Math.random()); this.speed = (0.7 * Math.random()) + 0.3; this.marker._visible = false; this.marker._width = (this.marker._height = this.speed * this.maxRadius); this.counter = 0; this.bowlStep = 0; this.state = 6; this.bowlerGraphic.ani.play(); }; Bowler.prototype.launchBall = function () { this.bowlerGraphic.ball._visible = false; _global.game.state = 7; }; Bowler.prototype.autoBowl = function () { var r = this.bowlerGraphic._rotation; var rGoal = (this.minAngle + (this.angle * (this.maxAngle - this.minAngle))); var angle = (r + (0.08 * (rGoal - r))); this.markerMask._rotation = angle; this.bowlerGraphic._rotation = angle; if (Math.abs(rGoal - r) < 0.1) { this.state = 5; } }; Bowler.prototype.killEventLoop = function () { delete this.onEnterFrame; this.state = 0; }; Object.registerClass("Bowler", Bowler); #endinitclip
Symbol 46 MovieClip [teamButton] Frame 10
stop();
Symbol 50 MovieClip [fielder] Frame 1
#initclip 2 Fielder = function () { this.xTarget = 100; this.yTarget = 0; this.innerRing; this.outerRing; this.state; }; Fielder.prototype = new MovieClip(); Fielder.prototype.init = function (startState) { this.state = startState; this.faceTarget(); this.onEnterFrame = this.update; }; Fielder.prototype.update = function () { switch (this.state) { case -1 : this.killEventLoop(); return; case 0 : return; case 1 : this.initUserInteraction(); return; case 2 : this.handleUserInteraction(); return; case 3 : this.disableUserInteraction(); } }; Fielder.prototype.initUserInteraction = function () { this.onPress = function () { this.state = 2; }; this.onRelease = function () { this.state = 0; }; this.onReleaseOutside = function () { this.state = 0; }; }; Fielder.prototype.handleUserInteraction = function () { var xNew = this._parent._xmouse; var yNew = this._parent._ymouse; if (this.checkCollision(xNew, yNew)) { this._x = xNew; this._y = yNew; this.faceTarget(); } }; Fielder.prototype.checkCollision = function (x, y) { var innerRingOK = true; var outerRingOK = true; var overlapping = false; if (this.innerRing != undefined) { innerRingOK = !this.innerRing.pointInEllipse(x, y); } if (this.outerRing != undefined) { outerRingOK = this.outerRing.pointInEllipse(x, y); } for (var i in this._parent) { var f = this._parent[i]; if ((f instanceof Fielder) && (f != this)) { var dx = (f._x - x); var dy = (f._y - y); if (((dx * dx) + (dy * dy)) < 2500) { overlapping = true; break; } } } return((innerRingOK && (outerRingOK)) && (!overlapping)); }; Fielder.prototype.disableUserInteraction = function () { delete this.onPress; delete this.onRelease; delete this.onReleaseOutside; }; Fielder.prototype.faceTarget = function () { var dx = (this.xTarget - this._x); var dy = (this.yTarget - this._y); var angle = ((180 * Math.atan2(dy, dx)) / Math.PI); this._rotation = angle; this.setShadow(); }; Fielder.prototype.setShadow = function () { var angle = ((Math.PI * this._rotation) / 180); var shadowAngle = 5.49778714378214; var xShadow = (5 * Math.sin(angle + shadowAngle)); var yShadow = (5 * Math.cos(angle + shadowAngle)); this.shadow._x = xShadow; this.shadow._y = yShadow; }; Fielder.prototype.killEventLoop = function () { delete this.onEnterFrame; this.state = 0; }; Object.registerClass("Fielder", Fielder); #endinitclip
Symbol 65 MovieClip Frame 99
stop();
Symbol 88 MovieClip Frame 1
init = function () { stop(); this.postLoadPause = 1000; this.postLoadTimer; this.onEnterFrame = updatePreloader; }; updatePreloader = function () { var bl = this._parent.getBytesLoaded(); var bt = this._parent.getBytesTotal(); var cf = this._currentframe; var pcLoaded = Math.floor((100 * bl) / bt); if (pcLoaded < 10) { pcLoaded = "0" + pcLoaded; } this.loadingBoard.percent.text = pcLoaded; if (pcLoaded == 100) { this.loadingBoard.percent.text = "99"; this.gotoAndPlay(2); delete this.onEnterFrame; } }; init();
Symbol 88 MovieClip Frame 32
stop(); this._parent.gotoAndStop("intro");
Symbol 105 MovieClip Frame 1
stop();
Symbol 106 MovieClip Frame 64
stop();
Symbol 114 MovieClip Frame 1
stop();
Symbol 119 MovieClip Frame 1
stop();
Symbol 124 MovieClip Frame 1
stop();
Symbol 127 MovieClip Frame 1
stop();
Symbol 128 MovieClip Frame 1
init = function () { var getTeamURL = (_root.basepath + "_xml/GetTeamXML.php.xml"); var callback = this; dataHandler = new XML(); dataHandler.ignoreWhite = true; dataHandler.onLoad = function (success) { if (success) { callback.parseTeamData(this); } delete this; }; dataHandler.load(getTeamURL); }; parseTeamData = function (teamData) { var team = new XML(unescape(teamData)); var team = team.childNodes[0].childNodes[0].childNodes[0]; _global.teamData = []; while (team != null) { var tName = team.attributes.name.toUpperCase(); var tColour = team.attributes.colour.toUpperCase(); var tID = team.attributes.id; _global.teamData.push({name:tName, colour:tColour, id:tID}); team = team.nextSibling; } }; init(); if (_parent.introViewed) { gotoAndStop ("end"); }
Symbol 128 MovieClip Frame 44
rocker.player.gotoAndStop("blue");
Instance of Symbol 124 MovieClip in Symbol 128 MovieClip Frame 65
on (release) { getURL ("http://www.miniclip.com/signup2.htm", "_blank"); }
Instance of Symbol 127 MovieClip in Symbol 128 MovieClip Frame 77
on (release) { getURL ("http://www.miniclip.com/Homepage.htm", "_blank"); }
Symbol 128 MovieClip Frame 85
init = function () { stop(); var root = this._parent; playButton.onRollOver = function () { _global.buttonOverSFX.start(); }; playButton.onPress = function () { _global.buttonDownSFX.start(); }; playButton.onRelease = function () { root.gotoAndStop("team"); }; instructionsButton.onRollOver = function () { _global.buttonOverSFX.start(); }; instructionsButton.onPress = function () { _global.buttonDownSFX.start(); }; instructionsButton.onRelease = function () { root.gotoAndStop("instructions"); }; leaderboardButton.onRollOver = function () { _global.buttonOverSFX.start(); }; leaderboardButton.onPress = function () { _global.buttonDownSFX.start(); }; leaderboardButton.onRelease = function () { root.gotoAndStop("leaderboard"); }; tellFriendButton.onRollOver = function () { _global.buttonOverSFX.start(); }; tellFriendButton.onPress = function () { _global.buttonDownSFX.start(); }; tellFriendButton.onRelease = function () { root.gotoAndStop("fgf"); }; bonusButton.onRollOver = function () { _global.buttonOverSFX.start(); }; bonusButton.onPress = function () { _global.buttonDownSFX.start(); }; bonusButton.onRelease = function () { root.bonusPanel.show(); }; }; init(); if (_parent.introViewed) { rocker.player.gotoAndStop("blue"); rocker._xscale = (rocker._yscale = 4); rocker._y = 174.9; rocker.currStep = 0; rocker.scales = [3.9, 27.9, 51.9, 76, 100, 103.2, 106.5, 104.3, 102.2, 100]; rocker.yVals = [174.9, 139.75, 104.65, 69.5, 33.9, 29.15, 24.4, 27.55, 30.7, 33.9]; rocker.onEnterFrame = function () { this._xscale = (this._yscale = this.scales[this.currStep]); this._y = this.yVals[this.currStep]; if ((++this.currStep) == this.scales.length) { delete this.onEnterFrame; } }; } else { _parent.introViewed = true; }
Symbol 145 MovieClip Frame 1
hide = function () { if (this._parent.gameMC != undefined) { this._parent.gameMC.state = gameState; this._parent.gameMC.pitch.bowler.state = bowlerState; this._parent.gameMC.pitch.batsman.state = batsmanState; } disableScrollbar(); this.gotoAndStop("hidden"); }; show = function () { this.gotoAndStop("showing"); backButton.onRelease = function () { hide(); }; dummyButton.onRelease = function () { }; dummyButton.useHandCursor = false; gameState = this._parent.gameMC.state; bowlerState = this._parent.gameMC.pitch.bowler.state; batsmanState = this._parent.gameMC.pitch.batsman.state; initScrollbar(); }; initScrollbar = function () { var yMinHandle = -105.2; var yMaxHandle = 83.4; var yMinContent = -106.9; var yMaxContent = -338.3; handle.onPress = function () { this.startDrag(false, this._x, yMinHandle, this._x, yMaxHandle); }; handle.onRelease = (handle.onReleaseOutside = function () { this.stopDrag(); }); handle.useHandCursor = false; this.onEnterFrame = function () { var norm = ((handle._y - yMinHandle) / (yMaxHandle - yMinHandle)); content._y = yMinContent + (norm * (yMaxContent - yMinContent)); }; }; disableScrollbar = function () { delete this.onEnterFrame; handle.enabled = false; }; gameState = 0; bowlerState = 0; batsmanState = 0; this.gotoAndStop("hidden");
Symbol 151 MovieClip Frame 1
marker._visible = false;
Symbol 152 MovieClip Frame 1
marker._visible = false;
Symbol 189 MovieClip Frame 1
stop();
Symbol 192 MovieClip Frame 1
stop();
Symbol 198 MovieClip Frame 1
initBowlerAnimation = function () { rotationStep = 1; scaleStep = 5; counter = 0; markerBowler._xscale = 5; markerBowler._yscale = 5; bowlerGraphic.ball._y = 0; markerBatsman._xscale = 5; markerBatsman._yscale = 5; batsmanGraphic._rotation = 0; markerMaskBatsman._rotation = 180; this.onEnterFrame = animateBowler; }; animateBowler = function () { markerMaskBowler._rotation = markerMaskBowler._rotation + (rotationStep >> 2); bowlerGraphic._rotation = bowlerGraphic._rotation + (rotationStep >> 2); markerBowler._xscale = markerBowler._xscale + scaleStep; markerBowler._yscale = markerBowler._yscale + scaleStep; bowlerGraphic.ball._x = (-markerBowler._width) / 2; var pt = {x:0, y:0}; bowlerGraphic.ball.localToGlobal(pt); this.globalToLocal(pt); cursor._x = pt.x; cursor._y = pt.y; if (counter == 40) { rotationStep = -2 * rotationStep; scaleStep = -scaleStep; } if ((++counter) == 90) { initCursorToBatsman(); } }; initCursorToBatsman = function () { var goalX = batsmanGraphic._x; var goalY = batsmanGraphic._y; stepX = (goalX - cursor._x) / 30; stepY = (goalY - cursor._y) / 30; counter = 0; this.onEnterFrame = moveCursorToBatsman; }; moveCursorToBatsman = function () { cursor._x = cursor._x + stepX; cursor._y = cursor._y + stepY; if ((++counter) == 30) { initBatsmanAnimation(); } }; initBatsmanAnimation = function () { rotationStep = -1; scaleStep = 5; counter = 0; markerBatsman._xscale = 5; markerBatsman._yscale = 5; markerBowler._xscale = 5; markerBowler._yscale = 5; bowlerGraphic._rotation = 0; markerMaskBowler._rotation = 0; radar._visible = true; this.onEnterFrame = animateBatsman; }; animateBatsman = function () { markerMaskBatsman._rotation = markerMaskBatsman._rotation + rotationStep; markerBatsman._xscale = markerBatsman._xscale + scaleStep; markerBatsman._yscale = markerBatsman._yscale + scaleStep; batsmanGraphic._rotation = batsmanGraphic._rotation + rotationStep; var cursorX = (markerBatsman._width / 2); var pt = {x:cursorX, y:0}; batsmanGraphic.localToGlobal(pt); this.globalToLocal(pt); cursor._x = pt.x; cursor._y = pt.y; if (counter == 40) { rotationStep = -2 * rotationStep; scaleStep = -scaleStep; } if ((++counter) == 90) { initCursorToBowler(); } }; initCursorToBowler = function () { radar._visible = false; var goalX = bowlerGraphic._x; var goalY = bowlerGraphic._y; stepX = (goalX - cursor._x) / 30; stepY = (goalY - cursor._y) / 30; counter = 0; this.onEnterFrame = moveCursorToBowler; }; moveCursorToBowler = function () { cursor._x = cursor._x + stepX; cursor._y = cursor._y + stepY; if ((++counter) == 30) { initBowlerAnimation(); } }; initBowlerAnimation();
Instance of Symbol 124 MovieClip in Symbol 205 MovieClip Frame 1
on (release) { getURL ("http://www.miniclip.com/signup2.htm", "_blank"); }
Instance of Symbol 127 MovieClip in Symbol 205 MovieClip Frame 1
on (release) { getURL ("http://www.miniclip.com/Homepage.htm", "_blank"); }
Symbol 205 MovieClip Frame 38
stop(); backButton.onRollOver = function () { _global.buttonOverSFX.start(); }; backButton.onPress = function () { _global.buttonDownSFX.start(); }; backButton.onRelease = function () { gotoAndPlay ("out"); }; nextButton.onRollOver = function () { _global.buttonOverSFX.start(); }; nextButton.onPress = function () { _global.buttonDownSFX.start(); }; nextButton.onRelease = function () { nextFrame(); };
Instance of Symbol 124 MovieClip in Symbol 205 MovieClip Frame 71
on (release) { getURL ("http://www.miniclip.com/cricket.htm", "_blank"); }
Instance of Symbol 127 MovieClip in Symbol 205 MovieClip Frame 83
on (release) { getURL ("http://www.miniclip.com/Homepage.htm", "_blank"); }
Symbol 205 MovieClip Frame 87
_parent.gotoAndStop("INTRO");
Symbol 207 Button
on (release) { gotoAndPlay ("instructions"); }
Symbol 210 MovieClip Frame 1
stop();
Symbol 212 MovieClip Frame 80
stop();
Symbol 220 MovieClip Frame 1
stop();
Symbol 221 MovieClip Frame 1
init = function () { userTeamSet = false; var root = this._parent; bonusButton.onRollOver = function () { _global.buttonOverSFX.start(); }; bonusButton.onPress = function () { _global.buttonDownSFX.start(); }; bonusButton.onRelease = function () { root.bonusPanel.show(); }; }; parseTeamData = function (teamData, callback) { var team = new XML(unescape(teamData)); var team = team.childNodes[0].childNodes[0].childNodes[0]; _global.teamData = []; while (team != null) { var tName = team.attributes.name.toUpperCase(); var tColour = team.attributes.colour.toUpperCase(); var tID = team.attributes.id; _global.teamData.push({name:tName, colour:tColour, id:tID}); team = team.nextSibling; } callback.play(); }; layoutTeamButton = function (team, num) { if (team == undefined) { return(undefined); } var y0 = 28; var yStep = 40; var x = (((num % 2) == 0) ? -110 : 34); var y = (y0 + (yStep * int(num / 2))); var mc = this.attachMovie("teamButton", "team" + num, num, {_x:x, _y:y}); mc.labelMC.label.text = _global.teamData[num].name; mc.colour = _global.teamData[num].colour; mc.id = _global.teamData[num].id; mc.onRollOver = function () { _global.buttonOverSFX.start(); this.labelMC.label.textColor = 16763904 /* 0xFFCC00 */; }; mc.onRollOut = function () { this.labelMC.label.textColor = 16737792 /* 0xFF6600 */; }; mc.onDragOut = mc.onRollOut; mc.onPress = function () { _global.buttonDownSFX.start(); }; mc.onRelease = function () { pickTeam(this); }; }; pickTeam = function (btn) { if (userTeamSet) { _global.opponent = btn.labelMC.label.text; _global.opponentColour = btn.colour; _global.opponentID = btn.id; setupMatch(); } else { _global.team = btn.labelMC.label.text; _global.teamColour = btn.colour; _global.teamID = btn.id; if (_global.teamData.length > 2) { teamText.gotoAndStop("opponent"); gotoAndStop ("opponentsTeam"); } else if (_global.teamData.length == 2) { var i = 0; while (i < _global.teamData.length) { if (_global.teamData[i].name != btn.labelMC.label.text) { _global.opponent = _global.teamData[i].name; _global.opponentColour = _global.teamData[i].colour; _global.opponentID = _global.teamData[i].id; setupMatch(); break; } i++; } } } userTeamSet = true; btn.enabled = false; }; setupMatch = function () { for (var i in this) { if (typeof(this[i]) == "movieclip") { removeMovieClip(this[i]); } } if (_global.teamData.length == 2) { gotoAndPlay ("out"); } else { teamText.gotoAndStop("match"); gotoAndStop ("match"); userTeam.labelMC.label.text = _global.team; opponentsTeam.labelMC.label.text = _global.opponent; this.moveOnTimer = setInterval(this, "moveOn", 1400); } }; moveOn = function () { clearInterval(this.moveOnTimer); gotoAndPlay ("out"); }; init(); rockerL.player.gotoAndStop("blue"); if (_global.gameInited) { gotoAndPlay ("pickTeam"); }
Instance of Symbol 124 MovieClip in Symbol 221 MovieClip Frame 1
on (release) { getURL ("http://www.miniclip.com/signup2.htm", "_blank"); }
Instance of Symbol 127 MovieClip "bonusButton" in Symbol 221 MovieClip Frame 1
on (release) { getURL ("http://www.miniclip.com/Homepage.htm", "_blank"); }
Symbol 221 MovieClip Frame 13
rockerR.player.gotoAndStop("green");
Symbol 221 MovieClip Frame 15
layoutTeamButton(_global.teamData[0], 0);
Symbol 221 MovieClip Frame 17
layoutTeamButton(_global.teamData[1], 1);
Symbol 221 MovieClip Frame 19
layoutTeamButton(_global.teamData[2], 2);
Symbol 221 MovieClip Frame 21
layoutTeamButton(_global.teamData[3], 3);
Symbol 221 MovieClip Frame 23
if (_global.gameInited) { rockerR.player.gotoAndStop("green"); layoutTeamButton(_global.teamData[0], 0); layoutTeamButton(_global.teamData[1], 1); layoutTeamButton(_global.teamData[2], 2); layoutTeamButton(_global.teamData[3], 3); }
Symbol 221 MovieClip Frame 25
stop();
Symbol 221 MovieClip Frame 68
this._parent.gotoAndStop("toss");
Symbol 227 MovieClip Frame 1
stop();
Symbol 230 MovieClip Frame 1
stop();
Symbol 260 MovieClip Frame 1
stop();
Symbol 260 MovieClip Frame 2
stop();
Symbol 267 MovieClip Frame 1
stop();
Symbol 270 MovieClip Frame 1
stop();
Symbol 276 MovieClip Frame 14
init = function () { stop(); headsButton.onRollOver = function () { _global.buttonOverSFX.start(); }; headsButton.onPress = function () { _global.buttonDownSFX.start(); }; headsButton.onRelease = function () { doToss("heads"); }; tailsButton.onRollOver = function () { _global.buttonOverSFX.start(); }; tailsButton.onPress = function () { _global.buttonDownSFX.start(); }; tailsButton.onRelease = function () { doToss("tails"); }; }; doToss = function (userCall) { userChoice = userCall; if (System.capabilities.playerType == "External") { coinToss = userChoice; } else { coinToss = ((random(2) == 0) ? "heads" : "tails"); } play(); }; checkWin = function () { if (userChoice == coinToss) { gotoAndPlay ("batOrBowlUser"); } else { gotoAndPlay ("batOrBowlAuto"); var innings = ((random(2) == 0) ? "bat" : "field"); _global.innings = innings; this.moveOnTimer = setInterval(this, "moveOn", 3000); } }; setBatOrBowlButtons = function () { batButton.onRollOver = function () { _global.buttonOverSFX.start(); }; batButton.onPress = function () { _global.buttonDownSFX.start(); }; batButton.onRelease = function () { _global.innings = "bat"; gotoAndPlay ("out"); }; bowlButton.onRollOver = function () { _global.buttonOverSFX.start(); }; bowlButton.onPress = function () { _global.buttonDownSFX.start(); }; bowlButton.onRelease = function () { _global.innings = "field"; gotoAndPlay ("out"); }; }; moveOn = function () { clearInterval(this.moveOnTimer); gotoAndPlay ("out"); }; init();
Symbol 276 MovieClip Frame 50
hand.coin.gotoAndStop(((coinToss == "heads") ? 1 : 2));
Symbol 276 MovieClip Frame 76
checkWin();
Symbol 276 MovieClip Frame 96
stop(); setBatOrBowlButtons();
Symbol 276 MovieClip Frame 110
gotoAndPlay ("out");
Symbol 276 MovieClip Frame 116
var batBowl = ((_global.innings == "bat") ? "batting" : "bowling"); var opp = _global.opponent.substring(1).toLowerCase(); opp = _global.opponent.charAt(0).toUpperCase() + opp; tossText.txt.text = ((("Too bad. It looks like " + opp) + " wants you to be ") + batBowl) + " first.";
Symbol 276 MovieClip Frame 121
bowlingLabel._visible = _global.innings == "field"; battingLabel._visible = _global.innings == "bat";
Symbol 276 MovieClip Frame 130
stop();
Symbol 276 MovieClip Frame 163
grounds.bowler.ball._y = 17; var col = ((_global.innings == "bat") ? (_global.teamColour) : (_global.opponentColour)); grounds.batsman.ani.hat.gotoAndStop(col);
Symbol 276 MovieClip Frame 172
stop(); this._parent.gotoAndStop("game");
Symbol 283 MovieClip Frame 1
stop();
Symbol 306 MovieClip Frame 1
stop();
Symbol 309 MovieClip Frame 1
stop();
Symbol 309 MovieClip Frame 54
inningsOverTxt.text = "END OF INNINGS. CLICK NEXT TO START THE SECOND INNINGS"; var callback = _global.game; nextButton.onRollOver = function () { _global.buttonOverSFX.start(); }; nextButton.onPress = function () { _global.buttonDownSFX.start(); }; nextButton.onRelease = function () { if (callback.innings == "bat") { callback.state = 3; } else { callback.state = 1; } callback.overs = 1; callback.wickets = 0; callback.lastInnings = callback.total; callback.total = 0; callback.updateScoreboard(); }; var root = this._parent._parent; bonusButton.onRollOver = function () { _global.buttonOverSFX.start(); }; bonusButton.onPress = function () { _global.buttonDownSFX.start(); }; bonusButton.onRelease = function () { root.bonusPanel.show(); };
Symbol 309 MovieClip Frame 64
var winLose; if (_global.teamScore > _global.opponentScore) { _global.winLose = "won"; } else if (_global.teamScore < _global.opponentScore) { _global.winLose = "lost"; } else if (_global.opponentWickets > _global.teamWickets) { _global.winLose = "won"; } else if (_global.opponentWickets < _global.teamWickets) { _global.winLose = "lost"; } else { _global.winLose = "drew"; } gameOverTxt.text = ("GAME OVER - YOU " + _global.winLose.toUpperCase()) + "!\nCLICK NEXT TO CONTINUE."; nextButton.onRollOver = function () { _global.buttonOverSFX.start(); }; nextButton.onPress = function () { _global.buttonDownSFX.start(); }; nextButton.onRelease = function () { this._parent._parent._parent.gotoAndStop("leaderboard"); }; var root = this._parent._parent; bonusButton.onRollOver = function () { _global.buttonOverSFX.start(); }; bonusButton.onPress = function () { _global.buttonDownSFX.start(); }; bonusButton.onRelease = function () { root.bonusPanel.show(); };
Symbol 312 MovieClip Frame 1
stop();
Symbol 317 MovieClip Frame 1
stop();
Symbol 325 MovieClip Frame 1
stop(); gotoAndStop(_global.teamColour);
Symbol 330 MovieClip Frame 100
this._parent._parent.play(); this._parent._parent.mask.play(); stop();
Symbol 336 MovieClip Frame 78
this._parent._parent.play(); this._parent._parent.mask.play(); stop();
Symbol 344 MovieClip Frame 1
stop(); gotoAndStop(_global.teamColour);
Symbol 348 MovieClip Frame 80
this._parent._parent.play(); this._parent._parent.mask.play(); stop();
Symbol 364 MovieClip Frame 78
this._parent._parent.play(); this._parent._parent.mask.play(); stop();
Symbol 369 MovieClip Frame 78
this._parent._parent.play(); this._parent._parent.mask.play(); stop();
Symbol 370 MovieClip Frame 1
stop();
Symbol 371 MovieClip Frame 1
stop(); content.gotoAndStop("hidden"); showMovie = function (mov) { content.gotoAndStop(mov); mask.play(); play(); };
Symbol 371 MovieClip Frame 14
stop(); mask.stop();
Symbol 371 MovieClip Frame 27
gotoAndStop (1);
Symbol 380 MovieClip Frame 1
stop(); _global.game.init(this, _global.innings);
Symbol 385 MovieClip Frame 1
stop();
Symbol 389 MovieClip Frame 1
init = function () { stopAllSounds(); info_txt.text = ("Your score: " + _global.teamScore) + newline; info_txt.text = info_txt.text + (("Your wickets: " + _global.teamWickets) + newline); info_txt.text = info_txt.text + (("Their score: " + _global.opponentScore) + newline); info_txt.text = info_txt.text + (("Their wickets: " + _global.opponentWickets) + newline); info_txt.text = info_txt.text + (("You scored: " + _global.userSixes) + " sixes\n"); info_txt.text = info_txt.text + (("You scored: " + _global.userFours) + " fours\n"); info_txt.text = info_txt.text + (("Your strike rate was: " + _global.strikeRate) + newline); info_txt.text = info_txt.text + (("Your batting rate was: " + _global.battingRate) + newline); playAgainButton._visible = true; playAgainButton.onRollOver = function () { _global.buttonOverSFX.start(); }; playAgainButton.onPress = function () { _global.buttonDownSFX.start(); }; playAgainButton.onRelease = function () { this._parent._parent.gotoAndStop("intro"); }; }; init();

Library Items

Symbol 1 GraphicUsed by:2
Symbol 2 MovieClipUses:1Used by:27 41 151 152 198
Symbol 3 GraphicUsed by:4
Symbol 4 MovieClipUses:3Used by:27 41 151 152 198
Symbol 5 GraphicUsed by:6
Symbol 6 MovieClipUses:5Used by:27 198
Symbol 7 GraphicUsed by:8 28
Symbol 8 MovieClipUses:7Used by:27 152 198
Symbol 9 GraphicUsed by:10
Symbol 10 MovieClipUses:9Used by:27 39 41 183 198
Symbol 11 GraphicUsed by:25
Symbol 12 GraphicUsed by:13
Symbol 13 MovieClipUses:12Used by:25
Symbol 14 GraphicUsed by:15
Symbol 15 MovieClipUses:14Used by:25
Symbol 16 GraphicUsed by:17
Symbol 17 MovieClipUses:16Used by:25
Symbol 18 GraphicUsed by:19
Symbol 19 MovieClipUses:18Used by:25
Symbol 20 GraphicUsed by:24
Symbol 21 GraphicUsed by:24
Symbol 22 GraphicUsed by:24
Symbol 23 GraphicUsed by:24
Symbol 24 MovieClipUses:20 21 22 23Used by:25 50
Symbol 25 MovieClipUses:11 13 15 17 19 24Used by:26
Symbol 26 MovieClipUses:25Used by:27 152 183 198
Symbol 27 MovieClip [batsman]Uses:2 4 6 8 10 26Used by:286
Symbol 28 MovieClipUses:7Used by:41 151 198
Symbol 29 GraphicUsed by:36
Symbol 30 GraphicUsed by:31
Symbol 31 MovieClipUses:30Used by:36
Symbol 32 GraphicUsed by:33
Symbol 33 MovieClipUses:32Used by:36
Symbol 34 GraphicUsed by:35
Symbol 35 MovieClipUses:34Used by:36
Symbol 36 MovieClipUses:29 31 33 35Used by:40
Symbol 37 GraphicUsed by:38
Symbol 38 MovieClipUses:37Used by:39 86 88 128 205 221 276 336 364 369 380
Symbol 39 MovieClipUses:10 38Used by:40 153 286
Symbol 40 MovieClipUses:36 39Used by:41 151 183 198
Symbol 41 MovieClip [bowler]Uses:2 4 28 10 40Used by:286
Symbol 42 GraphicUsed by:46 135 189 192 210 267 270 385
Symbol 43 FontUsed by:44 79 83 84 111 116 122 125 133 136 140 187 188 190 191 195 199 200 201 208 213 214 215 216 217 218 219 231 232 262 263 265 268 271 272 382 383 387
Symbol 44 EditableTextUses:43Used by:45
Symbol 45 MovieClipUses:44Used by:46
Symbol 46 MovieClip [teamButton]Uses:42 45Used by:221
Symbol 47 GraphicUsed by:48
Symbol 48 MovieClipUses:47Used by:50
Symbol 49 GraphicUsed by:50
Symbol 50 MovieClip [fielder]Uses:48 49 24Used by:153 286
Symbol 51 GraphicUsed by:Timeline
Symbol 52 GraphicUsed by:65
Symbol 53 ShapeTweeningUsed by:65
Symbol 54 GraphicUsed by:65
Symbol 55 SoundUsed by:65
Symbol 56 GraphicUsed by:65
Symbol 57 BitmapUsed by:58
Symbol 58 GraphicUses:57Used by:65
Symbol 59 GraphicUsed by:65
Symbol 60 GraphicUsed by:65
Symbol 61 GraphicUsed by:65
Symbol 62 SoundUsed by:65
Symbol 63 FontUsed by:64
Symbol 64 TextUses:63Used by:65
Symbol 65 MovieClipUses:52 53 54 55 56 58 59 60 61 62 64Used by:Timeline
Symbol 66 GraphicUsed by:67
Symbol 67 MovieClipUses:66Used by:88 128 205 221 276 330 336 348 364 369
Symbol 68 GraphicUsed by:88 128 205 221 276 330 336 348 364 369
Symbol 69 GraphicUsed by:73
Symbol 70 FontUsed by:71 72 155 156 157 158 178 179 180 181
Symbol 71 TextUses:70Used by:73
Symbol 72 TextUses:70Used by:73
Symbol 73 MovieClipUses:69 71 72Used by:87
Symbol 74 FontUsed by:75 159 160 161 162
Symbol 75 EditableTextUses:74Used by:87
Symbol 76 GraphicUsed by:77
Symbol 77 MovieClipUses:76Used by:86 128 205 221 276 380
Symbol 78 GraphicUsed by:86
Symbol 79 TextUses:43Used by:80
Symbol 80 MovieClipUses:79Used by:86 128 205 221 276
Symbol 81 GraphicUsed by:86
Symbol 82 GraphicUsed by:85
Symbol 83 TextUses:43Used by:85
Symbol 84 TextUses:43Used by:85
Symbol 85 MovieClipUses:82 83 84Used by:86 109
Symbol 86 MovieClipUses:77 38 78 80 81 85Used by:87
Symbol 87 MovieClipUses:73 75 86Used by:88
Symbol 88 MovieClipUses:67 68 87 38Used by:Timeline
Symbol 89 GraphicUsed by:Timeline
Symbol 90 GraphicUsed by:91
Symbol 91 MovieClipUses:90Used by:128 205 221 276 330 336 348 364 369
Symbol 92 GraphicUsed by:93
Symbol 93 MovieClipUses:92Used by:128 205 221 276 330 348
Symbol 94 GraphicUsed by:95
Symbol 95 MovieClipUses:94Used by:96
Symbol 96 MovieClipUses:95Used by:128 205 221 276 330 348
Symbol 97 GraphicUsed by:98
Symbol 98 MovieClipUses:97Used by:128 205 221 276
Symbol 99 GraphicUsed by:100
Symbol 100 MovieClipUses:99Used by:106 212 345
Symbol 101 GraphicUsed by:105
Symbol 102 GraphicUsed by:105
Symbol 103 GraphicUsed by:105
Symbol 104 GraphicUsed by:105
Symbol 105 MovieClipUses:101 102 103 104Used by:106 212
Symbol 106 MovieClipUses:100 105Used by:128 221
Symbol 107 GraphicUsed by:108
Symbol 108 MovieClipUses:107Used by:109
Symbol 109 MovieClipUses:108 85Used by:128 205 221 276 380
Symbol 110 GraphicUsed by:114 206
Symbol 111 TextUses:43Used by:112 135 206
Symbol 112 MovieClipUses:111Used by:114 206
Symbol 113 GraphicUsed by:114
Symbol 114 MovieClipUses:110 112 113Used by:128 205
Symbol 115 GraphicUsed by:119 207 211
Symbol 116 TextUses:43Used by:117 207 211
Symbol 117 MovieClipUses:116Used by:119 207 211
Symbol 118 GraphicUsed by:119
Symbol 119 MovieClipUses:115 117 118Used by:128 205
Symbol 120 GraphicUsed by:121
Symbol 121 MovieClipUses:120Used by:124 127 145
Symbol 122 TextUses:43Used by:123
Symbol 123 MovieClipUses:122Used by:124
Symbol 124 MovieClipUses:121 123Used by:128 205 221
Symbol 125 TextUses:43Used by:126
Symbol 126 MovieClipUses:125Used by:127
Symbol 127 MovieClipUses:121 126Used by:128 205 221
Symbol 128 MovieClipUses:67 91 68 93 96 38 98 77 106 109 80 114 119 124 127Used by:Timeline
Symbol 129 GraphicUsed by:Timeline
Symbol 130 GraphicUsed by:131
Symbol 131 MovieClipUses:130Used by:145
Symbol 132 GraphicUsed by:145
Symbol 133 TextUses:43Used by:134
Symbol 134 MovieClipUses:133Used by:135
Symbol 135 ButtonUses:42 134 111Used by:145
Symbol 136 TextUses:43Used by:137
Symbol 137 MovieClipUses:136Used by:145
Symbol 138 GraphicUsed by:145 277
Symbol 139 FontUsed by:140
Symbol 140 EditableTextUses:43 139Used by:141
Symbol 141 MovieClipUses:140Used by:145
Symbol 142 GraphicUsed by:145
Symbol 143 GraphicUsed by:144
Symbol 144 MovieClipUses:143Used by:145
Symbol 145 MovieClipUses:131 132 135 121 137 138 141 142 144Used by:Timeline
Symbol 146 GraphicUsed by:163
Symbol 147 GraphicUsed by:163
Symbol 148 GraphicUsed by:153
Symbol 149 GraphicUsed by:150
Symbol 150 MovieClipUses:149Used by:153 169 198
Symbol 151 MovieClipUses:2 4 28 40Used by:153
Symbol 152 MovieClipUses:2 4 8 26Used by:153
Symbol 153 MovieClipUses:148 150 50 151 152 39Used by:163
Symbol 154 GraphicUsed by:163
Symbol 155 TextUses:70Used by:163
Symbol 156 TextUses:70Used by:163
Symbol 157 TextUses:70Used by:163
Symbol 158 TextUses:70Used by:163
Symbol 159 EditableTextUses:74Used by:163
Symbol 160 EditableTextUses:74Used by:163
Symbol 161 EditableTextUses:74Used by:163
Symbol 162 EditableTextUses:74Used by:163
Symbol 163 MovieClipUses:146 147 153 154 155 156 157 158 159 160 161 162Used by:205 276 380
Symbol 164 GraphicUsed by:169
Symbol 165 BitmapUsed by:166
Symbol 166 GraphicUses:165Used by:167
Symbol 167 MovieClipUses:166Used by:169
Symbol 168 GraphicUsed by:169
Symbol 169 MovieClipUses:164 167 168 150Used by:183 286
Symbol 170 GraphicUsed by:171
Symbol 171 MovieClipUses:170Used by:176 283
Symbol 172 GraphicUsed by:173
Symbol 173 MovieClipUses:172Used by:176 283
Symbol 174 GraphicUsed by:175
Symbol 175 MovieClipUses:174Used by:176 283 330 348
Symbol 176 MovieClipUses:171 173 175Used by:183 198
Symbol 177 GraphicUsed by:182
Symbol 178 TextUses:70Used by:182
Symbol 179 TextUses:70Used by:182
Symbol 180 TextUses:70Used by:182
Symbol 181 TextUses:70Used by:182
Symbol 182 MovieClipUses:177 178 179 180 181Used by:183 286
Symbol 183 MovieClipUses:169 176 10 40 26 182Used by:205 276
Symbol 184 ShapeTweeningUsed by:205
Symbol 185 ShapeTweeningUsed by:205
Symbol 186 GraphicUsed by:205 276
Symbol 187 TextUses:43Used by:189
Symbol 188 TextUses:43Used by:189
Symbol 189 MovieClipUses:42 187 188Used by:205
Symbol 190 TextUses:43Used by:192
Symbol 191 TextUses:43Used by:192
Symbol 192 MovieClipUses:42 190 191Used by:205
Symbol 193 GraphicUsed by:194
Symbol 194 MovieClipUses:193Used by:205
Symbol 195 TextUses:43Used by:205
Symbol 196 GraphicUsed by:197
Symbol 197 MovieClipUses:196Used by:198
Symbol 198 MovieClipUses:150 176 2 4 8 6 10 26 28 40 197Used by:205
Symbol 199 TextUses:43Used by:205
Symbol 200 TextUses:43Used by:205
Symbol 201 TextUses:43Used by:205
Symbol 202 ShapeTweeningUsed by:205
Symbol 203 ShapeTweeningUsed by:205
Symbol 204 GraphicUsed by:205
Symbol 205 MovieClipUses:67 68 91 93 96 98 77 38 80 109 114 119 124 127 163 183 184 185 186 189 192 194 195 198 199 200 201 202 203 204Used by:Timeline
Symbol 206 ButtonUses:110 112 111Used by:221
Symbol 207 ButtonUses:115 117 116Used by:221
Symbol 208 TextUses:43Used by:209
Symbol 209 MovieClipUses:208Used by:210
Symbol 210 MovieClipUses:42 209Used by:221
Symbol 211 ButtonUses:115 117 116Used by:221
Symbol 212 MovieClipUses:100 105Used by:221
Symbol 213 TextUses:43Used by:220
Symbol 214 TextUses:43Used by:220
Symbol 215 TextUses:43Used by:220
Symbol 216 TextUses:43Used by:220
Symbol 217 TextUses:43Used by:220
Symbol 218 TextUses:43Used by:220
Symbol 219 TextUses:43Used by:220
Symbol 220 MovieClipUses:213 214 215 216 217 218 219Used by:221
Symbol 221 MovieClipUses:67 68 91 93 96 98 77 38 80 109 206 207 210 124 127 106 211 212 220 46Used by:Timeline
Symbol 222 GraphicUsed by:225
Symbol 223 GraphicUsed by:224
Symbol 224 MovieClipUses:223Used by:225 255 258
Symbol 225 MovieClipUses:222 224Used by:227 276
Symbol 226 GraphicUsed by:227 230
Symbol 227 MovieClipUses:225 226Used by:276
Symbol 228 GraphicUsed by:229
Symbol 229 MovieClipUses:228Used by:230 276
Symbol 230 MovieClipUses:229 226Used by:276
Symbol 231 TextUses:43Used by:233
Symbol 232 TextUses:43Used by:233
Symbol 233 MovieClipUses:231 232Used by:276
Symbol 234 GraphicUsed by:255
Symbol 235 GraphicUsed by:255
Symbol 236 GraphicUsed by:255
Symbol 237 GraphicUsed by:255
Symbol 238 GraphicUsed by:255
Symbol 239 GraphicUsed by:240
Symbol 240 MovieClipUses:239Used by:255 259
Symbol 241 GraphicUsed by:255
Symbol 242 GraphicUsed by:255
Symbol 243 GraphicUsed by:255
Symbol 244 GraphicUsed by:255
Symbol 245 GraphicUsed by:255
Symbol 246 GraphicUsed by:255
Symbol 247 GraphicUsed by:255
Symbol 248 GraphicUsed by:255
Symbol 249 GraphicUsed by:255
Symbol 250 GraphicUsed by:255
Symbol 251 GraphicUsed by:255
Symbol 252 GraphicUsed by:255
Symbol 253 GraphicUsed by:255
Symbol 254 GraphicUsed by:255
Symbol 255 MovieClipUses:234 224 235 236 237 238 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254Used by:276
Symbol 256 GraphicUsed by:261
Symbol 257 GraphicUsed by:258 259
Symbol 258 MovieClipUses:257 224Used by:260
Symbol 259 MovieClipUses:257 240Used by:260
Symbol 260 MovieClipUses:258 259Used by:261
Symbol 261 MovieClipUses:256 260Used by:276
Symbol 262 TextUses:43Used by:264
Symbol 263 TextUses:43Used by:264
Symbol 264 MovieClipUses:262 263Used by:276
Symbol 265 TextUses:43Used by:266
Symbol 266 MovieClipUses:265Used by:267
Symbol 267 MovieClipUses:42 266Used by:276
Symbol 268 TextUses:43Used by:269
Symbol 269 MovieClipUses:268Used by:270
Symbol 270 MovieClipUses:42 269Used by:276
Symbol 271 EditableTextUses:43Used by:273
Symbol 272 TextUses:43Used by:273
Symbol 273 MovieClipUses:271 272Used by:276
Symbol 274 ShapeTweeningUsed by:276
Symbol 275 ShapeTweeningUsed by:276
Symbol 276 MovieClipUses:67 68 91 93 96 98 77 38 80 109 227 230 233 229 225 255 261 264 267 270 273 163 183 274 275 186Used by:Timeline
Symbol 277 MovieClipUses:138Used by:380
Symbol 278 GraphicUsed by:286
Symbol 279 GraphicUsed by:280
Symbol 280 MovieClipUses:279Used by:283
Symbol 281 GraphicUsed by:282
Symbol 282 MovieClipUses:281Used by:283
Symbol 283 MovieClipUses:173 171 175 280 282 SS1Used by:286
Symbol 284 GraphicUsed by:285
Symbol 285 MovieClipUses:284Used by:286
Symbol 286 MovieClipUses:169 182 278 283 50 41 27 285 39Used by:380
Symbol 287 GraphicUsed by:288
Symbol 288 MovieClipUses:287Used by:309
Symbol 289 FontUsed by:290 291 292 295 298 303 307 308 310 314 328 346
Symbol 290 TextUses:289Used by:309
Symbol 291 TextUses:289Used by:309
Symbol 292 TextUses:289Used by:309
Symbol 293 GraphicUsed by:294
Symbol 294 MovieClipUses:293Used by:309
Symbol 295 TextUses:289Used by:309
Symbol 296 GraphicUsed by:297
Symbol 297 MovieClipUses:296Used by:309
Symbol 298 TextUses:289Used by:309
Symbol 299 GraphicUsed by:300
Symbol 300 MovieClipUses:299Used by:309
Symbol 301 GraphicUsed by:306 312
Symbol 302 GraphicUsed by:306 312
Symbol 303 TextUses:289Used by:304
Symbol 304 MovieClipUses:303Used by:306
Symbol 305 GraphicUsed by:306 312
Symbol 306 MovieClipUses:301 302 304 305Used by:309
Symbol 307 EditableTextUses:289Used by:309
Symbol 308 EditableTextUses:289Used by:309
Symbol 309 MovieClipUses:288 290 291 292 294 295 297 298 300 306 307 308Used by:380
Symbol 310 TextUses:289Used by:311
Symbol 311 MovieClipUses:310Used by:312
Symbol 312 MovieClipUses:301 302 311 305Used by:380
Symbol 313 GraphicUsed by:317
Symbol 314 TextUses:289Used by:315
Symbol 315 MovieClipUses:314Used by:317
Symbol 316 GraphicUsed by:317
Symbol 317 MovieClipUses:313 315 316Used by:380
Symbol 318 GraphicUsed by:330 348
Symbol 319 GraphicUsed by:320
Symbol 320 MovieClipUses:319Used by:330 348
Symbol 321 GraphicUsed by:325
Symbol 322 GraphicUsed by:325
Symbol 323 GraphicUsed by:325
Symbol 324 GraphicUsed by:325
Symbol 325 MovieClipUses:321 322 323 324Used by:326
Symbol 326 MovieClipUses:325Used by:330
Symbol 327 GraphicUsed by:329 347
Symbol 328 TextUses:289Used by:329
Symbol 329 MovieClipUses:327 328Used by:330 336
Symbol 330 MovieClipUses:318 67 68 91 96 93 320 175 326 329Used by:370
Symbol 331 GraphicUsed by:336 364 369
Symbol 332 GraphicUsed by:333
Symbol 333 MovieClipUses:332Used by:336 364 369
Symbol 334 GraphicUsed by:335
Symbol 335 MovieClipUses:334Used by:336 364 369
Symbol 336 MovieClipUses:67 68 91 331 333 38 335 329 SS2Used by:370
Symbol 337 GraphicUsed by:344
Symbol 338 GraphicUsed by:339
Symbol 339 MovieClipUses:338Used by:344
Symbol 340 GraphicUsed by:344
Symbol 341 GraphicUsed by:344
Symbol 342 GraphicUsed by:344
Symbol 343 GraphicUsed by:344
Symbol 344 MovieClipUses:337 339 340 341 342 343Used by:345
Symbol 345 MovieClipUses:100 344Used by:348
Symbol 346 TextUses:289Used by:347
Symbol 347 MovieClipUses:327 346Used by:348
Symbol 348 MovieClipUses:318 67 68 91 96 93 320 175 345 347Used by:370
Symbol 349 GraphicUsed by:350
Symbol 350 MovieClipUses:349Used by:364 369
Symbol 351 GraphicUsed by:352
Symbol 352 MovieClipUses:351Used by:353
Symbol 353 MovieClipUses:352Used by:364 369
Symbol 354 GraphicUsed by:364 369
Symbol 355 GraphicUsed by:356
Symbol 356 MovieClipUses:355Used by:364 369
Symbol 357 GraphicUsed by:358
Symbol 358 MovieClipUses:357Used by:362 363
Symbol 359 GraphicUsed by:360
Symbol 360 MovieClipUses:359Used by:361
Symbol 361 MovieClipUses:360Used by:362 363 367 368
Symbol 362 MovieClipUses:358 361Used by:364
Symbol 363 MovieClipUses:358 361Used by:364
Symbol 364 MovieClipUses:67 68 91 331 333 335 350 38 353 354 356 362 363Used by:370
Symbol 365 GraphicUsed by:366
Symbol 366 MovieClipUses:365Used by:367 368
Symbol 367 MovieClipUses:366 361Used by:369
Symbol 368 MovieClipUses:366 361Used by:369
Symbol 369 MovieClipUses:67 68 91 331 333 335 350 38 353 354 356 367 368Used by:370
Symbol 370 MovieClipUses:330 336 348 364 369Used by:371
Symbol 371 MovieClipUses:370Used by:380
Symbol 372 Sound [innings]Used by:380
Symbol 373 Sound [bowled]Used by:380
Symbol 374 Sound [bgLoop]Used by:380
Symbol 375 Sound [hardHit]Used by:380
Symbol 376 Sound [heavyHit]Used by:380
Symbol 377 Sound [lightHit]Used by:380
Symbol 378 Sound [mediumHit]Used by:380
Symbol 379 Sound [caught]Used by:380
Symbol 380 MovieClipUses:277 286 163 77 38 109 309 312 317 371 372 373 374 375 376 377 378 379Used by:Timeline
Symbol 381 GraphicUsed by:389
Symbol 382 EditableTextUses:43Used by:389
Symbol 383 TextUses:43Used by:384
Symbol 384 MovieClipUses:383Used by:385
Symbol 385 MovieClipUses:42 384Used by:389
Symbol 386 GraphicUsed by:388
Symbol 387 TextUses:43Used by:388
Symbol 388 MovieClipUses:386 387Used by:389
Symbol 389 MovieClipUses:381 382 385 388Used by:Timeline
Streaming Sound 1Used by:Symbol 283 MovieClip
Streaming Sound 2Used by:Symbol 336 MovieClip

Instance Names

"preloader"Frame 100Symbol 88 MovieClip
"intro"Frame 110Symbol 128 MovieClip
"bonusPanel"Frame 110Symbol 145 MovieClip
"instructions"Frame 120Symbol 205 MovieClip
"team"Frame 130Symbol 221 MovieClip
"toss"Frame 140Symbol 276 MovieClip
"gameMC"Frame 150Symbol 380 MovieClip
"hat"Symbol 25 MovieClip Frame 1Symbol 24 MovieClip
"ani"Symbol 26 MovieClip Frame 1Symbol 25 MovieClip
"markerMask"Symbol 27 MovieClip [batsman] Frame 1Symbol 2 MovieClip
"marker"Symbol 27 MovieClip [batsman] Frame 1Symbol 4 MovieClip
"radar"Symbol 27 MovieClip [batsman] Frame 1Symbol 6 MovieClip
"hotspot"Symbol 27 MovieClip [batsman] Frame 1Symbol 8 MovieClip
"shadow"Symbol 27 MovieClip [batsman] Frame 1Symbol 10 MovieClip
"batsmanGraphic"Symbol 27 MovieClip [batsman] Frame 1Symbol 26 MovieClip
"gfx"Symbol 39 MovieClip Frame 1Symbol 38 MovieClip
"ani"Symbol 40 MovieClip Frame 1Symbol 36 MovieClip
"ball"Symbol 40 MovieClip Frame 1Symbol 39 MovieClip
"markerMask"Symbol 41 MovieClip [bowler] Frame 1Symbol 2 MovieClip
"marker"Symbol 41 MovieClip [bowler] Frame 1Symbol 4 MovieClip
"hotspot"Symbol 41 MovieClip [bowler] Frame 1Symbol 28 MovieClip
"shadow"Symbol 41 MovieClip [bowler] Frame 1Symbol 10 MovieClip
"bowlerGraphic"Symbol 41 MovieClip [bowler] Frame 1Symbol 40 MovieClip
"label"Symbol 45 MovieClip Frame 1Symbol 44 EditableText
"labelMC"Symbol 46 MovieClip [teamButton] Frame 1Symbol 45 MovieClip
"shadow"Symbol 50 MovieClip [fielder] Frame 1Symbol 48 MovieClip
"hat"Symbol 50 MovieClip [fielder] Frame 1Symbol 24 MovieClip
"percent"Symbol 87 MovieClip Frame 1Symbol 75 EditableText
"loadingBoard"Symbol 88 MovieClip Frame 1Symbol 87 MovieClip
"player"Symbol 106 MovieClip Frame 1Symbol 105 MovieClip
"rocker"Symbol 128 MovieClip Frame 44Symbol 106 MovieClip
"playButton"Symbol 128 MovieClip Frame 54Symbol 114 MovieClip
"instructionsButton"Symbol 128 MovieClip Frame 58Symbol 119 MovieClip
"dummyButton"Symbol 145 MovieClip Frame 1Symbol 131 MovieClip
"backButton"Symbol 145 MovieClip Frame 1Symbol 135 Button
"content"Symbol 145 MovieClip Frame 1Symbol 141 MovieClip
"handle"Symbol 145 MovieClip Frame 1Symbol 144 MovieClip
"markerMask"Symbol 151 MovieClip Frame 1Symbol 2 MovieClip
"marker"Symbol 151 MovieClip Frame 1Symbol 4 MovieClip
"hotspot"Symbol 151 MovieClip Frame 1Symbol 28 MovieClip
"bowlerGraphic"Symbol 151 MovieClip Frame 1Symbol 40 MovieClip
"markerMask"Symbol 152 MovieClip Frame 1Symbol 2 MovieClip
"marker"Symbol 152 MovieClip Frame 1Symbol 4 MovieClip
"hotspot"Symbol 152 MovieClip Frame 1Symbol 8 MovieClip
"batsmanGraphic"Symbol 152 MovieClip Frame 1Symbol 26 MovieClip
"fielder0"Symbol 153 MovieClip Frame 1Symbol 50 MovieClip [fielder]
"fielder1"Symbol 153 MovieClip Frame 1Symbol 50 MovieClip [fielder]
"fielder2"Symbol 153 MovieClip Frame 1Symbol 50 MovieClip [fielder]
"fielder3"Symbol 153 MovieClip Frame 1Symbol 50 MovieClip [fielder]
"fielder4"Symbol 153 MovieClip Frame 1Symbol 50 MovieClip [fielder]
"bowlerMC"Symbol 153 MovieClip Frame 1Symbol 151 MovieClip
"batsmanMC"Symbol 153 MovieClip Frame 1Symbol 152 MovieClip
"fielder5"Symbol 153 MovieClip Frame 1Symbol 50 MovieClip [fielder]
"fielder6"Symbol 153 MovieClip Frame 1Symbol 50 MovieClip [fielder]
"fielder7"Symbol 153 MovieClip Frame 1Symbol 50 MovieClip [fielder]
"fielder8"Symbol 153 MovieClip Frame 1Symbol 50 MovieClip [fielder]
"fielder9"Symbol 153 MovieClip Frame 1Symbol 50 MovieClip [fielder]
"ball"Symbol 153 MovieClip Frame 1Symbol 39 MovieClip
"pitch"Symbol 163 MovieClip Frame 1Symbol 153 MovieClip
"total"Symbol 163 MovieClip Frame 1Symbol 159 EditableText
"overs"Symbol 163 MovieClip Frame 1Symbol 160 EditableText
"wickets"Symbol 163 MovieClip Frame 1Symbol 161 EditableText
"lastInnings"Symbol 163 MovieClip Frame 1Symbol 162 EditableText
"shadow"Symbol 183 MovieClip Frame 1Symbol 10 MovieClip
"bowler"Symbol 183 MovieClip Frame 1Symbol 40 MovieClip
"shadow"Symbol 183 MovieClip Frame 1Symbol 10 MovieClip
"batsman"Symbol 183 MovieClip Frame 1Symbol 26 MovieClip
"markerMaskBatsman"Symbol 198 MovieClip Frame 1Symbol 2 MovieClip
"markerBatsman"Symbol 198 MovieClip Frame 1Symbol 4 MovieClip
"hotspot"Symbol 198 MovieClip Frame 1Symbol 8 MovieClip
"radar"Symbol 198 MovieClip Frame 1Symbol 6 MovieClip
"shadow"Symbol 198 MovieClip Frame 1Symbol 10 MovieClip
"batsmanGraphic"Symbol 198 MovieClip Frame 1Symbol 26 MovieClip
"markerMaskBowler"Symbol 198 MovieClip Frame 1Symbol 2 MovieClip
"markerBowler"Symbol 198 MovieClip Frame 1Symbol 4 MovieClip
"hotspot"Symbol 198 MovieClip Frame 1Symbol 28 MovieClip
"shadow"Symbol 198 MovieClip Frame 1Symbol 10 MovieClip
"bowlerGraphic"Symbol 198 MovieClip Frame 1Symbol 40 MovieClip
"cursor"Symbol 198 MovieClip Frame 1Symbol 197 MovieClip
"grounds"Symbol 205 MovieClip Frame 16Symbol 183 MovieClip
"backButton"Symbol 205 MovieClip Frame 38Symbol 189 MovieClip
"nextButton"Symbol 205 MovieClip Frame 38Symbol 192 MovieClip
"bonusButton"Symbol 205 MovieClip Frame 75Symbol 127 MovieClip
"player"Symbol 212 MovieClip Frame 1Symbol 105 MovieClip
"leaderboardButton"Symbol 221 MovieClip Frame 1Symbol 210 MovieClip
"bonusButton"Symbol 221 MovieClip Frame 1Symbol 127 MovieClip
"rockerL"Symbol 221 MovieClip Frame 1Symbol 106 MovieClip
"rockerR"Symbol 221 MovieClip Frame 13Symbol 212 MovieClip
"teamText"Symbol 221 MovieClip Frame 15Symbol 220 MovieClip
"opponentsTeam"Symbol 221 MovieClip Frame 47Symbol 46 MovieClip [teamButton]
"userTeam"Symbol 221 MovieClip Frame 47Symbol 46 MovieClip [teamButton]
"coin"Symbol 261 MovieClip Frame 1Symbol 260 MovieClip
"txt"Symbol 273 MovieClip Frame 1Symbol 271 EditableText
"board"Symbol 276 MovieClip Frame 1Symbol 98 MovieClip
"headsButton"Symbol 276 MovieClip Frame 1Symbol 227 MovieClip
"tailsButton"Symbol 276 MovieClip Frame 4Symbol 230 MovieClip
"hand"Symbol 276 MovieClip Frame 50Symbol 261 MovieClip
"bowlButton"Symbol 276 MovieClip Frame 87Symbol 267 MovieClip
"batButton"Symbol 276 MovieClip Frame 87Symbol 270 MovieClip
"tossText"Symbol 276 MovieClip Frame 116Symbol 273 MovieClip
"bowlingLabel"Symbol 276 MovieClip Frame 121Symbol 267 MovieClip
"battingLabel"Symbol 276 MovieClip Frame 121Symbol 270 MovieClip
"grounds"Symbol 276 MovieClip Frame 160Symbol 183 MovieClip
"bg"Symbol 286 MovieClip Frame 1Symbol 169 MovieClip
"wicket"Symbol 286 MovieClip Frame 1Symbol 283 MovieClip
"fielder0"Symbol 286 MovieClip Frame 1Symbol 50 MovieClip [fielder]
"fielder1"Symbol 286 MovieClip Frame 1Symbol 50 MovieClip [fielder]
"fielder2"Symbol 286 MovieClip Frame 1Symbol 50 MovieClip [fielder]
"fielder3"Symbol 286 MovieClip Frame 1Symbol 50 MovieClip [fielder]
"fielder4"Symbol 286 MovieClip Frame 1Symbol 50 MovieClip [fielder]
"fielder5"Symbol 286 MovieClip Frame 1Symbol 50 MovieClip [fielder]
"fielder6"Symbol 286 MovieClip Frame 1Symbol 50 MovieClip [fielder]
"fielder9"Symbol 286 MovieClip Frame 1Symbol 50 MovieClip [fielder]
"fielder8"Symbol 286 MovieClip Frame 1Symbol 50 MovieClip [fielder]
"fielder7"Symbol 286 MovieClip Frame 1Symbol 50 MovieClip [fielder]
"bowler"Symbol 286 MovieClip Frame 1Symbol 41 MovieClip [bowler]
"batsman"Symbol 286 MovieClip Frame 1Symbol 27 MovieClip [batsman]
"sixAreas"Symbol 286 MovieClip Frame 1Symbol 285 MovieClip
"ball"Symbol 286 MovieClip Frame 1Symbol 39 MovieClip
"textPanel"Symbol 309 MovieClip Frame 54Symbol 300 MovieClip
"nextButton"Symbol 309 MovieClip Frame 54Symbol 306 MovieClip
"inningsOverTxt"Symbol 309 MovieClip Frame 54Symbol 307 EditableText
"gameOverTxt"Symbol 309 MovieClip Frame 64Symbol 308 EditableText
"gfx"Symbol 326 MovieClip Frame 1Symbol 325 MovieClip
"batsman"Symbol 330 MovieClip Frame 1Symbol 326 MovieClip
"cutMovie"Symbol 370 MovieClip Frame 8Symbol 330 MovieClip
"cutMovie"Symbol 370 MovieClip Frame 15Symbol 336 MovieClip
"cutMovie"Symbol 370 MovieClip Frame 22Symbol 348 MovieClip
"cutMovie"Symbol 370 MovieClip Frame 29Symbol 364 MovieClip
"cutMovie"Symbol 370 MovieClip Frame 35Symbol 369 MovieClip
"content"Symbol 371 MovieClip Frame 1Symbol 370 MovieClip
"pitchMask"Symbol 380 MovieClip Frame 1Symbol 277 MovieClip
"pitch"Symbol 380 MovieClip Frame 1Symbol 286 MovieClip
"scoreboard"Symbol 380 MovieClip Frame 1Symbol 163 MovieClip
"message"Symbol 380 MovieClip Frame 1Symbol 309 MovieClip
"playButton"Symbol 380 MovieClip Frame 1Symbol 312 MovieClip
"changeFieldersButton"Symbol 380 MovieClip Frame 1Symbol 317 MovieClip
"cutMask"Symbol 380 MovieClip Frame 1Symbol 371 MovieClip
"info_txt"Symbol 389 MovieClip Frame 1Symbol 382 EditableText
"playAgainButton"Symbol 389 MovieClip Frame 1Symbol 385 MovieClip

Special Tags

Protect (24)Timeline Frame 10 bytes ""
ExportAssets (56)Timeline Frame 1Symbol 27 as "batsman"
ExportAssets (56)Timeline Frame 1Symbol 41 as "bowler"
ExportAssets (56)Timeline Frame 1Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 1Symbol 50 as "fielder"
ExportAssets (56)Timeline Frame 120Symbol 50 as "fielder"
ExportAssets (56)Timeline Frame 120Symbol 50 as "fielder"
ExportAssets (56)Timeline Frame 120Symbol 50 as "fielder"
ExportAssets (56)Timeline Frame 120Symbol 50 as "fielder"
ExportAssets (56)Timeline Frame 120Symbol 50 as "fielder"
ExportAssets (56)Timeline Frame 120Symbol 50 as "fielder"
ExportAssets (56)Timeline Frame 120Symbol 50 as "fielder"
ExportAssets (56)Timeline Frame 120Symbol 50 as "fielder"
ExportAssets (56)Timeline Frame 120Symbol 50 as "fielder"
ExportAssets (56)Timeline Frame 120Symbol 50 as "fielder"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 130Symbol 46 as "teamButton"
ExportAssets (56)Timeline Frame 150Symbol 50 as "fielder"
ExportAssets (56)Timeline Frame 150Symbol 50 as "fielder"
ExportAssets (56)Timeline Frame 150Symbol 50 as "fielder"
ExportAssets (56)Timeline Frame 150Symbol 50 as "fielder"
ExportAssets (56)Timeline Frame 150Symbol 50 as "fielder"
ExportAssets (56)Timeline Frame 150Symbol 50 as "fielder"
ExportAssets (56)Timeline Frame 150Symbol 50 as "fielder"
ExportAssets (56)Timeline Frame 150Symbol 50 as "fielder"
ExportAssets (56)Timeline Frame 150Symbol 50 as "fielder"
ExportAssets (56)Timeline Frame 150Symbol 50 as "fielder"
ExportAssets (56)Timeline Frame 150Symbol 41 as "bowler"
ExportAssets (56)Timeline Frame 150Symbol 27 as "batsman"
ExportAssets (56)Timeline Frame 150Symbol 372 as "innings"
ExportAssets (56)Timeline Frame 150Symbol 373 as "bowled"
ExportAssets (56)Timeline Frame 150Symbol 374 as "bgLoop"
ExportAssets (56)Timeline Frame 150Symbol 375 as "hardHit"
ExportAssets (56)Timeline Frame 150Symbol 376 as "heavyHit"
ExportAssets (56)Timeline Frame 150Symbol 377 as "lightHit"
ExportAssets (56)Timeline Frame 150Symbol 378 as "mediumHit"
ExportAssets (56)Timeline Frame 150Symbol 379 as "caught"
EnableDebugger2 (64)Timeline Frame 131 bytes "..$1$f2$xaZqM9AGet7ZSPV9uw9Km/."
DebugMX1 (63)Timeline Frame 1

Labels

"preloader"Frame 100
"intro"Frame 110
"instructions"Frame 120
"team"Frame 130
"toss"Frame 140
"game"Frame 150
"leaderboard"Frame 160
"RED"Symbol 24 MovieClip Frame 1
"GREEN"Symbol 24 MovieClip Frame 6
"BLUE"Symbol 24 MovieClip Frame 12
"_up"Symbol 46 MovieClip [teamButton] Frame 10
"_over"Symbol 46 MovieClip [teamButton] Frame 16
"_down"Symbol 46 MovieClip [teamButton] Frame 22
"red"Symbol 105 MovieClip Frame 1
"green"Symbol 105 MovieClip Frame 6
"blue"Symbol 105 MovieClip Frame 12
"_up"Symbol 114 MovieClip Frame 1
"_over"Symbol 114 MovieClip Frame 7
"_down"Symbol 114 MovieClip Frame 13
"_up"Symbol 119 MovieClip Frame 1
"_over"Symbol 119 MovieClip Frame 7
"_down"Symbol 119 MovieClip Frame 13
"_up"Symbol 124 MovieClip Frame 1
"_over"Symbol 124 MovieClip Frame 7
"_down"Symbol 124 MovieClip Frame 13
"_up"Symbol 127 MovieClip Frame 1
"_over"Symbol 127 MovieClip Frame 7
"_down"Symbol 127 MovieClip Frame 13
"end"Symbol 128 MovieClip Frame 85
"showing"Symbol 145 MovieClip Frame 2
"hidden"Symbol 145 MovieClip Frame 3
"_up"Symbol 189 MovieClip Frame 1
"_over"Symbol 189 MovieClip Frame 7
"_down"Symbol 189 MovieClip Frame 13
"_up"Symbol 192 MovieClip Frame 1
"_over"Symbol 192 MovieClip Frame 7
"_down"Symbol 192 MovieClip Frame 13
"out"Symbol 205 MovieClip Frame 49
"_up"Symbol 210 MovieClip Frame 1
"_over"Symbol 210 MovieClip Frame 7
"_down"Symbol 210 MovieClip Frame 13
"user"Symbol 220 MovieClip Frame 1
"opponent"Symbol 220 MovieClip Frame 10
"match"Symbol 220 MovieClip Frame 20
"pickTeam"Symbol 221 MovieClip Frame 23
"usersTeam"Symbol 221 MovieClip Frame 25
"opponentsTeam"Symbol 221 MovieClip Frame 35
"match"Symbol 221 MovieClip Frame 47
"out"Symbol 221 MovieClip Frame 60
"_up"Symbol 227 MovieClip Frame 1
"_over"Symbol 227 MovieClip Frame 7
"_down"Symbol 227 MovieClip Frame 13
"_up"Symbol 230 MovieClip Frame 1
"_over"Symbol 230 MovieClip Frame 7
"_down"Symbol 230 MovieClip Frame 13
"_up"Symbol 267 MovieClip Frame 1
"_over"Symbol 267 MovieClip Frame 7
"_down"Symbol 267 MovieClip Frame 13
"_up"Symbol 270 MovieClip Frame 1
"_over"Symbol 270 MovieClip Frame 7
"_down"Symbol 270 MovieClip Frame 13
"batOrBowlUser"Symbol 276 MovieClip Frame 77
"batOrBowlAuto"Symbol 276 MovieClip Frame 111
"out"Symbol 276 MovieClip Frame 145
"_up"Symbol 306 MovieClip Frame 1
"_over"Symbol 306 MovieClip Frame 7
"_down"Symbol 306 MovieClip Frame 13
"setFielders"Symbol 309 MovieClip Frame 5
"setBowler"Symbol 309 MovieClip Frame 15
"setBatsman"Symbol 309 MovieClip Frame 25
"ready"Symbol 309 MovieClip Frame 35
"out"Symbol 309 MovieClip Frame 44
"nextInnings"Symbol 309 MovieClip Frame 54
"gameOver"Symbol 309 MovieClip Frame 64
"hidden"Symbol 309 MovieClip Frame 74
"_up"Symbol 312 MovieClip Frame 1
"_over"Symbol 312 MovieClip Frame 7
"_down"Symbol 312 MovieClip Frame 13
"_up"Symbol 317 MovieClip Frame 1
"_over"Symbol 317 MovieClip Frame 7
"_down"Symbol 317 MovieClip Frame 13
"RED"Symbol 325 MovieClip Frame 1
"GREEN"Symbol 325 MovieClip Frame 6
"BLUE"Symbol 325 MovieClip Frame 12
"RED"Symbol 344 MovieClip Frame 1
"GREEN"Symbol 344 MovieClip Frame 6
"BLUE"Symbol 344 MovieClip Frame 12
"hidden"Symbol 370 MovieClip Frame 1
"caught"Symbol 370 MovieClip Frame 8
"bowled"Symbol 370 MovieClip Frame 15
"century"Symbol 370 MovieClip Frame 22
"six"Symbol 370 MovieClip Frame 29
"four"Symbol 370 MovieClip Frame 35
"_up"Symbol 385 MovieClip Frame 1
"_over"Symbol 385 MovieClip Frame 7
"_down"Symbol 385 MovieClip Frame 13




http://swfchan.com/6/28483/info.shtml
Created: 20/5 -2019 09:50:19 Last modified: 20/5 -2019 09:50:19 Server time: 13/05 -2024 06:29:02