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

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

Crusin With Crush.swf

This is the info page for
Flash #24906

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


Text
LOADING

PLAY

INSTRUCTIONS

close

CATCH IT ON
DVD AND VIDEO
NOVEMBER 4

FINDINGNEMO.COM

FINDINGNEMO.COM

findingnemo.com

© DISNEY / PIXAR

INSTRUCTIONS

WHOA Dudes!
Help Crush get Marlin and Dory through the Eastern Australian Current (EAC).
Use the  up       , down       , left       , and right
arrow keys to stay in the Current.
Collect as many baby turtles          as possible while
avoiding the jellyfish        man!
But totally watch yourself and you might just make it through the EAC!

1234

EAC

99

Enter Your Name to See
the Top Ten Scores!

GO!

Submitting Score

.

..

...

You bailed out too soon dude!

TRY AGAIN

SEND TO A FRIEND

Grab a shell DUDE!
You have serious thrill issues dude.

You almost made it through
the swirling vortex of TERROR!

You Made it through the
EAC DUDE!

PLAY MOVIE

LOADING

PLAY MOVIE AGAIN

N

I

A

G

Y

R

T

D

E

F

O

S

SEND THIS GAME
TO A FRIEND

YOUR FIRST NAME

YOUR FRIEND'S FIRST NAME

YOUR FRIEND'S EMAIL

CANCEL

SEND

Sending Mail

EMAIL SENT

OK

loading scores...

HIGH SCORES

ActionScript [AS1/AS2]

Frame 1
i = 1; minDistance = 5;
Frame 2
if (getBytesLoaded() >= getBytesTotal()) { gotoAndPlay (7); } startX = _root._xmouse; startY = _root._ymouse;
Frame 3
endX = _root._xmouse; endY = _root._ymouse;
Frame 4
if ((Math.abs(endX - startX) > minDistance) || (Math.abs(endY - startY) > minDistance)) { duplicateMovieClip ("bubble", "bubble" + i, i); _root["bubble" + i]._x = _root._xmouse; _root["bubble" + i]._y = _root._ymouse; _root["bubble" + i]._alpha = (Math.random() * 75) + 25; test = random(2); if (test == 1) { _root["bubble" + i]._xscale = (Math.random() * 100) + 10; _root["bubble" + i]._yscale = _root["bubble" + i]._xscale; } else { _root["bubble" + i]._xscale = ((-Math.random()) * 100) + 10; _root["bubble" + i]._yscale = -_root["bubble" + i]._xscale; } i++; }
Frame 5
if (count > 1000) { count = 1; } gotoAndPlay (2);
Frame 15
loadMovieNum ("fn-turtlegame-bonus.swf", 10);
Frame 18
stop();
Frame 22
stop();
Frame 108
gameOn = 1; restartGame = 0; turtleLeanAngle = 0; turtleVX = 0; turtleVY = 0; turtleAngleMove = 3; turtleAngleMax = 25; turtleAngleVXConv = 0.7; turtleAngleReturn = 1; turtleVYMove = 2; turtleVYMax = 12; turtleVYReturn = 0.75; distanceToTunnelForceConv = 0.06; distanceToTunnelForceConvIncr = 1E-5; dttfcStart = distanceToTunnelForceConv; dttfcStop = 0.12; dttfcCutoff2 = 0.1; obsticleWaitMin = 35; obsticleWaitMax = 75; obsticleWait = obsticleWaitMax; obsticleWaitCounter = 0; obsticleWaitDecrement = 5; powerupWaitMin = 50; powerupWaitMax = 120; powerupWait = powerupWaitMax; powerupWaitCounter = 0; objectTweenSteps = 65; objectTweenStepsDecrement = 0.017; objectTweenStepsMin = 25; dupeCounter = 0; dupeCounterMax = 500; startGameWait = 20; turtleFlashing = 0; livesMax = 3; livesLeft = livesMax; babyTurtlesCaught = 0; turtleBoundaryBorder = 0; turtleBoundaryLeft = -turtleBoundaryBorder; turtleBoundaryRight = Stage.width + turtleBoundaryBorder; turtleBoundaryTop = -turtleBoundaryBorder; turtleBoundaryBottom = Stage.height + turtleBoundaryBorder; turtleOutOfBoundsCounter = 0; turtleOutOfBoundsMax = 50; turtleFallOffVX = 0; turtleFallOffVY = 0; scoreLocal = 0; scorePerTick = 1; scoreRemovedObsticle = 50; scorePowerup = 500; ridingClipWait = 0; ridingClipWaitMin = 150; ridingClipWaitMax = 500; ridingClipWaitCounter = 0; ridingClipsTotal = 3; ridingClipLast = 0; mailer.loadMovie("mailer-turtle.swf"); scores.loadMovie("http://www.disney.go.com/disneyvideos/animatedfilms/findingnemo/turtle-scores.swf"); badWords.loadMovie("disneyBadWords.swf"); centerX = Stage.width / 2; centerY = Stage.height / 2;
Frame 109
function turtleRight() { if (turtleLeanAngle < (turtleAngleMax - turtleAngleMove)) { turtleLeanAngle = turtleLeanAngle + turtleAngleMove; } else { turtleLeanAngle = turtleAngleMax; } } function turtleLeft() { if (turtleLeanAngle > ((-turtleAngleMax) + turtleAngleMove)) { turtleLeanAngle = turtleLeanAngle - turtleAngleMove; } else { turtleLeanAngle = -turtleAngleMax; } } function turtleUp() { if (turtleVY > ((-turtleVYMax) + turtleVYMove)) { turtleVY = turtleVY - turtleVYMove; } else { turtleVY = -turtleVYMax; } } function turtleDown() { if (turtleVY < (turtleVYMax - turtleVYMove)) { turtleVY = turtleVY + turtleVYMove; } else { turtleVY = turtleVYMax; } } function createObsticle() { duplicateMovieClip ("masterObsticle", "obsticle" add dupeCounter, dupeCounter + 100); dupeCounter++; if (dupeCounter > dupeCounterMax) { dupeCounter = 0; } } function createPowerup() { duplicateMovieClip ("masterPowerup", "powerup" add dupeCounter, dupeCounter + 100); dupeCounter++; if (dupeCounter > dupeCounterMax) { dupeCounter = 0; } } function obsticleHitTurtle(whichObsticle) { if ((turtleFlashing == 0) and (gameOn == 1)) { trace(whichObsticle add " hit turtle"); turtle.gotoAndPlay("flash"); sounds.gotoAndPlay("badObsticle"); scoreLocal = scoreLocal - scoreRemovedObsticle; if (scoreLocal < 0) { scoreLocal = 0; } } } function powerupHitTurtle(whichPowerup) { if (gameOn == 1) { if (Math.random() < 0.5) { sounds.gotoAndPlay("goodObsticle1"); } else { sounds.gotoAndPlay("goodObsticle2"); } babyTurtlesCaught++; scoreLocal = scoreLocal + scorePowerup; } } function turtleDied() { gameOn = 0; turtle.anim.stop(); path.stop(); if (distanceToTunnelForceConv >= dttfcStop) { if ((_level10.getBytesLoaded() >= _level10.getBytesTotal()) and (_level10.getBytesTotal() > 30)) { _level10.gotoAndPlay("playVideo"); } screens.gotoAndStop("gameOver3"); } else if (distanceToTunnelForceConv >= dttfcCutoff2) { screens.gotoAndStop("gameOver2"); } else { screens.gotoAndStop("gameOver1"); } } function turtleFellOut() { trace("turtle fell out"); gameOn = 0; turtleFallOff = 1; turtleFallOffVX = -1 + (Math.ceil((turtle._x - centerX) / 100000) * 2); turtleFallOffVY = -1 + (Math.ceil((turtle._y - centerY) / 100000) * 2); trace((((((("_x=" add turtle._x) add " _y=") add turtle._y) add " vx=") add turtleFallOffVX) add " vy=") add turtleFallOffVY); turtle.anim.stop(); path.stop(); turtleDied(); } function restartCleanUp() { stopAllSounds(); removeMovieClip("turtle"); removeMovieClip("screens"); removeMovieClip("scoreboard"); gotoIntro = 1; }
Frame 110
duplicateMovieClip ("masterScreens", "screens", 1000001); duplicateMovieClip ("masterScoreboard", "scoreboard", 1000002); scoreboard._x = 400; scoreboard._y = 20; duplicateMovieClip ("masterTurtle", "turtle", 1000000); masterTurtle.anim.stop(); turtleVY = -15; ridingClipWait = ridingClipWaitMin + (Math.random() * (ridingClipWaitMax - ridingClipWait));
Frame 112
if (Key.isDown(38) and (gameOn == 1)) { turtleUp(); } if (Key.isDown(40) and (gameOn == 1)) { turtleDown(); } if (Key.isDown(37) and (gameOn == 1)) { turtleLeft(); } if (Key.isDown(39) and (gameOn == 1)) { turtleRight(); } if (Key.isDown(32) and (gameOn == 1)) { } if (startGameWait > 0) { startGameWait--; if (startGameWait == 0) { startGameWait = -1; path.gotoAndPlay("start"); } } tunnelCenterX = (path.follow._x * path._xscale) / 100; tunnelCenterY = (path.follow._y * path._xscale) / 100; tunnel._x = tunnelCenterX; tunnel._y = tunnelCenterY; if ((obsticleWaitCounter >= obsticleWait) and (gameOn == 1)) { obsticleWaitCounter = 0; obsticleWait = obsticleWait - obsticleWaitDecrement; if (obsticleWait < obsticleWaitMin) { obsticleWait = obsticleWaitMin; } objectTweenSteps = objectTweenSteps - objectTweenStepsDecrement; if (objectTweenSteps < objectTweenStepsMin) { objectTweenSteps = objectTweenStepsMin; } createObsticle(); trace("objectTweenSteps=" add objectTweenSteps); } else { obsticleWaitCounter++; } if ((powerupWaitCounter >= powerupWait) and (gameOn == 1)) { powerupWaitCounter = 0; powerupWait = powerupWaitMin + (Math.random() * (powerupWaitMax - powerupWaitMin)); createPowerup(); } else { powerupWaitCounter++; } objectTweenSteps = objectTweenSteps - objectTweenStepsDecrement; if (objectTweenSteps < objectTweenStepsMin) { objectTweenSteps = objectTweenStepsMin; } if ((ridingClipWaitCounter > ridingClipWait) and (gameOn == 1)) { ridingClipWaitCounter = 0; ridingClipWait = ridingClipWaitMin + (Math.random() * (ridingClipWaitMax - ridingClipWait)); do { ridingClipNew = Math.ceil(Math.random() * ridingClipsTotal); } while (ridingClipNew == ridingClipLast); audioClip = "ridingClip" add ridingClipNew; trace("ac=" add audioClip); ridingClipLast = ridingClipNew; sounds.gotoAndPlay(audioClip); } else if (gameOn == 1) { ridingClipWaitCounter++; } if (gameOn == 1) { distanceToTunnelForceConv = distanceToTunnelForceConv + distanceToTunnelForceConvIncr; turtle._x = turtle._x - ((path.follow._x - centerX) * distanceToTunnelForceConv); turtle._y = turtle._y - ((path.follow._y - centerY) * distanceToTunnelForceConv); turtleVX = turtleLeanAngle * turtleAngleVXConv; if (distanceToTunnelForceConv >= dttfcStop) { turtleDied(); } } else if (turtleFallOff == 1) { turtleVX = turtleVX + turtleFallOffVX; turtleVY = turtleVY + turlteFallOffVY; } if ((gameOn == 1) or (turtleFallOff == 1)) { turtle._x = turtle._x + turtleVX; turtle._y = turtle._y + turtleVY; turtle._rotation = turtleLeanAngle; } if (Math.abs(turtleLeanAngle) < turtleAngleReturn) { turtleLeanAngle = 0; } else if (turtleLeanAngle > 0) { turtleLeanAngle = turtleLeanAngle - turtleAngleReturn; } else if (turtleLeanAngle < 0) { turtleLeanAngle = turtleLeanAngle + turtleAngleReturn; } if (Math.abs(turtleVY) < turtleVYReturn) { turtleVY = 0; } else if (turtleVY > 0) { turtleVY = turtleVY - turtleVYReturn; } else if (turtleVY < 0) { turtleVY = turtleVY + turtleVYReturn; } if (((((turtle._x <= turtleBoundaryLeft) or (turtle._x >= turtleBoundaryRight)) or (turtle._y <= turtleBoundaryTop)) or (turtle._y >= turtleBoundaryBottom)) and (gameOn == 1)) { turtleOutOfBoundsCounter++; if (turtleOutOfBoundsCounter > turtleOutOfBoundsMax) { turtleFellOut(); } } else { turtleOutOfBoundsCounter = 0; } if (gameOn == 1) { scoreLocal = scoreLocal + scorePerTick; scoreBoard.scoreOutput = scoreLocal; scoreBoard.babyTurtlesOutput = babyTurtlesCaught; gameProgressPercent = ((distanceToTunnelForceConv - dttfcStart) / (dttfcStop - dttfcStart)) * 100; scoreBoard.gameProgress.gotoAndStop(Math.round(gameProgressPercent)); } if (restartGame == 1) { restartCleanUp(); gotoAndPlay (26); } else { gotoAndPlay (111); }
Symbol 5 MovieClip Frame 1
stop();
Symbol 6 MovieClip Frame 3
if (_root.getBytesLoaded() >= _root.getBytesTotal()) { } else { loadingProgress.gotoAndStop(Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100)); } gotoAndPlay (2);
Symbol 9 MovieClip Frame 25
removeMovieClip(this);
Symbol 20 Button
on (release) { stopAllSounds(); gotoAndPlay (26); }
Symbol 21 Button
on (release) { gotoAndStop (22); }
Symbol 25 Button
on (release) { getURL ("http://www.findingnemo.com", "_blank"); }
Symbol 28 Button
on (release) { getURL ("javascript:window.close();", "_self"); }
Symbol 34 Button
on (release) { getURL ("http://www.findingnemo.com", "_blank"); }
Symbol 46 Button
on (release) { gotoAndStop (18); }
Symbol 49 MovieClip Frame 1
stop();
Symbol 49 MovieClip Frame 741
gotoAndPlay (5);
Symbol 70 MovieClip Frame 1
stop();
Instance of Symbol 48 MovieClip "collisionBox" in Symbol 70 MovieClip Frame 1
onClipEvent (load) { this._visible = 0; }
Symbol 70 MovieClip Frame 5
_parent.turtleFlashing = 1;
Symbol 70 MovieClip Frame 14
_parent.turtleFlashing = 0; gotoAndStop (1);
Symbol 72 MovieClip Frame 1
startScale = 15; endScale = 100; startCollisionScale = 75; endCollisionScale = 115; startAlpha = 30; endAlpha = 150; tweenSteps = Math.round(_parent.objectTweenSteps); tweenStepsCounter = 3; finalSide = Math.random(); if (finalSide < 0.25) { finalX = Math.random() * Stage.width; finalY = -5 + ((endScale * this._height) / 100); } else if (finalSide < 0.5) { finalX = (Stage.width + 5) + ((endScale * this._width) / 100); finalY = Math.random() * Stage.height; } else if (finalSide < 0.75) { finalX = Math.random() * Stage.width; finalY = (Stage.height + 5) + ((endScale * this._height) / 100); } else { finalX = -5 + ((endScale * this._width) / 100); finalY = Math.random() * Stage.height; } startX = _parent.tunnelCenterX; startY = _parent.tunnelCenterY; scaleRange = endScale - startScale; alphaRange = endAlpha - startAlpha; xRange = finalX - startX; yRange = finalY - startY;
Symbol 72 MovieClip Frame 2
if (this._name eq "masterObsticle") { stop(); }
Symbol 72 MovieClip Frame 4
tweenSquared = Math.pow(tweenStepsCounter / tweenSteps, 4); newScale = startScale + (tweenSquared * scaleRange); if ((newScale >= startCollisionScale) and (newScale <= endCollisionScale)) { if (this.hitTest(_root.turtle.collisionBox)) { trace("hit"); _root.obsticleHitTurtle(this._name); } } this._xscale = newScale; this._yscale = newScale; this._alpha = startAlpha + (tweenSquared * alphaRange); this._x = startX + (tweenSquared * xRange); this._y = startY + (tweenSquared * yRange); if (tweenStepsCounter > tweenSteps) { trace("removing " add this._name); this.removeMovieClip(); } else { tweenStepsCounter++; } gotoAndPlay (3);
Symbol 73 MovieClip Frame 1
startScale = 20; endScale = 100; startCollisionScale = 65; endCollisionScale = 125; startAlpha = 30; endAlpha = 150; tweenSteps = Math.round((_parent.objectTweenSteps + 12) - 1); tweenStepsCounter = 5; finalSide = Math.random(); if (finalSide < 0.25) { finalX = Math.random() * Stage.width; finalY = -5 + ((endScale * this._height) / 100); } else if (finalSide < 0.5) { finalX = (Stage.width + 5) + ((endScale * this._width) / 100); finalY = Math.random() * Stage.height; } else if (finalSide < 0.75) { finalX = Math.random() * Stage.width; finalY = (Stage.height + 5) + ((endScale * this._height) / 100); } else { finalX = -5 + ((endScale * this._width) / 100); finalY = Math.random() * Stage.height; } startX = _parent.tunnelCenterX; startY = _parent.tunnelCenterY; scaleRange = endScale - startScale; alphaRange = endAlpha - startAlpha; xRange = finalX - startX; yRange = finalY - startY;
Symbol 73 MovieClip Frame 2
if (this._name eq "masterPowerup") { stop(); }
Symbol 73 MovieClip Frame 4
tweenSquared = Math.pow(tweenStepsCounter / tweenSteps, 4); newScale = startScale + (tweenSquared * scaleRange); if ((newScale >= startCollisionScale) and (newScale <= endCollisionScale)) { if (this.hitTest(_root.turtle.collisionBox)) { trace("hit"); _root.powerUpHitTurtle(this._name); this.removeMovieClip(); } } this._xscale = newScale; this._yscale = newScale; this._alpha = startAlpha + (tweenSquared * alphaRange); this._x = startX + (tweenSquared * xRange); this._y = startY + (tweenSquared * yRange); if (tweenStepsCounter > tweenSteps) { trace("removing " add this._name); this.removeMovieClip(); } else { tweenStepsCounter++; } gotoAndPlay (3);
Symbol 80 MovieClip Frame 1
stop();
Symbol 82 MovieClip Frame 1
babyTurtlesOutput = 0;
Symbol 82 MovieClip Frame 5
stop();
Symbol 89 MovieClip Frame 1
stop();
Symbol 89 MovieClip Frame 6
gotoAndStop (1);
Symbol 89 MovieClip Frame 16
gotoAndStop (1);
Symbol 89 MovieClip Frame 26
gotoAndStop (1);
Symbol 89 MovieClip Frame 36
trace("rc1"); gotoAndStop (1);
Symbol 89 MovieClip Frame 46
trace("rc2"); gotoAndStop (1);
Symbol 89 MovieClip Frame 56
gotoAndStop (1);
Symbol 94 Button
on (release) { if (_parent._parent.badWords.containsBadWord(playerName) == 1) { playerName = ""; } else { _parent._parent.scores.addScore(playerName, _parent._parent.scoreLocal); gotoAndPlay (10); } }
Symbol 100 MovieClip Frame 1
stop();
Symbol 100 MovieClip Frame 55
_parent.gotoAndPlay("showScores"); stop();
Symbol 104 Button
on (release) { _parent.restartGame = 1; }
Symbol 105 Button
on (release) { gotoAndStop (50); }
Symbol 111 Button
on (release) { _level10.gotoAndPlay("playVideo"); gotoAndStop (20); }
Symbol 113 Button
on (release) { _level10.gotoAndPlay("playVideo"); }
Symbol 114 MovieClip Frame 1
if ((_level10.getBytesLoaded() >= _level10.getBytesTotal()) and (_level10.getBytesTotal() > 30)) { gotoAndStop (20); }
Symbol 114 MovieClip Frame 4
derPercentLoaded = (_level10.getBytesLoaded() / _level10.getBytesTotal()) * 100; loadingProgress.gotoAndStop(Math.round(derPercentLoaded)); if ((derPercentLoaded >= 100) and (_level10.getBytesTotal() > 30)) { gotoAndStop (11); } else { gotoAndPlay (3); }
Symbol 114 MovieClip Frame 11
stop();
Symbol 114 MovieClip Frame 20
stop();
Symbol 136 Button
on (release) { sendErrorText = ""; gotoAndStop(endScreen); }
Symbol 137 Button
on (release) { getURL ("javascript:trackCruisingGameSend();"); _parent.mailer.sendMail(escape(userName), escape(friendName), friendEmail, ""); sendStartTime = getTimer(); gotoAndPlay (58); }
Symbol 142 Button
on (release) { gotoAndStop(endScreen); }
Symbol 165 MovieClip Frame 1
stop();
Symbol 165 MovieClip Frame 5
endScreen = "fellOut"; stop();
Symbol 165 MovieClip Frame 20
endScreen = "gameOver1"; stop();
Symbol 165 MovieClip Frame 30
endScreen = "gameOver2"; stop();
Symbol 165 MovieClip Frame 40
endScreen = "gameOver3"; stop();
Symbol 165 MovieClip Frame 50
userName = ""; friendName = ""; friendEmail = ""; stop();
Symbol 165 MovieClip Frame 59
if (_parent.mailer.sendStatus == "sent") { sendErrorText = ""; gotoAndStop (60); } else if ((_parent.mailer.sendStatus == "error") || ((getTimer() - sendStartTime) > 10000)) { sendErrorText = "Dude!\nI coudn't send your message like that. Please try again."; gotoAndStop (50); } else { gotoAndPlay (58); }
Symbol 165 MovieClip Frame 70
endScreen = "showScores"; _parent.scores.getTopScores(); play();
Symbol 165 MovieClip Frame 72
stop();

Library Items

Symbol 1 FontUsed by:2
Symbol 2 TextUses:1Used by:6
Symbol 3 GraphicUsed by:5 20 21 28 46 48 71 89 94 104 105 111 113 136 137 142 165
Symbol 4 GraphicUsed by:5
Symbol 5 MovieClipUses:3 4Used by:6 114
Symbol 6 MovieClipUses:2 5Used by:Timeline
Symbol 7 GraphicUsed by:8
Symbol 8 MovieClipUses:7Used by:9
Symbol 9 MovieClipUses:8Used by:Timeline
Symbol 10 SoundUsed by:Timeline
Symbol 11 BitmapUsed by:12
Symbol 12 GraphicUses:11Used by:Timeline
Symbol 13 GraphicUsed by:14 165
Symbol 14 ButtonUses:13Used by:165  Timeline
Symbol 15 FontUsed by:16
Symbol 16 TextUses:15Used by:Timeline
Symbol 17 FontUsed by:18 30 31 33 42 90 93 95 96 97 98 101 102 103 106 107 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 134 135 138 139 140 141 143 146 148 150 152 154 156 158 160 162 164
Symbol 18 TextUses:17Used by:Timeline
Symbol 19 GraphicUsed by:Timeline
Symbol 20 ButtonUses:3Used by:Timeline
Symbol 21 ButtonUses:3Used by:Timeline
Symbol 22 GraphicUsed by:82  Timeline
Symbol 23 GraphicUsed by:82  Timeline
Symbol 24 GraphicUsed by:25
Symbol 25 ButtonUses:24Used by:82  Timeline
Symbol 26 FontUsed by:27 29 43
Symbol 27 TextUses:26Used by:82  Timeline
Symbol 28 ButtonUses:3Used by:82  Timeline
Symbol 29 TextUses:26Used by:Timeline
Symbol 30 TextUses:17Used by:34
Symbol 31 TextUses:17Used by:34
Symbol 32 GraphicUsed by:34
Symbol 33 TextUses:17Used by:34
Symbol 34 ButtonUses:30 31 32 33Used by:Timeline
Symbol 35 FontUsed by:36
Symbol 36 TextUses:35Used by:82  Timeline
Symbol 37 SoundUsed by:Timeline
Symbol 38 GraphicUsed by:Timeline
Symbol 39 GraphicUsed by:Timeline
Symbol 40 BitmapUsed by:41
Symbol 41 GraphicUses:40Used by:72  Timeline
Symbol 42 TextUses:17Used by:Timeline
Symbol 43 TextUses:26Used by:Timeline
Symbol 44 BitmapUsed by:45
Symbol 45 GraphicUses:44Used by:73 82  Timeline
Symbol 46 ButtonUses:3Used by:Timeline
Symbol 47 VideoUsed by:Timeline
Symbol 48 MovieClipUses:3Used by:49 70  Timeline
Symbol 49 MovieClipUses:48Used by:Timeline
Symbol 50 BitmapUsed by:51
Symbol 51 GraphicUses:50Used by:60
Symbol 52 BitmapUsed by:53
Symbol 53 GraphicUses:52Used by:60
Symbol 54 BitmapUsed by:55
Symbol 55 GraphicUses:54Used by:60
Symbol 56 BitmapUsed by:57
Symbol 57 GraphicUses:56Used by:60
Symbol 58 BitmapUsed by:59
Symbol 59 GraphicUses:58Used by:60
Symbol 60 MovieClipUses:51 53 55 57 59Used by:Timeline
Symbol 61 BitmapUsed by:62
Symbol 62 GraphicUses:61Used by:69
Symbol 63 BitmapUsed by:64
Symbol 64 GraphicUses:63Used by:69
Symbol 65 BitmapUsed by:66
Symbol 66 GraphicUses:65Used by:69
Symbol 67 BitmapUsed by:68
Symbol 68 GraphicUses:67Used by:69
Symbol 69 MovieClipUses:62 64 66 68Used by:70
Symbol 70 MovieClipUses:48 69Used by:Timeline
Symbol 71 ButtonUses:3Used by:Timeline
Symbol 72 MovieClipUses:41Used by:Timeline
Symbol 73 MovieClipUses:45Used by:Timeline
Symbol 74 FontUsed by:75 81 108 109 110 112
Symbol 75 EditableTextUses:74Used by:82
Symbol 76 GraphicUsed by:80
Symbol 77 FontUsed by:78
Symbol 78 TextUses:77Used by:80
Symbol 79 GraphicUsed by:80
Symbol 80 MovieClipUses:76 78 79Used by:82
Symbol 81 EditableTextUses:74Used by:82
Symbol 82 MovieClipUses:22 23 25 27 28 36 75 80 45 81Used by:Timeline
Symbol 83 SoundUsed by:89
Symbol 84 SoundUsed by:89
Symbol 85 SoundUsed by:89
Symbol 86 SoundUsed by:89
Symbol 87 SoundUsed by:89
Symbol 88 SoundUsed by:89
Symbol 89 MovieClipUses:3 83 84 85 86 87 88Used by:Timeline
Symbol 90 TextUses:17Used by:100
Symbol 91 FontUsed by:92 131 132 133
Symbol 92 EditableTextUses:91Used by:100
Symbol 93 TextUses:17Used by:100
Symbol 94 ButtonUses:3Used by:100
Symbol 95 TextUses:17Used by:100
Symbol 96 TextUses:17Used by:99
Symbol 97 TextUses:17Used by:99
Symbol 98 TextUses:17Used by:99
Symbol 99 MovieClipUses:96 97 98Used by:100 165
Symbol 100 MovieClipUses:90 92 93 94 95 99Used by:165
Symbol 101 TextUses:17Used by:165
Symbol 102 TextUses:17Used by:165
Symbol 103 TextUses:17Used by:165
Symbol 104 ButtonUses:3Used by:165
Symbol 105 ButtonUses:3Used by:165
Symbol 106 TextUses:17Used by:165
Symbol 107 TextUses:17Used by:165
Symbol 108 TextUses:74Used by:165
Symbol 109 TextUses:74Used by:114
Symbol 110 TextUses:74Used by:114
Symbol 111 ButtonUses:3Used by:114
Symbol 112 TextUses:74Used by:114
Symbol 113 ButtonUses:3Used by:114
Symbol 114 MovieClipUses:109 110 5 111 112 113Used by:165
Symbol 115 TextUses:17Used by:165
Symbol 116 TextUses:17Used by:165
Symbol 117 TextUses:17Used by:165
Symbol 118 TextUses:17Used by:165
Symbol 119 TextUses:17Used by:165
Symbol 120 TextUses:17Used by:165
Symbol 121 TextUses:17Used by:165
Symbol 122 TextUses:17Used by:165
Symbol 123 TextUses:17Used by:165
Symbol 124 TextUses:17Used by:165
Symbol 125 TextUses:17Used by:165
Symbol 126 TextUses:17Used by:165
Symbol 127 TextUses:17Used by:165
Symbol 128 TextUses:17Used by:165
Symbol 129 TextUses:17Used by:165
Symbol 130 TextUses:17Used by:165
Symbol 131 EditableTextUses:91Used by:165
Symbol 132 EditableTextUses:91Used by:165
Symbol 133 EditableTextUses:91Used by:165
Symbol 134 TextUses:17Used by:165
Symbol 135 TextUses:17Used by:165
Symbol 136 ButtonUses:3Used by:165
Symbol 137 ButtonUses:3Used by:165
Symbol 138 EditableTextUses:17Used by:165
Symbol 139 TextUses:17Used by:165
Symbol 140 TextUses:17Used by:165
Symbol 141 TextUses:17Used by:165
Symbol 142 ButtonUses:3Used by:165
Symbol 143 EditableTextUses:17Used by:165
Symbol 144 FontUsed by:145 147 149 151 153 155 157 159 161 163
Symbol 145 EditableTextUses:144Used by:165
Symbol 146 EditableTextUses:17Used by:165
Symbol 147 EditableTextUses:144Used by:165
Symbol 148 EditableTextUses:17Used by:165
Symbol 149 EditableTextUses:144Used by:165
Symbol 150 EditableTextUses:17Used by:165
Symbol 151 EditableTextUses:144Used by:165
Symbol 152 EditableTextUses:17Used by:165
Symbol 153 EditableTextUses:144Used by:165
Symbol 154 EditableTextUses:17Used by:165
Symbol 155 EditableTextUses:144Used by:165
Symbol 156 EditableTextUses:17Used by:165
Symbol 157 EditableTextUses:144Used by:165
Symbol 158 EditableTextUses:17Used by:165
Symbol 159 EditableTextUses:144Used by:165
Symbol 160 EditableTextUses:17Used by:165
Symbol 161 EditableTextUses:144Used by:165
Symbol 162 EditableTextUses:17Used by:165
Symbol 163 EditableTextUses:144Used by:165
Symbol 164 TextUses:17Used by:165
Symbol 165 MovieClipUses:3 100 101 14 102 103 104 105 106 107 108 114 13 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 99 140 141 142 143 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164Used by:Timeline
Streaming Sound 1Used by:Timeline

Instance Names

"bubble"Frame 1Symbol 9 MovieClip
"path"Frame 108Symbol 49 MovieClip
"tunnel"Frame 108Symbol 60 MovieClip
"masterTurtle"Frame 108Symbol 70 MovieClip
"masterObsticle"Frame 108Symbol 72 MovieClip
"masterPowerup"Frame 108Symbol 73 MovieClip
"masterScoreboard"Frame 108Symbol 82 MovieClip
"sounds"Frame 108Symbol 89 MovieClip
"masterScreens"Frame 108Symbol 165 MovieClip
"mailer"Frame 108Symbol 48 MovieClip
"scores"Frame 108Symbol 48 MovieClip
"badWords"Frame 108Symbol 48 MovieClip
"loadingProgress"Symbol 6 MovieClip Frame 1Symbol 5 MovieClip
"follow"Symbol 49 MovieClip Frame 1Symbol 48 MovieClip
"collisionBox"Symbol 70 MovieClip Frame 1Symbol 48 MovieClip
"anim"Symbol 70 MovieClip Frame 1Symbol 69 MovieClip
"gameProgress"Symbol 82 MovieClip Frame 1Symbol 80 MovieClip
"loadingProgress"Symbol 114 MovieClip Frame 2Symbol 5 MovieClip

Labels

"loop"Frame 2
"done"Frame 7
"splash"Frame 18
"instructions"Frame 22
"run_loop"Frame 111
"loadLoop"Symbol 6 MovieClip Frame 2
"start"Symbol 49 MovieClip Frame 5
"flash"Symbol 70 MovieClip Frame 5
"run_loop"Symbol 72 MovieClip Frame 3
"run_loop"Symbol 73 MovieClip Frame 3
"badObsticle"Symbol 89 MovieClip Frame 5
"goodObsticle1"Symbol 89 MovieClip Frame 15
"goodObsticle2"Symbol 89 MovieClip Frame 25
"ridingClip1"Symbol 89 MovieClip Frame 35
"ridingClip2"Symbol 89 MovieClip Frame 45
"ridingClip3"Symbol 89 MovieClip Frame 55
"sendingScore"Symbol 100 MovieClip Frame 10
"loadLoop"Symbol 114 MovieClip Frame 3
"playMovie"Symbol 114 MovieClip Frame 11
"playAgain"Symbol 114 MovieClip Frame 20
"fellOut"Symbol 165 MovieClip Frame 5
"gameOver1"Symbol 165 MovieClip Frame 20
"gameOver2"Symbol 165 MovieClip Frame 30
"gameOver3"Symbol 165 MovieClip Frame 40
"sendFriend"Symbol 165 MovieClip Frame 50
"sendFriendRunLoop"Symbol 165 MovieClip Frame 58
"emailSent"Symbol 165 MovieClip Frame 60
"showScores"Symbol 165 MovieClip Frame 70

Dynamic Text Variables

scoreOutputSymbol 75 EditableText"1234"
babyTurtlesOutputSymbol 81 EditableText"99"
playerNameSymbol 92 EditableText""
userNameSymbol 131 EditableText""
friendNameSymbol 132 EditableText""
friendEmailSymbol 133 EditableText""
sendErrorTextSymbol 138 EditableText""
_parent.scores.GName0Symbol 143 EditableText"loading scores..."
_parent.scores.GScore0Symbol 145 EditableText""
_parent.scores.GName1Symbol 146 EditableText""
_parent.scores.GScore1Symbol 147 EditableText""
_parent.scores.GName2Symbol 148 EditableText""
_parent.scores.GScore2Symbol 149 EditableText""
_parent.scores.GName3Symbol 150 EditableText""
_parent.scores.GScore3Symbol 151 EditableText""
_parent.scores.GName4Symbol 152 EditableText""
_parent.scores.GScore4Symbol 153 EditableText""
_parent.scores.GName5Symbol 154 EditableText""
_parent.scores.GScore5Symbol 155 EditableText""
_parent.scores.GName6Symbol 156 EditableText""
_parent.scores.GScore6Symbol 157 EditableText""
_parent.scores.GName7Symbol 158 EditableText""
_parent.scores.GScore7Symbol 159 EditableText""
_parent.scores.GName8Symbol 160 EditableText""
_parent.scores.GScore8Symbol 161 EditableText""
_parent.scores.GName9Symbol 162 EditableText""
_parent.scores.GScore9Symbol 163 EditableText""




http://swfchan.com/5/24906/info.shtml
Created: 24/5 -2019 09:23:17 Last modified: 24/5 -2019 09:23:17 Server time: 20/05 -2024 01:03:17