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

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

Robotboy- Tommy Takeaway.swf

This is the info page for
Flash #42439

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


Text
START GAME

START GAME

battery farm

Tommy's been kidnaped
by Dr Kamikazi and taken
back to his island
Use the mouse to avoid
the missiles and mouse
click to shoot the frogmen.
Remember that Robotboy
can only shoot when
superactivated.
Good luck!

FLY TO KAMIKAZI ISLAND

VISOR

Cut scenes

- OUT OF POWER -

HA HA
You lose
Robotboy...

HA HA
You lose
Robotboy...

Well done! You helped
Robotboy save Tommy

Well done! You helped
Robotboy save Tommy

BEST SCORE :

FINAL SCORE :

ACCURACY :

ActionScript [AS1/AS2]

Frame 1
function ThreeD() { this.init(); } ThreeD.prototype.init = function () { this.pX = 0; this.pY = 0; this.pZ = 0; this.x = 0; this.y = 0; this.z = 0; this.s = 100; this.pPerspective = 0.002; }; ThreeD.prototype.setScreenXYZ = function (tX, tY, tZ) { this.x = tX; this.y = tY; this.pZ = tZ; var _local2 = (this.pPerspective * this.pZ) + 1; this.pX = this.x * _local2; this.pY = this.y * _local2; this.z = this.pZ / _local2; this.s = 100 - (this.z * 0.9); }; ThreeD.prototype.setXYZ = function (tX, tY, tZ) { this.pX = tX; this.pY = tY; this.pZ = tZ; var _local2 = (this.pPerspective * this.pZ) + 1; this.x = this.pX / _local2; this.y = this.pY / _local2; this.z = this.pZ / _local2; this.s = 100 - (this.z * 0.9); }; Math.RandomInt = function (minVal, maxVal) { var _local1 = Math.round(Math.RandomRange(minVal, maxVal)); return(_local1); }; Math.RandomRange = function (minVal, maxVal) { return(minVal + (this.random() * (maxVal - minVal))); }; Math.linearTween = function (t, b, c, d) { return(((c * t) / d) + b); }; Math.easeInOutQuad = function (t, b, c, d) { t = t / (d / 2); if (t < 1) { return((((c / 2) * t) * t) + b); } t--; return((((-c) / 2) * ((t * (t - 2)) - 1)) + b); }; Math.easeOutQuart = function (t, b, c, d) { t = (t / d) - 1; return(((-c) * ((((t * t) * t) * t) - 1)) + b); }; Math.easeOutCubic = function (t, b, c, d) { t = (t / d) - 1; return((c * (((t * t) * t) + 1)) + b); }; Array.prototype.getItemIndex = function (tItem) { var _local3 = this.length; var _local2 = 0; while (_local2 < _local3) { if (this[_local2] == tItem) { return(_local2); } _local2++; } return(-1); }; _global.gBestScore = 0; _global.g3dObject = new ThreeD();
Frame 3
if (this.pMusic == undefined) { this.pMusic = new Sound(this); } this.pMusic.attachSound("intro_snd"); this.pMusic.start(0, 9999);
Frame 15
_global.gStats = {hits:0, misses:0}; _global.gLevel = 0; _global.gDistance = 0; _global.gPower = 60; _global.gDanger = 0; _global.gScore = 0; _global.gScene = "menu"; this.gotoScene = function (tScene) { _global.gScene = tScene; if ("menugame1game2flyoutinstructionscores".indexOf(tScene) == -1) { this.gotoAndStop("cutScene"); this.cutScene_mc.gotoAndPlay(tScene); } else { this.gotoAndPlay(tScene); } }; this.sceneDone = function () { switch (gScene) { case "win" : case "fall" : this.gotoScene("scores"); break; case "frogHit" : this.gotoScene("goDown"); break; case "goSuper" : this.danger_mc.resetDanger(); _global.gScene = "game2"; this.gotoAndPlay("game2"); break; case "goDown" : _global.gScene = "flyout"; this.gotoAndPlay("flyout"); } }; stop();
Frame 30
var fakeVar = new Date().getTime(); "tracker.swf?" + fakeVar; this.robotboy_mc.gotoAndPlay("front"); stop();
Frame 31
this.pMusic.stop(); this.smoke0_mc.clearSmoke(); this.smoke1_mc.clearSmoke(); this.smoke2_mc.clearSmoke(); this.smoke3_mc.clearSmoke(); this.smoke4_mc.clearSmoke(); this.power_mc.toggleSoundOn(); this.robotboy_mc.gotoAndPlay("out");
Frame 52
this.batteryFarm_mc.startLaunch(); stop();
Frame 53
this.danger_mc.toggleSoundOn(); this.robotboy_mc.gotoAndPlay("back");
Frame 69
this.frogMachine_mc.startLaunch(); stop();
Frame 70
this.power_mc.toggleSoundOff(); this.danger_mc.resetDanger();
Frame 77
stop();
Frame 78
this.power_mc.toggleSoundOn(); this.visor_mc.showVisor();
Frame 88
this.frogMachine_mc.startLaunch(); stop();
Frame 94
stop();
Symbol 95 Button
on (release) { this._parent.gotoScene("instructions"); }
Symbol 108 MovieClip Frame 1
this.init = function () { this.pDelay = 50; this.pCount = 0; this.pFrogCount = 0; this.pMode = 0; this.pPosIndex = new Array(); var _local2 = 0; while (_local2 < 27) { this.pPosIndex.splice(Math.RandomInt(0, this.pPosIndex.length), 0, _local2); _local2++; } this.pPosIndexInUse = new Array(); this.pFrogsInUse = new Array(); this.pFrogsReady = new Array(); this.pActive = false; _local2 = 1; while (_local2 <= 8) { var _local3 = this.attachMovie("mc.frogman", ("frog" + _local2) + "_mc", _local2); _local3._y = -200; this.pFrogsReady.push(_local2); _local2++; } }; this.startLaunch = function () { if (!this.pActive) { this.pActive = true; this.pCount = 0; if (gScene == "game1") { this.pMode = 1; this.pFrogCount = -1; this.pDelay = 25; } else { this.pMode = 2; this.pDelay = 5; switch (gLevel) { case 5 : this.pFrogCount = 10; break; case 4 : this.pFrogCount = 9; break; case 3 : this.pFrogCount = 8; break; case 2 : this.pFrogCount = 7; break; case 1 : this.pFrogCount = 5; } } } }; this.stopLaunch = function () { this.pActive = false; }; this.checkFrogs = function () { var _local3 = -1; var _local4 = this.pFrogsInUse.length; var _local2 = 0; while (_local2 < _local4) { if (this[("frog" + this.pFrogsInUse[_local2]) + "_mc"].hitFrog()) { _local3 = this.pFrogsInUse[_local2] + 0; break; } _local2++; } return(_local3); }; this.getPos = function () { var _local2 = this.pPosIndex.shift(); this.pPosIndexInUse.push(_local2 + 0); return(_local2); }; this.posDone = function (n) { this.pPosIndex.splice(Math.RandomInt(0, this.pPosIndex.length), 0, n); this.pPosIndexInUse.splice(this.pPosIndexInUse.getItemIndex(n), 1); }; this.frogDone = function (n) { var _local2 = this.pFrogsInUse.getItemIndex(n); if (_local2 > -1) { this.pFrogsReady.push(parseInt(n)); this.pFrogsInUse.splice(_local2, 1); } }; this.clearFrogs = function () { this.stopLaunch(); var _local2; for (_local2 in this.pFrogsInUse) { this[("frog" + this.pFrogsInUse[_local2]) + "_mc"].resetFrog(); } }; this.endScene = function () { if (this.pFrogsInUse.length == 0) { this._parent.gotoScene("frogHit"); this._parent.visor_mc.hideVisor(); } }; this.onEnterFrame = function () { if (this.pActive) { this.pCount--; if (this.pCount <= 0) { if (this.pFrogsReady.length > 0) { this.pCount = this.pDelay; var _local2 = this.pFrogsReady.shift(); this.pFrogsInUse.push(_local2); this[("frog" + _local2) + "_mc"].launchFrog(this.pMode); if ((--this.pFrogCount) == 0) { this.stopLaunch(); } } } } }; this.init(); stop();
Symbol 111 MovieClip Frame 1
this.init = function () { this.pActive = false; this.pCount = 0; }; this.startLaunch = function () { if (gDistance < 90) { this.pActive = true; this.pCount = 0; } }; this.onEnterFrame = function () { if (this.pActive) { this.pCount++; switch (this.pCount) { case 20 : case 30 : case 40 : case 50 : case 90 : case 100 : case 110 : case 120 : this.addBattery(200 - this.pCount); } } }; this.addBattery = function (tNum) { var _local3; _local3 = this.attachMovie("mc.battery", ("battery" + tNum) + "_mc", tNum); _local3.pX = (Math.random() * 150) + 225; _local3._x = -50; _local3._y = 125; _local3.pSpeed = 0; _local3._xscale = 8; _local3._yscale = 8; _local3.pSound = new Sound(_local3); _local3.onEnterFrame = function () { this.pSpeed = this.pSpeed + 0.6; this._y = this._y + this.pSpeed; this._x = this.pX + (((this._y - 100) * 0.1) * ((this.pX - 300) * 0.1)); this._xscale = this._xscale + 3.5; this._yscale = this._yscale + 3.5; if (this._y > 400) { this.pSound.attachSound("battMiss_snd"); this.pSound.start(); _global.gStats.misses++; delete this.onEnterFrame; this.removeMovieClip(); } else if (this._y > 260) { if (Math.abs(this._x - this._parent._parent.robotboy_mc._x) < 30) { this.pSound.attachSound("battCollect_snd"); this.pSound.start(); _global.gStats.hits++; this._parent._parent.power_mc.takePower(7); delete this.onEnterFrame; this.removeMovieClip(); } } }; }; this.init(); stop();
Symbol 113 MovieClip Frame 1
this.init = function () { this.pLow = 524286 /* 0x07FFFE */; this.pHigh = 524287 /* 0x07FFFF */; }; this.getHigh = function () { var _local2 = this.pHigh++; return(_local2); }; this.getLow = function () { var _local2 = this.pLow--; return(_local2); }; this.init(); stop();
Symbol 115 MovieClip Frame 1
this.init = function () { this.pFreeRockets = new Array(); var _local2 = 0; while (_local2 < 5) { this.pFreeRockets.push(_local2); var _local3 = this.attachMovie("mc.missile", ("missile" + _local2) + "_mc", _local2); _local3._y = -100; _local2++; } this.pInUseRockets = new Array(); }; this.launchRocket = function (tX, tY, tZ, tX2, tY2, tZ2, tType, tFrog) { if (this.pFreeRockets.length > 0) { var _local2 = this.pFreeRockets.shift(); this[("missile" + _local2) + "_mc"].fireMissle(tX, tY, tZ, tX2, tY2, tZ2, tType, tFrog); this.pInUseRockets.push(_local2); } }; this.rocketDone = function (n) { var _local2 = parseInt(n); var _local3 = this.pInUseRockets.getItemIndex(_local2); this.pInUseRockets.splice(_local3, 1); this.pFreeRockets.push(_local2); }; this.clearMissiles = function () { var _local2; for (_local2 in this.pInUseRockets) { this[("missile" + this.pInUseRockets[_local2]) + "_mc"].resetMissile(); } }; this.init(); stop();
Symbol 84 MovieClip [mc.smoke] Frame 1
this.init = function () { this.pX = -100; this.pY = -100; this.pCount = 0; this.pScale = 0; this.pDirection = 1; this.pMove = 0; this.pActive = false; this.pSmokeScreen = this._parent.smokeScreen_mc; }; this.startSmoke = function (tDir, tShift) { this.pDirection = tDir; this.pMove = tShift; this.pCount = 0; this.pActive = true; }; this.stopSmoke = function () { this.pActive = false; this.pX = -100; this.pY = -100; }; this.clearSmoke = function () { this.stopSmoke(); var _local2 = 0; while (_local2 < 13) { this.pSmokeScreen[("puff" + (this.pCount - _local2)) + "_mc"].removeMovieClip(); _local2++; } }; this.setSmoke = function (x, y, s) { this.pX = x; this.pY = y; this.pScale = s / 100; }; this.setScale = function (tScale) { this.pScale = tScale / 100; }; this.setType = function (tType) { this.pType = tType; }; this.onEnterFrame = function () { if (this.pActive) { this.pCount++; if (this.pDirection == 1) { var _local2 = this.pSmokeScreen.attachMovie("mc.puff", ("puff" + String(this.pCount)) + "_mc", this.pSmokeScreen.getLow()); } else { var _local2 = this.pSmokeScreen.attachMovie("mc.puff2", ("puff" + String(this.pCount)) + "_mc", this.pSmokeScreen.getHigh()); } if (this.pMove != 0) { _local2.pShift = this.pMove; _local2.onEnterFrame = function () { this._y = this._y + this.pShift; }; } var _local3 = 8 * this.pScale; _local2._x = this.pX + Math.RandomRange(-_local3, _local3); _local2._y = this.pY + Math.RandomRange(-_local3, _local3); _local2._xscale = this.pScale * 100; _local2._yscale = this.pScale * 100; _local2._rotation = 230 + Math.RandomRange(0, 50); } }; this.init(); stop();
Symbol 17 MovieClip [mc.puff2] Frame 14
this.removeMovieClip();
Symbol 18 MovieClip [mc.puff] Frame 16
this.removeMovieClip();
Symbol 42 MovieClip [mc.frogman] Frame 1
this.init = function () { this.pNum = this._name.substr(4, 1); this.pMode = 0; this.pTargets = 3; this.pX = (this.pY = (this.pZ = 0)); this.pOldX = (this.pOldY = (this.pOldZ = 0)); this.pSpeedX = (this.pSpeedY = (this.pSpeedZ = 0)); this.pDestX = (this.pDestY = (this.pDestZ = 0)); this.pTime = 0; this.pPos = 0; this.pActive = false; this.pTakeOff = false; this.pTargetsPoints = new Array(); this.pTargetsPoints.push({x:100, y:95}); this.pTargetsPoints.push({x:100, y:357}); this.pTargetsPoints.push({x:330, y:95}); this.pTargetsPoints.push({x:273, y:166}); this.pTargetsPoints.push({x:222, y:335}); this.pTargetsPoints.push({x:583, y:347}); this.pTargetsPoints.push({x:332, y:326}); this.pTargetsPoints.push({x:583, y:95}); this.pTargetsPoints.push({x:421, y:95}); this.pTargetsPoints.push({x:443, y:344}); this.pTargetsPoints.push({x:152, y:292}); this.pTargetsPoints.push({x:281, y:272}); this.pTargetsPoints.push({x:517, y:312}); this.pTargetsPoints.push({x:113, y:237}); this.pTargetsPoints.push({x:211, y:237}); this.pTargetsPoints.push({x:563, y:267}); this.pTargetsPoints.push({x:452, y:279}); this.pTargetsPoints.push({x:379, y:269}); this.pTargetsPoints.push({x:324, y:226}); this.pTargetsPoints.push({x:416, y:218}); this.pTargetsPoints.push({x:508, y:220}); this.pTargetsPoints.push({x:166, y:166}); this.pTargetsPoints.push({x:367, y:161}); this.pTargetsPoints.push({x:461, y:159}); this.pTargetsPoints.push({x:566, y:181}); this.pTargetsPoints.push({x:515, y:125}); this.pTargetsPoints.push({x:216, y:112}); }; this.hitFrog = function () { if (this.pActive) { if (this.pMode == 2) { var _local3 = this._xmouse; var _local2 = this._ymouse; if ((Math.abs(_local3) < 50) && (Math.abs(_local2) < 64)) { return(true); } } } }; this.killFrog = function () { this._parent.posDone(this.pPos); this._parent.frogDone(this.pNum); this.pMode = 6; if (this.pX > 300) { this.pSpeedX = 10; } else { this.pSpeedX = -10; } this.pSpeedY = -10; this.pSpeedZ = 0; this.gotoAndPlay("die"); }; this.onEnterFrame = function () { if (this.pActive) { switch (this.pMode) { case 1 : this.pTime++; if (this.pTakeOff) { this.pX = Math.easeOutCubic(this.pTime, this.pOldX, this.pDestX - this.pOldX, 30); this.pY = Math.easeOutCubic(this.pTime, this.pOldY, this.pDestY - this.pOldY, 30); this.pZ = Math.easeOutCubic(this.pTime, this.pOldZ, this.pDestZ - this.pOldZ, 30); if (this.pTime < 8) { this.gotoAndPlay("up"); } } else { this.pX = Math.easeInOutQuad(this.pTime, this.pOldX, this.pDestX - this.pOldX, 30); this.pY = Math.easeInOutQuad(this.pTime, this.pOldY, this.pDestY - this.pOldY, 30); this.pZ = Math.easeInOutQuad(this.pTime, this.pOldZ, this.pDestZ - this.pOldZ, 30); } if (this.pTime == 30) { this.pTakeOff = false; this._parent.posDone(this.pPos); if ((Math.random() * 10) < 8) { this._parent._parent.missileCommand_mc.launchRocket(this.pX, this.pY, this.pZ, this.pX, this.pY, 0, 1); } else { var _local4 = this._parent._parent.robotboy_mc.pX; var _local3 = this._parent._parent.robotboy_mc.pY; this._parent._parent.missileCommand_mc.launchRocket(this.pX, this.pY, this.pZ, _local4, _local3, -40, 2); } if ((--this.pTargets) <= 0) { this.pMode = 5; this.pSpeedX = (this.pSpeedY = (this.pSpeedZ = 0)); this.gotoAndPlay("down"); } else { this.pPos = this._parent.getPos(); this.pDestX = this.pTargetsPoints[this.pPos].x; this.pDestY = this.pTargetsPoints[this.pPos].y; this.pDestZ = Math.RandomInt(80, 100); this.pOldX = this.pX; this.pOldY = this.pY; this.pOldZ = this.pZ; this.pTime = 0; this.pSpeedX = (this.pSpeedY = (this.pSpeedZ = 0)); if (this.pDestX < this.pOldX) { this.gotoAndPlay("left"); } else { this.gotoAndPlay("right"); } } } break; case 2 : this.pTime++; if (this.pTakeOff) { this.pX = Math.easeOutCubic(this.pTime, this.pOldX, this.pDestX - this.pOldX, this.pTimeLimit); this.pY = Math.easeOutCubic(this.pTime, this.pOldY, this.pDestY - this.pOldY, this.pTimeLimit); this.pZ = Math.easeOutCubic(this.pTime, this.pOldZ, this.pDestZ - this.pOldZ, this.pTimeLimit); if (this.pTime < 8) { this.gotoAndPlay("up"); } } else { this.pX = Math.easeInOutQuad(this.pTime, this.pOldX, this.pDestX - this.pOldX, this.pTimeLimit); this.pY = Math.easeInOutQuad(this.pTime, this.pOldY, this.pDestY - this.pOldY, this.pTimeLimit); this.pZ = Math.easeInOutQuad(this.pTime, this.pOldZ, this.pDestZ - this.pOldZ, this.pTimeLimit); } if (this.pTime == this.pTimeLimit) { this.pTakeOff = false; this._parent.posDone(this.pPos); this.pPos = this._parent.getPos(); this.pDestX = this.pTargetsPoints[this.pPos].x; this.pDestY = this.pTargetsPoints[this.pPos].y; this.pDestZ = Math.RandomInt(80, 100); this.pOldX = this.pX; this.pOldY = this.pY; this.pOldZ = this.pZ; this.pTime = 0; this.pSpeedX = (this.pSpeedY = (this.pSpeedZ = 0)); if (this.pDestX < this.pOldX) { this.gotoAndPlay("left"); } else { this.gotoAndPlay("right"); } } break; case 5 : this.pSpeedX = this.pSpeedX * 0.5; this.pSpeedY = this.pSpeedY + 1; this.pX = this.pX + this.pSpeedX; this.pY = this.pY + this.pSpeedY; break; case 6 : this.pSpeedY = this.pSpeedY + 1; this.pX = this.pX + this.pSpeedX; this.pY = this.pY + this.pSpeedY; this._rotation = this._rotation + this.pSpeedX; } _global.g3dObject.setXYZ(this.pX, this.pY, this.pZ); this._x = g3dObject.x; this._y = g3dObject.y; this._xscale = g3dObject.s; this._yscale = g3dObject.s; if (this._y > 450) { this._parent.frogDone(this.pNum); this.pActive = false; } } }; this.launchFrog = function (m) { this.pMode = m; switch (gLevel) { case 5 : case 4 : case 3 : this.pTimeLimit = 30; this.pTargets = 3; break; case 2 : this.pTimeLimit = 40; this.pTargets = 2; break; case 1 : this.pTimeLimit = 50; this.pTargets = 1; } this.pPos = this._parent.getPos(); this.pDestX = this.pTargetsPoints[this.pPos].x; this.pDestY = this.pTargetsPoints[this.pPos].y; this.pDestZ = Math.RandomInt(80, 100); this.pOldX = this.pTargetsPoints[this.pPos].x; this.pOldY = 450; this.pOldZ = 80; this.pX = this.pTargetsPoints[this.pPos].x; this.pY = 450; this.pZ = 80; this.pActive = true; this.pTime = 0; this.pTakeOff = true; this._rotation = 0; }; this.resetFrog = function () { this._parent.posDone(this.pPos); this.pMode = 5; }; this.init(); stop();
Symbol 42 MovieClip [mc.frogman] Frame 12
stop();
Symbol 42 MovieClip [mc.frogman] Frame 39
stop();
Symbol 42 MovieClip [mc.frogman] Frame 66
stop();
Symbol 42 MovieClip [mc.frogman] Frame 75
stop();
Symbol 42 MovieClip [mc.frogman] Frame 84
stop();
Symbol 73 MovieClip [mc.explosion] Frame 1
Symbol 73 MovieClip [mc.explosion] Frame 10
if (gScene == "game2") { this._parent._parent.frogMachine_mc.endScene(); }
Symbol 73 MovieClip [mc.explosion] Frame 26
this.removeMovieClip();
Symbol 78 MovieClip [mc.missile] Frame 1
this.init = function () { this.pNum = this._name.substr(7, 1); this.pType = 0; this.pX = (this.pY = (this.pZ = 0)); this.pSpeedX = (this.pSpeedY = (this.pSpeedZ = 0)); this.pFrog = 0; this.pAngle = Math.RandomRange(0, (Math.PI*2)); this.pSpin = (Math.RandomInt(0, 1) * 2) - 1; this.pSpiral = 0; this.pPerspective = 0.002; this.pSmoke = this._parent._parent[("smoke" + this.pNum) + "_mc"]; this.pActive = false; this.pSound1 = new Sound(this); this.pSound2 = new Sound(this); }; this.fireMissle = function (tX, tY, tZ, tX2, tY2, tZ2, tType, tFrog) { this.pX = tX; this.pY = tY; this.pZ = tZ; this.pSpeedX = (tX2 - tX) / 50; this.pSpeedY = (tY2 - tY) / 50; this.pSpeedZ = (tZ2 - tZ) / 50; this.pSpin = (Math.RandomInt(0, 1) * 2) - 1; this.pActive = true; if (this.pSpeedZ > 0) { this.pSmoke.startSmoke(1, 0); this.pSound1.attachSound("rb_missile.aiff"); this.pSound1.start(); } else { this.pSmoke.startSmoke(-1, 0); this._visible = true; this.pSound1.attachSound("launch.aiff"); this.pSound2.attachSound("missile.aiff"); this.pSound1.start(); this.pSound2.start(2, 1); } this.pType = tType; switch (tType) { case 1 : this.pSpiral = 1; this.gotoAndStop("typeA"); break; case 2 : this.pSpiral = 0.4; this.gotoAndStop("typeB"); break; case 3 : this.pSpiral = 0.1; this.pSpeedX = this.pSpeedX * 2; this.pSpeedY = this.pSpeedY * 2; this.pSpeedZ = this.pSpeedZ * 2; this.gotoAndStop("typeA"); break; case 4 : this.pFrog = ("frog" + tFrog) + "_mc"; this.pTime = 0; this.pSpiral = 0.1; this.gotoAndStop("typeA"); } }; this.resetMissile = function () { this.pSound1.stop(); this.pSound2.stop(); this.pSmoke.stopSmoke(); this.pActive = false; this._x = -100; this._y = -100; this._parent.rocketDone(this.pNum); }; this.detonate = function (tHit) { var _local2 = this._parent.attachMovie("mc.explosion", ("explode" + this.pNum) + "_mc", this.pNum + 10); var _local4 = this._x; var _local3 = this._y; _local2._x = _local4; _local2._y = _local3; _local2._rotation = Math.random() * 360; _local2._xscale = this._xscale; _local2._yscale = this._yscale; if (this._xscale > 95) { this._parent._parent.robotboy_mc.pushRobotboy(_local4, _local3); } else if (tHit) { this._parent._parent.score_mc.addScore(100); _local2._xscale = 65; _local2._yscale = 65; } this.pSound2.stop(); tNum = Math.ceil(Math.random() * 3); this.pSound1.attachSound(("bang" + tNum) + ".aiff"); this.pSound1.start(); }; this.onEnterFrame = function () { if (this.pActive) { if (this.pType < 3) { this.pAngle = this.pAngle + (0.2 * this.pSpin); var _local7 = Math.sin(this.pAngle); var _local9 = Math.cos(this.pAngle); this.pX = this.pX + this.pSpeedX; this.pY = this.pY + this.pSpeedY; this.pZ = this.pZ + this.pSpeedZ; var _local3 = 0; if (this.pZ < -40) { this.detonate(); this.pSmoke.stopSmoke(); this.pActive = false; this.pX = -1000; this.pZ = 0; this._parent.rocketDone(this.pNum); } else if (this.pZ > 75) { _local3 = (25 - (this.pZ - 75)) * 3; } else { _local3 = this.pZ; } } else { this.pAngle = this.pAngle + (0.2 * this.pSpin); var _local7 = Math.sin(this.pAngle); var _local9 = Math.cos(this.pAngle); var _local3 = 0; if (this.pType == 3) { this.pX = this.pX + this.pSpeedX; this.pY = this.pY + this.pSpeedY; this.pZ = this.pZ + this.pSpeedZ; if (this.pZ > 100) { this._parent._parent.score_mc.addScore(-50); this.pSmoke.stopSmoke(); this.pActive = false; this.pX = -1000; this.pZ = 0; this._parent.rocketDone(this.pNum); } else if (this.pZ > 25) { _local3 = 100 - ((this.pZ - 25) * 1.33); } else { _local3 = this.pZ * 4; } } else { var _local6 = this._parent._parent.frogMachine_mc[this.pFrog].pX; var _local5 = this._parent._parent.frogMachine_mc[this.pFrog].pY; var _local4 = this._parent._parent.frogMachine_mc[this.pFrog].pZ; this.pTime++; this.pX = Math.linearTween(this.pTime, 300, _local6 - 300, 20); this.pY = Math.linearTween(this.pTime, 350, _local5 - 350, 20); this.pZ = Math.linearTween(this.pTime, 0, _local4, 20); if (this.pTime == 20) { this.detonate(true); this.pSmoke.stopSmoke(); this.pActive = false; this.pX = -1000; this.pZ = 0; this._parent.rocketDone(this.pNum); this._parent._parent.frogMachine_mc[this.pFrog].killFrog(); } } } var _local10 = (_local9 * _local3) * this.pSpiral; var _local8 = (_local7 * _local3) * this.pSpiral; _global.g3dObject.setXYZ(this.pX + _local10, this.pY + _local8, this.pZ); this._x = g3dObject.x; this._y = g3dObject.y; this._xscale = g3dObject.s; this._yscale = g3dObject.s; this.fins_mc._rotation = (this.pAngle * 60) * this.pSpiral; this.pSmoke.setSmoke(this._x, this._y, g3dObject.s); } }; this.init(); stop();
Symbol 82 MovieClip [mc.battery] Frame 1
stop();
Symbol 126 MovieClip Frame 1
stop();
Symbol 133 Button
on (release) { this.gotoScene("flyout"); }
Symbol 142 MovieClip Frame 3
stop();
Symbol 142 MovieClip Frame 4
this.init = function () { this.pAngle = 0; this.onEnterFrame = function () { this._y = 205 + (Math.sin((this.pAngle = this.pAngle + 0.2)) * 3); }; }; this.init();
Symbol 142 MovieClip Frame 11
stop();
Symbol 142 MovieClip Frame 12
this.init = function () { this.pX = this._x; this.pY = this._y; this.pSpeedX = 0; this.pSpeedY = 0; this.pFlashCount = 0; this.pDamageSnd = new Sound(this); this.pDamageSnd.attachSound("rbHit_snd"); this.gotoAndStop("back2"); }; this.onEnterFrame = function () { this._parent.danger_mc.addDanger(0.23 - (gLevel * 0.03)); this._parent.score_mc.addScore(1); var _local2 = this._xmouse / 5; var _local3 = this._ymouse / 5; this.pX = this.pX + _local2; this.pY = this.pY + _local3; if (this.pX > 600) { this.pX = 600; } if (this.pX < 0) { this.pX = 0; } if (this.pY > 400) { this.pY = 400; } if (this.pY < 0) { this.pY = 0; } this._x = this.pX; this._y = this.pY; if (Math.abs(_local2) < 5) { this.gotoAndStop("back2"); this.pDir = "back2"; } else if (this.pDir == "back2") { if (_local2 > 0) { this.pDir = "bright"; this.gotoAndPlay(this.pDir); } else { this.pDir = "bleft"; this.gotoAndPlay(this.pDir); } } else if ((_local2 > 0) && (this.pDir != "bright")) { this.pDir = "bright"; this.gotoAndPlay(this.pDir); } else if ((_local2 < 0) && (this.pDir != "bleft")) { this.pDir = "bleft"; this.gotoAndPlay(this.pDir); } if ((--this.pFlashCount) == 0) { this._visible = true; } else if (this.pFlashCount > 0) { this._visible = !this._visible; } }; this.stopFlying = function () { this.pSound.stop(); }; this.pushRobotboy = function (x, y) { var _local4 = this._x - x; var _local3 = this._y - y; var _local5 = Math.sqrt((_local4 * _local4) + (_local3 * _local3)); var _local2 = 200 - Math.min(_local5, 200); _local2 = _local2 / 6; if (_local2 > 0) { this._parent.power_mc.takePower(-_local2); this._parent.score_mc.addScore((-_local2) * 2); this.pDamageSnd.start(); this.pFlashCount = 10; } }; this.init();
Symbol 142 MovieClip Frame 24
stop();
Symbol 142 MovieClip Frame 31
stop();
Symbol 142 MovieClip Frame 32
this.init = function () { this._parent.smoke1_mc.startSmoke(1, 10); this._parent.smoke2_mc.startSmoke(1, 10); this._x = 300; this._y = 350; if (gDistance < 90) { this._parent.jetski_mc._xscale = 0; this._parent.jetski_mc._yscale = 0; } else { this._parent.jetski_mc._visible = false; } this.pJetSnd = new Sound(this); this.pJetSnd.attachSound("fly_snd"); this.pJetSnd.start(0, 9999); }; this.onEnterFrame = function () { if (this._y > 240) { this._x = this._x + (this._xmouse / 10); this._y = this._y - 0.6; this._xscale = 100 - ((350 - this._y) / 20); this._yscale = 100 - ((350 - this._y) / 20); _global.gDistance = _global.gDistance + 0.11; if (gDistance < 90) { var _local3 = (this._y - 200) / 1.5; this._parent.jetski_mc._y = 128 - (_local3 * 0.2); this._parent.jetski_mc._xscale = 100 - _local3; this._parent.jetski_mc._yscale = 100 - _local3; } else if (gDistance > 100) { _global.gDistance = _global.gDistance + 0.8; this._x = this._x + ((300 - this._x) / 10); this._y = this._y - 7; this._xscale = 100 - ((350 - this._y) / 20); this._yscale = 100 - ((350 - this._y) / 20); } this._parent.distance_mc.setLevel(); this._parent.smoke1_mc.setSmoke(this._x - 20, this._y + 50, 120); this._parent.smoke2_mc.setSmoke(this._x + 20, this._y + 50, 120); this._parent.gameBG_mc.island_mc._xscale = 30 + gDistance; this._parent.gameBG_mc.island_mc._yscale = 30 + gDistance; this._parent.gameBG_mc.cloud1_mc._x = this._parent.gameBG_mc.cloud1_mc._x - 0.5; this._parent.gameBG_mc.cloud2_mc._x = this._parent.gameBG_mc.cloud2_mc._x + 0.5; } else if (gDistance > 100) { _global.gDistance = _global.gDistance + 1; this._x = this._x + ((300 - this._x) / 10); this._y = this._y - 9; this._xscale = this._xscale - 5; this._yscale = this._yscale - 5; this._parent.distance_mc.setLevel(); this._parent.smoke1_mc.setSmoke(this._x - 20, this._y + 50, 120); this._parent.smoke2_mc.setSmoke(this._x + 20, this._y + 50, 120); this._parent.gameBG_mc.island_mc._xscale = 30 + gDistance; this._parent.gameBG_mc.island_mc._xscale = 30 + gDistance; this._parent.gameBG_mc.cloud1_mc._x = this._parent.gameBG_mc.cloud1_mc._x - 0.5; this._parent.gameBG_mc.cloud2_mc._x = this._parent.gameBG_mc.cloud2_mc._x + 0.5; if (this._y < 100) { this.pJetSnd.stop(); this._parent.smoke1_mc.clearSmoke(); this._parent.smoke2_mc.clearSmoke(); this._parent.gotoScene("win"); } } else { this.pJetSnd.stop(); this._parent.smoke1_mc.clearSmoke(); this._parent.smoke2_mc.clearSmoke(); _global.gLevel++; this._parent.gotoScene("game1"); } }; this.init(); stop();
Symbol 142 MovieClip Frame 40
stop();
Symbol 153 MovieClip Frame 1
this.init = function () { this.pActive = false; this.pSide = 1; this.pX = 0; this.pY = 0; this.pPowerDrain = 8; this.pChargeSnd = new Sound(this); this.pChargeSnd.attachSound("charge_snd"); this.pMusic = new Sound(this); this.pMusic.attachSound("winloop_snd"); this.pMusic.setVolume(30); }; this.showVisor = function () { this.pActive = true; this.gotoAndStop(3); this.onEnterFrame = function () { this.pX = this._xmouse; this.pY = this._ymouse; this.crosshairX_mc._x = this.pX; this.crosshairX_mc._y = this.pY; this.crosshairY_mc._x = this.pX; this.crosshairY_mc._y = this.pY; this.target_mc._x = this.pX; this.target_mc._y = this.pY; if ((--this.pPowerDrain) == 0) { this._parent.power_mc.takePower(-0.5); this.pPowerDrain = 8; } }; this.pMusic.start(0, 9999); Mouse.hide(); }; this.hideVisor = function () { this.pMusic.stop(); this.pActive = false; delete this.onEnterFrame; Mouse.show(); this.gotoAndStop(2); }; this.onMouseDown = function () { if (this.pActive) { var _local5 = this._parent.frogMachine_mc.checkFrogs(this.pX, this.pY); if (_local5 == -1) { this.pSide = this.pSide * -1; _global.g3dObject.setScreenXYZ(this.pX, this.pY, 90); var _local4 = g3dObject.pX; var _local3 = g3dObject.pY; this._parent.missileCommand_mc.launchRocket(300, 350, 0, _local4, _local3, 100, 3); _global.gStats.misses++; } else { this._parent.missileCommand_mc.launchRocket(300 + (300 * this.pSide), 350, 0, _local4, _local3, 50, 4, _local5); _global.gStats.hits++; } this.pChargeSnd.start(); } }; this.init(); stop();
Symbol 161 MovieClip Frame 1
this.setLevel = function () { var _local2 = Math.min(530, 5.3 * gDistance); this.mask_mc._width = _local2; this.robHead_mc._x = _local2; }; this.setLevel(); stop();
Symbol 166 MovieClip Frame 1
this.init = function () { this.pCount = 0; this.pDelay = 20; this.pSound = new Sound(this); this.pSound.attachSound("danger_snd"); this.setLevel(); }; this.toggleSoundOff = function () { this.pSound.setVolume(0); }; this.toggleSoundOn = function () { this.pSound.setVolume(100); }; this.setLevel = function (tLevel) { var _local2 = 1.7 * (100 - gDanger); this.pLevel = Math.round(_local2 / 5) * 5; this.mask_mc._x = 170 - this.pLevel; this.mask_mc._width = this.pLevel; }; this.resetDanger = function () { _global.gDanger = 0; this.setLevel(); this.pSound.stop(); delete this.onEnterFrame; }; this.addDanger = function (tVal) { _global.gDanger = _global.gDanger + tVal; this.setLevel(); if (gDanger >= 100) { delete this.onEnterFrame; this._parent.missileCommand_mc.clearMissiles(); this._parent.frogMachine_mc.clearFrogs(); this._parent.robotboy_mc.stopFlying(); this._parent.gotoScene("goSuper"); } else if (gDanger > 80) { if (this.onEnterFrame == undefined) { this.onEnterFrame = this.flash; } tVal = 20 - (gDanger - 80); this.pDelay = Math.round(10 + (tVal / 2)); } else if (this.onEnterFrame != undefined) { delete this.onEnterFrame; } }; this.flash = function () { this.pCount = this.pCount % this.pDelay; this.dangerBlocks_mc._alpha = 100 - ((++this.pCount) * (50 / this.pDelay)); if (this.pCount == this.pDelay) { this.pSound.start(); } }; this.init(); stop();
Symbol 170 MovieClip Frame 1
this.init = function () { this.pCount = 0; this.pLevel = 0; this.pSound = new Sound(this); this.pSound.attachSound("battLow_snd"); this.setLevel(); }; this.toggleSoundOff = function () { this.pSound.setVolume(0); }; this.toggleSoundOn = function () { this.pSound.setVolume(100); }; this.setLevel = function (tLevel) { var _local2 = 1.2 * (100 - gPower); this.pLevel = Math.min(120, Math.round(_local2 / 5) * 5); if (this.pLevel < 60) { if (this.onEnterFrame != undefined) { delete this.onEnterFrame; } } this.mask_mc._x = 120 - this.pLevel; this.mask_mc._width = this.pLevel; }; this.takePower = function (tP) { _global.gPower = Math.min(_global.gPower + tP, 100); this.setLevel(); if (this.pLevel == 120) { delete this.onEnterFrame; this._parent.visor_mc.hideVisor(); this._parent.frogMachine_mc.clearFrogs(); this._parent.missileCommand_mc.clearMissiles(); this._parent.gotoScene("fall"); } else if (this.pLevel > 75) { if (this.onEnterFrame == undefined) { this.onEnterFrame = this.flash; } } }; this.flash = function () { this.pCount++; if (this.pCount >= 6) { this.pCount = 0; if (this.mask_mc._width == this.pLevel) { this.mask_mc._width = 120; this.mask_mc._x = 0; } else { this.pSound.start(); this.mask_mc._x = 120 - this.pLevel; this.mask_mc._width = this.pLevel; } } }; this.init(); stop();
Symbol 179 MovieClip Frame 1
this.setScore = function (tVal) { var _local5 = Math.round(tVal); var _local3 = new Array(); tVal = Math.floor(_local5 / 10000); _local3.push(tVal); _local5 = _local5 - (tVal * 10000); tVal = Math.floor(_local5 / 1000); _local3.push(tVal); _local5 = _local5 - (tVal * 1000); tVal = Math.floor(_local5 / 100); _local3.push(tVal); _local5 = _local5 - (tVal * 100); tVal = Math.floor(_local5 / 10); _local3.push(tVal); _local5 = _local5 - (tVal * 10); _local3.push(_local5); var _local2 = 0; while (_local2 < 5) { this[("num" + _local2) + "_mc"].digits_mc._y = _local3[_local2] * -20; _local2++; } }; this.addScore = function (tVal) { _global.gScore = _global.gScore + tVal; this.setScore(gScore); }; this.setScore(); stop();
Symbol 228 MovieClip Frame 1
stop();
Symbol 228 MovieClip Frame 66
this._parent.sceneDone();
Symbol 228 MovieClip Frame 67
this.gotoAndStop(1);
Symbol 228 MovieClip Frame 151
this._parent.sceneDone(); this.gotoAndStop(1);
Symbol 228 MovieClip Frame 178
this._parent.sceneDone(); this.gotoAndStop(1);
Symbol 228 MovieClip Frame 254
var pCount = 48; this.onEnterFrame = function () { if ((--this.pCount) < 0) { delete this.onEnterFrame; this._parent.sceneDone(); this.gotoAndStop(1); } }; stop();
Symbol 228 MovieClip Frame 299
var pCount = 48; this.onEnterFrame = function () { if ((--this.pCount) < 0) { delete this.onEnterFrame; this._parent.sceneDone(); this.gotoAndStop(1); } }; stop();
Symbol 259 Button
on (release) { var gname = "robotboy_tommytakeawayMT"; var gscore = _global.gScore; getURL ("index.php?act=Arcade&do=newscore", "_self", "POST"); }
Symbol 265 MovieClip Frame 2
this.showScores = function () { if (gScore > gBestScore) { _global.gBestScore = gScore; } this.fScore_mc.setScore(gScore); var _local3 = (gStats.hits + gStats.misses) / 100; this.aScore_mc.setScore((gStats.hits / _local3) * 100); this.bScore_mc.setScore(gBestScore); }; this.showScores(); stop();

Library Items

Symbol 85 GraphicUsed by:Timeline
Symbol 86 GraphicUsed by:87
Symbol 87 MovieClipUses:86Used by:Timeline
Symbol 88 GraphicUsed by:Timeline
Symbol 89 GraphicUsed by:Timeline
Symbol 90 GraphicUsed by:95
Symbol 91 FontUsed by:92 93 127 129 146 217 223 224 226 227 261 262 264
Symbol 92 TextUses:91Used by:95
Symbol 93 TextUses:91Used by:95
Symbol 94 GraphicUsed by:95 157 228
Symbol 15 Sound [battLow_snd]Used by:95 133
Symbol 95 ButtonUses:90 92 93 94 15Used by:96
Symbol 96 MovieClipUses:95Used by:Timeline
Symbol 97 GraphicUsed by:Timeline
Symbol 98 GraphicUsed by:Timeline
Symbol 99 GraphicUsed by:Timeline
Symbol 100 GraphicUsed by:Timeline
Symbol 101 GraphicUsed by:Timeline
Symbol 102 GraphicUsed by:Timeline
Symbol 103 GraphicUsed by:Timeline
Symbol 104 GraphicUsed by:216  Timeline
Symbol 105 GraphicUsed by:216  Timeline
Symbol 106 GraphicUsed by:Timeline
Symbol 107 GraphicUsed by:108
Symbol 108 MovieClipUses:107Used by:Timeline
Symbol 109 FontUsed by:110 180
Symbol 110 EditableTextUses:109Used by:111
Symbol 111 MovieClipUses:110Used by:Timeline
Symbol 112 GraphicUsed by:113
Symbol 113 MovieClipUses:112Used by:Timeline
Symbol 114 GraphicUsed by:115
Symbol 115 MovieClipUses:114Used by:Timeline
Symbol 83 GraphicUsed by:84
Symbol 84 MovieClip [mc.smoke]Uses:83Used by:Timeline
Symbol 1 Sound [winloop_snd]
Symbol 2 Sound [rbHit_snd]
Symbol 3 Sound [rb_missile.aiff]
Symbol 4 Sound [charge_snd]
Symbol 5 Sound [missile.aiff]
Symbol 6 Sound [fly_snd]
Symbol 7 Sound [intro_snd]
Symbol 8 Sound [launch.aiff]
Symbol 9 Sound [danger_snd]
Symbol 10 Sound [battCollect_snd]
Symbol 11 Sound [battMiss_snd]
Symbol 12 Sound [bang3.aiff]
Symbol 13 Sound [bang2.aiff]
Symbol 14 Sound [bang1.aiff]
Symbol 16 GraphicUsed by:17 18
Symbol 17 MovieClip [mc.puff2]Uses:16
Symbol 18 MovieClip [mc.puff]Uses:16
Symbol 19 BitmapUsed by:20
Symbol 20 GraphicUses:19Used by:23
Symbol 21 BitmapUsed by:22
Symbol 22 GraphicUses:21Used by:23
Symbol 23 MovieClipUses:20 22Used by:42 142 228
Symbol 24 GraphicUsed by:42
Symbol 25 GraphicUsed by:42
Symbol 26 GraphicUsed by:42
Symbol 27 GraphicUsed by:42
Symbol 28 GraphicUsed by:42
Symbol 29 GraphicUsed by:42
Symbol 30 GraphicUsed by:42
Symbol 31 GraphicUsed by:42
Symbol 32 GraphicUsed by:42
Symbol 33 GraphicUsed by:42
Symbol 34 GraphicUsed by:42
Symbol 35 GraphicUsed by:42
Symbol 36 GraphicUsed by:42
Symbol 37 GraphicUsed by:42
Symbol 38 GraphicUsed by:42
Symbol 39 GraphicUsed by:42
Symbol 40 GraphicUsed by:42
Symbol 41 GraphicUsed by:42
Symbol 42 MovieClip [mc.frogman]Uses:23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
Symbol 43 GraphicUsed by:73
Symbol 44 BitmapUsed by:45
Symbol 45 GraphicUses:44Used by:73
Symbol 46 BitmapUsed by:47
Symbol 47 GraphicUses:46Used by:73
Symbol 48 BitmapUsed by:49
Symbol 49 GraphicUses:48Used by:73
Symbol 50 GraphicUsed by:73
Symbol 51 BitmapUsed by:52
Symbol 52 GraphicUses:51Used by:73
Symbol 53 GraphicUsed by:73
Symbol 54 GraphicUsed by:73
Symbol 55 BitmapUsed by:56
Symbol 56 GraphicUses:55Used by:73
Symbol 57 GraphicUsed by:73
Symbol 58 GraphicUsed by:73
Symbol 59 BitmapUsed by:60
Symbol 60 GraphicUses:59Used by:73
Symbol 61 GraphicUsed by:73
Symbol 62 GraphicUsed by:73
Symbol 63 BitmapUsed by:64
Symbol 64 GraphicUses:63Used by:73
Symbol 65 BitmapUsed by:66
Symbol 66 GraphicUses:65Used by:73
Symbol 67 BitmapUsed by:68
Symbol 68 GraphicUses:67Used by:73
Symbol 69 BitmapUsed by:70
Symbol 70 GraphicUses:69Used by:73
Symbol 71 BitmapUsed by:72
Symbol 72 GraphicUses:71Used by:73
Symbol 73 MovieClip [mc.explosion]Uses:43 45 47 49 50 52 53 54 56 57 58 60 61 62 64 66 68 70 72
Symbol 74 GraphicUsed by:75
Symbol 75 MovieClipUses:74Used by:78
Symbol 76 GraphicUsed by:78
Symbol 77 GraphicUsed by:78
Symbol 78 MovieClip [mc.missile]Uses:75 76 77
Symbol 79 Graphic [gfx.wave]Used by:80
Symbol 80 MovieClip [gfx.wave]Uses:79
Symbol 81 GraphicUsed by:82
Symbol 82 MovieClip [mc.battery]Uses:81
Symbol 116 GraphicUsed by:126
Symbol 117 BitmapUsed by:118
Symbol 118 GraphicUses:117Used by:119
Symbol 119 MovieClipUses:118Used by:126
Symbol 120 GraphicUsed by:126
Symbol 121 GraphicUsed by:126
Symbol 122 GraphicUsed by:123
Symbol 123 MovieClipUses:122Used by:126
Symbol 124 GraphicUsed by:125
Symbol 125 MovieClipUses:124Used by:126
Symbol 126 MovieClipUses:116 119 120 121 123 125Used by:Timeline
Symbol 127 TextUses:91Used by:Timeline
Symbol 128 GraphicUsed by:130
Symbol 129 TextUses:91Used by:130
Symbol 130 MovieClipUses:128 129Used by:133
Symbol 131 GraphicUsed by:133 228
Symbol 132 SoundUsed by:133
Symbol 133 ButtonUses:130 131 15 132Used by:Timeline
Symbol 134 GraphicUsed by:142 228
Symbol 135 GraphicUsed by:142
Symbol 136 GraphicUsed by:142
Symbol 137 BitmapUsed by:138
Symbol 138 GraphicUses:137Used by:141
Symbol 139 BitmapUsed by:140
Symbol 140 GraphicUses:139Used by:141
Symbol 141 MovieClipUses:138 140Used by:142
Symbol 142 MovieClipUses:23 134 135 136 141Used by:Timeline
Symbol 143 GraphicUsed by:153  Timeline
Symbol 144 GraphicUsed by:153  Timeline
Symbol 145 GraphicUsed by:153  Timeline
Symbol 146 TextUses:91Used by:153
Symbol 147 GraphicUsed by:153
Symbol 148 GraphicUsed by:149
Symbol 149 MovieClipUses:148Used by:153
Symbol 150 GraphicUsed by:151
Symbol 151 MovieClipUses:150Used by:153
Symbol 152 GraphicUsed by:153
Symbol 153 MovieClipUses:146 147 149 151 152 143 144 145Used by:Timeline
Symbol 154 GraphicUsed by:Timeline
Symbol 155 GraphicUsed by:161
Symbol 156 GraphicUsed by:161
Symbol 157 MovieClipUses:94Used by:161 166 170
Symbol 158 GraphicUsed by:161
Symbol 159 GraphicUsed by:160
Symbol 160 MovieClipUses:159Used by:161
Symbol 161 MovieClipUses:155 156 157 158 160Used by:Timeline
Symbol 162 GraphicUsed by:Timeline
Symbol 163 GraphicUsed by:166
Symbol 164 GraphicUsed by:165
Symbol 165 MovieClipUses:164Used by:166
Symbol 166 MovieClipUses:163 165 157Used by:Timeline
Symbol 167 GraphicUsed by:170
Symbol 168 GraphicUsed by:169
Symbol 169 MovieClipUses:168Used by:170
Symbol 170 MovieClipUses:167 169 157Used by:Timeline
Symbol 171 BitmapUsed by:173
Symbol 172 BitmapUsed by:173
Symbol 173 GraphicUses:171 172Used by:Timeline
Symbol 174 GraphicUsed by:Timeline
Symbol 175 GraphicUsed by:178
Symbol 176 GraphicUsed by:177
Symbol 177 MovieClipUses:176Used by:178
Symbol 178 MovieClipUses:175 177Used by:179
Symbol 179 MovieClipUses:178Used by:265  Timeline
Symbol 180 EditableTextUses:109Used by:228
Symbol 181 BitmapUsed by:182
Symbol 182 GraphicUses:181Used by:189
Symbol 183 BitmapUsed by:184
Symbol 184 GraphicUses:183Used by:189
Symbol 185 BitmapUsed by:186
Symbol 186 GraphicUses:185Used by:189
Symbol 187 BitmapUsed by:188
Symbol 188 GraphicUses:187Used by:189
Symbol 189 MovieClipUses:182 184 186 188Used by:228
Symbol 190 GraphicUsed by:195
Symbol 191 GraphicUsed by:195
Symbol 192 GraphicUsed by:195
Symbol 193 GraphicUsed by:195
Symbol 194 GraphicUsed by:195
Symbol 195 MovieClipUses:190 191 192 193 194Used by:228
Symbol 196 BitmapUsed by:197
Symbol 197 GraphicUses:196Used by:228
Symbol 198 BitmapUsed by:199
Symbol 199 GraphicUses:198Used by:228
Symbol 200 GraphicUsed by:228
Symbol 201 BitmapUsed by:203
Symbol 202 BitmapUsed by:203
Symbol 203 GraphicUses:201 202Used by:228
Symbol 204 GraphicUsed by:228
Symbol 205 GraphicUsed by:228
Symbol 206 GraphicUsed by:228
Symbol 207 BitmapUsed by:208
Symbol 208 GraphicUses:207Used by:215
Symbol 209 BitmapUsed by:210
Symbol 210 GraphicUses:209Used by:215
Symbol 211 BitmapUsed by:212
Symbol 212 GraphicUses:211Used by:215
Symbol 213 BitmapUsed by:214
Symbol 214 GraphicUses:213Used by:215
Symbol 215 MovieClipUses:208 210 212 214Used by:228
Symbol 216 MovieClipUses:104 105Used by:228
Symbol 217 TextUses:91Used by:228
Symbol 218 SoundUsed by:228
Symbol 219 GraphicUsed by:221
Symbol 220 GraphicUsed by:221
Symbol 221 MovieClipUses:219 220Used by:222
Symbol 222 MovieClipUses:221Used by:228
Symbol 223 TextUses:91Used by:228
Symbol 224 TextUses:91Used by:228
Symbol 225 GraphicUsed by:228
Symbol 226 TextUses:91Used by:228
Symbol 227 TextUses:91Used by:228
Symbol 228 MovieClipUses:180 189 195 94 197 131 199 200 203 204 205 206 215 134 216 217 218 222 223 224 23 225 226 227 SS1Used by:Timeline
Symbol 229 SoundUsed by:Timeline
Symbol 230 BitmapUsed by:231
Symbol 231 GraphicUses:230Used by:238  Timeline
Symbol 232 BitmapUsed by:233
Symbol 233 GraphicUses:232Used by:238  Timeline
Symbol 234 BitmapUsed by:235
Symbol 235 GraphicUses:234Used by:238  Timeline
Symbol 236 BitmapUsed by:237
Symbol 237 GraphicUses:236Used by:238  Timeline
Symbol 238 MovieClipUses:231 233 235 237Used by:Timeline
Symbol 239 GraphicUsed by:241
Symbol 240 GraphicUsed by:241
Symbol 241 MovieClipUses:239 240Used by:254
Symbol 242 GraphicUsed by:245
Symbol 243 GraphicUsed by:245
Symbol 244 GraphicUsed by:245
Symbol 245 MovieClipUses:242 243 244Used by:254
Symbol 246 GraphicUsed by:249
Symbol 247 GraphicUsed by:249
Symbol 248 GraphicUsed by:249
Symbol 249 MovieClipUses:246 247 248Used by:254
Symbol 250 GraphicUsed by:253
Symbol 251 GraphicUsed by:253
Symbol 252 GraphicUsed by:253
Symbol 253 MovieClipUses:250 251 252Used by:254
Symbol 254 MovieClipUses:241 245 249 253Used by:Timeline
Symbol 257 BitmapUsed by:258
Symbol 258 GraphicUses:257Used by:259
Symbol 259 ButtonUses:258Used by:265
Symbol 260 GraphicUsed by:265
Symbol 261 TextUses:91Used by:265
Symbol 262 TextUses:91Used by:265
Symbol 263 GraphicUsed by:265
Symbol 264 TextUses:91Used by:265
Symbol 265 MovieClipUses:259 260 179 261 262 263 264Used by:Timeline
Streaming Sound 1Used by:Symbol 228 MovieClip

Instance Names

"startBtn_mc"Frame 1Symbol 96 MovieClip
"frogMachine_mc"Frame 1Symbol 108 MovieClip
"batteryFarm_mc"Frame 1Symbol 111 MovieClip
"smokeScreen_mc"Frame 1Symbol 113 MovieClip
"missileCommand_mc"Frame 1Symbol 115 MovieClip
"smoke1_mc"Frame 1Symbol 84 MovieClip [mc.smoke]
"smoke2_mc"Frame 1Symbol 84 MovieClip [mc.smoke]
"smoke3_mc"Frame 1Symbol 84 MovieClip [mc.smoke]
"smoke4_mc"Frame 1Symbol 84 MovieClip [mc.smoke]
"smoke0_mc"Frame 1Symbol 84 MovieClip [mc.smoke]
"gameBG_mc"Frame 16Symbol 126 MovieClip
"robotboy_mc"Frame 16Symbol 142 MovieClip
"visor_mc"Frame 16Symbol 153 MovieClip
"distance_mc"Frame 16Symbol 161 MovieClip
"danger_mc"Frame 16Symbol 166 MovieClip
"power_mc"Frame 16Symbol 170 MovieClip
"score_mc"Frame 16Symbol 179 MovieClip
"cutScene_mc"Frame 16Symbol 228 MovieClip
"jetski_mc"Frame 31Symbol 238 MovieClip
"smokeScreen_mc"Frame 31Symbol 113 MovieClip
"smokeScreen_mc"Frame 53Symbol 113 MovieClip
"missileCommand_mc"Frame 53Symbol 115 MovieClip
"missileCommand_mc"Frame 78Symbol 115 MovieClip
"scoreBoard_mc"Frame 89Symbol 265 MovieClip
"fins_mc"Symbol 78 MovieClip [mc.missile] Frame 1Symbol 75 MovieClip
"island_mc"Symbol 126 MovieClip Frame 1Symbol 119 MovieClip
"cloud1_mc"Symbol 126 MovieClip Frame 1Symbol 123 MovieClip
"cloud2_mc"Symbol 126 MovieClip Frame 1Symbol 125 MovieClip
"crosshairX_mc"Symbol 153 MovieClip Frame 3Symbol 149 MovieClip
"crosshairY_mc"Symbol 153 MovieClip Frame 3Symbol 149 MovieClip
"target_mc"Symbol 153 MovieClip Frame 3Symbol 151 MovieClip
"mask_mc"Symbol 161 MovieClip Frame 1Symbol 157 MovieClip
"robHead_mc"Symbol 161 MovieClip Frame 1Symbol 160 MovieClip
"dangerBlocks_mc"Symbol 166 MovieClip Frame 1Symbol 165 MovieClip
"mask_mc"Symbol 166 MovieClip Frame 1Symbol 157 MovieClip
"powerBlocks_mc"Symbol 170 MovieClip Frame 1Symbol 169 MovieClip
"mask_mc"Symbol 170 MovieClip Frame 1Symbol 157 MovieClip
"digits_mc"Symbol 178 MovieClip Frame 1Symbol 177 MovieClip
"num0_mc"Symbol 179 MovieClip Frame 1Symbol 178 MovieClip
"num1_mc"Symbol 179 MovieClip Frame 1Symbol 178 MovieClip
"num2_mc"Symbol 179 MovieClip Frame 1Symbol 178 MovieClip
"num3_mc"Symbol 179 MovieClip Frame 1Symbol 178 MovieClip
"num4_mc"Symbol 179 MovieClip Frame 1Symbol 178 MovieClip
"fScore_mc"Symbol 265 MovieClip Frame 1Symbol 179 MovieClip
"aScore_mc"Symbol 265 MovieClip Frame 1Symbol 179 MovieClip
"bScore_mc"Symbol 265 MovieClip Frame 1Symbol 179 MovieClip

Special Tags

Protect (24)Timeline Frame 10 bytes ""
ExportAssets (56)Timeline Frame 1Symbol 1 as "winloop_snd"
ExportAssets (56)Timeline Frame 1Symbol 2 as "rbHit_snd"
ExportAssets (56)Timeline Frame 1Symbol 3 as "rb_missile.aiff"
ExportAssets (56)Timeline Frame 1Symbol 4 as "charge_snd"
ExportAssets (56)Timeline Frame 1Symbol 5 as "missile.aiff"
ExportAssets (56)Timeline Frame 1Symbol 6 as "fly_snd"
ExportAssets (56)Timeline Frame 1Symbol 7 as "intro_snd"
ExportAssets (56)Timeline Frame 1Symbol 8 as "launch.aiff"
ExportAssets (56)Timeline Frame 1Symbol 9 as "danger_snd"
ExportAssets (56)Timeline Frame 1Symbol 10 as "battCollect_snd"
ExportAssets (56)Timeline Frame 1Symbol 11 as "battMiss_snd"
ExportAssets (56)Timeline Frame 1Symbol 12 as "bang3.aiff"
ExportAssets (56)Timeline Frame 1Symbol 13 as "bang2.aiff"
ExportAssets (56)Timeline Frame 1Symbol 14 as "bang1.aiff"
ExportAssets (56)Timeline Frame 1Symbol 15 as "battLow_snd"
ExportAssets (56)Timeline Frame 1Symbol 17 as "mc.puff2"
ExportAssets (56)Timeline Frame 1Symbol 18 as "mc.puff"
ExportAssets (56)Timeline Frame 1Symbol 42 as "mc.frogman"
ExportAssets (56)Timeline Frame 1Symbol 73 as "mc.explosion"
ExportAssets (56)Timeline Frame 1Symbol 78 as "mc.missile"
ExportAssets (56)Timeline Frame 1Symbol 79 as "gfx.wave"
ExportAssets (56)Timeline Frame 1Symbol 79 as "gfx.wave"
ExportAssets (56)Timeline Frame 1Symbol 80 as "gfx.wave"
ExportAssets (56)Timeline Frame 1Symbol 82 as "mc.battery"
ExportAssets (56)Timeline Frame 1Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 1Symbol 15 as "battLow_snd"
ExportAssets (56)Timeline Frame 1Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 1Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 1Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 1Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 1Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 2Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 2Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 2Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 2Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 2Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 3Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 3Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 3Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 3Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 3Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 4Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 4Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 4Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 4Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 4Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 5Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 5Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 5Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 5Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 5Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 6Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 6Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 6Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 6Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 6Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 7Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 7Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 7Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 7Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 7Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 8Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 8Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 8Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 8Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 8Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 9Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 9Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 9Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 9Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 9Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 10Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 10Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 10Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 10Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 10Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 11Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 11Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 11Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 11Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 11Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 12Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 12Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 12Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 12Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 12Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 13Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 13Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 13Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 13Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 13Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 14Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 14Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 14Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 14Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 14Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 15Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 15Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 15Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 15Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 15Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 16Symbol 15 as "battLow_snd"
ExportAssets (56)Timeline Frame 16Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 16Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 16Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 16Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 16Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 17Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 17Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 17Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 17Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 17Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 18Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 18Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 18Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 18Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 18Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 19Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 19Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 19Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 19Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 19Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 20Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 20Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 20Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 20Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 20Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 21Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 21Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 21Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 21Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 21Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 22Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 22Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 22Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 22Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 22Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 23Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 23Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 23Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 23Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 23Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 24Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 24Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 24Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 24Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 24Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 25Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 25Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 25Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 25Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 25Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 26Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 26Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 26Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 26Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 26Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 27Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 27Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 27Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 27Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 27Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 28Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 28Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 28Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 28Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 28Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 29Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 29Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 29Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 29Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 29Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 30Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 30Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 30Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 30Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 30Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 31Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 31Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 31Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 31Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 31Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 32Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 32Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 32Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 32Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 32Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 33Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 33Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 33Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 33Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 33Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 34Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 34Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 34Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 34Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 34Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 35Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 35Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 35Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 35Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 35Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 36Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 36Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 36Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 36Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 36Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 37Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 37Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 37Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 37Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 37Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 38Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 38Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 38Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 38Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 38Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 39Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 39Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 39Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 39Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 39Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 40Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 40Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 40Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 40Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 40Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 41Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 41Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 41Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 41Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 41Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 42Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 42Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 42Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 42Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 42Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 43Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 43Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 43Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 43Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 43Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 44Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 44Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 44Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 44Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 44Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 45Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 45Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 45Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 45Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 45Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 46Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 46Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 46Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 46Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 46Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 47Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 47Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 47Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 47Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 47Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 48Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 48Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 48Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 48Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 48Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 49Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 49Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 49Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 49Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 49Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 50Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 50Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 50Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 50Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 50Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 51Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 51Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 51Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 51Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 51Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 52Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 52Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 52Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 52Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 52Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 53Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 53Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 53Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 53Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 53Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 54Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 54Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 54Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 54Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 54Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 55Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 55Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 55Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 55Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 55Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 56Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 56Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 56Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 56Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 56Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 57Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 57Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 57Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 57Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 57Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 58Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 58Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 58Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 58Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 58Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 59Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 59Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 59Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 59Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 59Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 60Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 60Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 60Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 60Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 60Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 61Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 61Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 61Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 61Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 61Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 62Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 62Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 62Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 62Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 62Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 63Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 63Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 63Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 63Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 63Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 64Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 64Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 64Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 64Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 64Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 65Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 65Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 65Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 65Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 65Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 66Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 66Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 66Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 66Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 66Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 67Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 67Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 67Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 67Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 67Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 68Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 68Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 68Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 68Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 68Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 69Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 69Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 69Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 69Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 69Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 70Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 70Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 70Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 70Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 70Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 71Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 71Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 71Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 71Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 71Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 72Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 72Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 72Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 72Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 72Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 73Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 73Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 73Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 73Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 73Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 74Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 74Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 74Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 74Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 74Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 75Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 75Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 75Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 75Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 75Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 76Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 76Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 76Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 76Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 76Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 77Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 77Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 77Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 77Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 77Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 78Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 78Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 78Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 78Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 78Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 79Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 79Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 79Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 79Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 79Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 80Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 80Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 80Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 80Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 80Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 81Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 81Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 81Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 81Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 81Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 82Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 82Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 82Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 82Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 82Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 83Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 83Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 83Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 83Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 83Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 84Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 84Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 84Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 84Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 84Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 85Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 85Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 85Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 85Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 85Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 86Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 86Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 86Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 86Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 86Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 87Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 87Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 87Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 87Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 87Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 88Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 88Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 88Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 88Symbol 84 as "mc.smoke"
ExportAssets (56)Timeline Frame 88Symbol 84 as "mc.smoke"

Labels

"menu"Frame 3
"instructions"Frame 16
"flyout"Frame 31
"game1"Frame 53
"cutScene"Frame 70
"game2"Frame 78
"scores"Frame 89
"up"Symbol 42 MovieClip [mc.frogman] Frame 3
"left"Symbol 42 MovieClip [mc.frogman] Frame 13
"right"Symbol 42 MovieClip [mc.frogman] Frame 40
"down"Symbol 42 MovieClip [mc.frogman] Frame 67
"die"Symbol 42 MovieClip [mc.frogman] Frame 76
"typeA"Symbol 78 MovieClip [mc.missile] Frame 2
"typeB"Symbol 78 MovieClip [mc.missile] Frame 8
"front"Symbol 142 MovieClip Frame 4
"back"Symbol 142 MovieClip Frame 12
"back2"Symbol 142 MovieClip Frame 13
"bright"Symbol 142 MovieClip Frame 18
"bleft"Symbol 142 MovieClip Frame 25
"out"Symbol 142 MovieClip Frame 32
"frogHit"Symbol 228 MovieClip Frame 2
"goSuper"Symbol 228 MovieClip Frame 68
"goDown"Symbol 228 MovieClip Frame 152
"fall"Symbol 228 MovieClip Frame 179
"lose"Symbol 228 MovieClip Frame 230
"win"Symbol 228 MovieClip Frame 255




http://swfchan.com/9/42439/info.shtml
Created: 9/5 -2019 23:03:18 Last modified: 9/5 -2019 23:03:18 Server time: 29/04 -2024 09:10:15