STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229595 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2595 · P5190 |
This is the info page for Flash #42439 |
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 1function 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 3if (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 30var fakeVar = new Date().getTime(); "tracker.swf?" + fakeVar; this.robotboy_mc.gotoAndPlay("front"); stop();Frame 31this.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 52this.batteryFarm_mc.startLaunch(); stop();Frame 53this.danger_mc.toggleSoundOn(); this.robotboy_mc.gotoAndPlay("back");Frame 69this.frogMachine_mc.startLaunch(); stop();Frame 70this.power_mc.toggleSoundOff(); this.danger_mc.resetDanger();Frame 77stop();Frame 78this.power_mc.toggleSoundOn(); this.visor_mc.showVisor();Frame 88this.frogMachine_mc.startLaunch(); stop();Frame 94stop();Symbol 95 Buttonon (release) { this._parent.gotoScene("instructions"); }Symbol 108 MovieClip Frame 1this.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 1this.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 1this.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 1this.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 1this.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 14this.removeMovieClip();Symbol 18 MovieClip [mc.puff] Frame 16this.removeMovieClip();Symbol 42 MovieClip [mc.frogman] Frame 1this.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 12stop();Symbol 42 MovieClip [mc.frogman] Frame 39stop();Symbol 42 MovieClip [mc.frogman] Frame 66stop();Symbol 42 MovieClip [mc.frogman] Frame 75stop();Symbol 42 MovieClip [mc.frogman] Frame 84stop();Symbol 73 MovieClip [mc.explosion] Frame 1Symbol 73 MovieClip [mc.explosion] Frame 10if (gScene == "game2") { this._parent._parent.frogMachine_mc.endScene(); }Symbol 73 MovieClip [mc.explosion] Frame 26this.removeMovieClip();Symbol 78 MovieClip [mc.missile] Frame 1this.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 1stop();Symbol 126 MovieClip Frame 1stop();Symbol 133 Buttonon (release) { this.gotoScene("flyout"); }Symbol 142 MovieClip Frame 3stop();Symbol 142 MovieClip Frame 4this.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 11stop();Symbol 142 MovieClip Frame 12this.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 24stop();Symbol 142 MovieClip Frame 31stop();Symbol 142 MovieClip Frame 32this.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 40stop();Symbol 153 MovieClip Frame 1this.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 1this.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 1this.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 1this.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 1this.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 1stop();Symbol 228 MovieClip Frame 66this._parent.sceneDone();Symbol 228 MovieClip Frame 67this.gotoAndStop(1);Symbol 228 MovieClip Frame 151this._parent.sceneDone(); this.gotoAndStop(1);Symbol 228 MovieClip Frame 178this._parent.sceneDone(); this.gotoAndStop(1);Symbol 228 MovieClip Frame 254var pCount = 48; this.onEnterFrame = function () { if ((--this.pCount) < 0) { delete this.onEnterFrame; this._parent.sceneDone(); this.gotoAndStop(1); } }; stop();Symbol 228 MovieClip Frame 299var pCount = 48; this.onEnterFrame = function () { if ((--this.pCount) < 0) { delete this.onEnterFrame; this._parent.sceneDone(); this.gotoAndStop(1); } }; stop();Symbol 259 Buttonon (release) { var gname = "robotboy_tommytakeawayMT"; var gscore = _global.gScore; getURL ("index.php?act=Arcade&do=newscore", "_self", "POST"); }Symbol 265 MovieClip Frame 2this.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 Graphic | Used by:Timeline | |
Symbol 86 Graphic | Used by:87 | |
Symbol 87 MovieClip | Uses:86 | Used by:Timeline |
Symbol 88 Graphic | Used by:Timeline | |
Symbol 89 Graphic | Used by:Timeline | |
Symbol 90 Graphic | Used by:95 | |
Symbol 91 Font | Used by:92 93 127 129 146 217 223 224 226 227 261 262 264 | |
Symbol 92 Text | Uses:91 | Used by:95 |
Symbol 93 Text | Uses:91 | Used by:95 |
Symbol 94 Graphic | Used by:95 157 228 | |
Symbol 15 Sound [battLow_snd] | Used by:95 133 | |
Symbol 95 Button | Uses:90 92 93 94 15 | Used by:96 |
Symbol 96 MovieClip | Uses:95 | Used by:Timeline |
Symbol 97 Graphic | Used by:Timeline | |
Symbol 98 Graphic | Used by:Timeline | |
Symbol 99 Graphic | Used by:Timeline | |
Symbol 100 Graphic | Used by:Timeline | |
Symbol 101 Graphic | Used by:Timeline | |
Symbol 102 Graphic | Used by:Timeline | |
Symbol 103 Graphic | Used by:Timeline | |
Symbol 104 Graphic | Used by:216 Timeline | |
Symbol 105 Graphic | Used by:216 Timeline | |
Symbol 106 Graphic | Used by:Timeline | |
Symbol 107 Graphic | Used by:108 | |
Symbol 108 MovieClip | Uses:107 | Used by:Timeline |
Symbol 109 Font | Used by:110 180 | |
Symbol 110 EditableText | Uses:109 | Used by:111 |
Symbol 111 MovieClip | Uses:110 | Used by:Timeline |
Symbol 112 Graphic | Used by:113 | |
Symbol 113 MovieClip | Uses:112 | Used by:Timeline |
Symbol 114 Graphic | Used by:115 | |
Symbol 115 MovieClip | Uses:114 | Used by:Timeline |
Symbol 83 Graphic | Used by:84 | |
Symbol 84 MovieClip [mc.smoke] | Uses:83 | Used 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 Graphic | Used by:17 18 | |
Symbol 17 MovieClip [mc.puff2] | Uses:16 | |
Symbol 18 MovieClip [mc.puff] | Uses:16 | |
Symbol 19 Bitmap | Used by:20 | |
Symbol 20 Graphic | Uses:19 | Used by:23 |
Symbol 21 Bitmap | Used by:22 | |
Symbol 22 Graphic | Uses:21 | Used by:23 |
Symbol 23 MovieClip | Uses:20 22 | Used by:42 142 228 |
Symbol 24 Graphic | Used by:42 | |
Symbol 25 Graphic | Used by:42 | |
Symbol 26 Graphic | Used by:42 | |
Symbol 27 Graphic | Used by:42 | |
Symbol 28 Graphic | Used by:42 | |
Symbol 29 Graphic | Used by:42 | |
Symbol 30 Graphic | Used by:42 | |
Symbol 31 Graphic | Used by:42 | |
Symbol 32 Graphic | Used by:42 | |
Symbol 33 Graphic | Used by:42 | |
Symbol 34 Graphic | Used by:42 | |
Symbol 35 Graphic | Used by:42 | |
Symbol 36 Graphic | Used by:42 | |
Symbol 37 Graphic | Used by:42 | |
Symbol 38 Graphic | Used by:42 | |
Symbol 39 Graphic | Used by:42 | |
Symbol 40 Graphic | Used by:42 | |
Symbol 41 Graphic | Used 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 Graphic | Used by:73 | |
Symbol 44 Bitmap | Used by:45 | |
Symbol 45 Graphic | Uses:44 | Used by:73 |
Symbol 46 Bitmap | Used by:47 | |
Symbol 47 Graphic | Uses:46 | Used by:73 |
Symbol 48 Bitmap | Used by:49 | |
Symbol 49 Graphic | Uses:48 | Used by:73 |
Symbol 50 Graphic | Used by:73 | |
Symbol 51 Bitmap | Used by:52 | |
Symbol 52 Graphic | Uses:51 | Used by:73 |
Symbol 53 Graphic | Used by:73 | |
Symbol 54 Graphic | Used by:73 | |
Symbol 55 Bitmap | Used by:56 | |
Symbol 56 Graphic | Uses:55 | Used by:73 |
Symbol 57 Graphic | Used by:73 | |
Symbol 58 Graphic | Used by:73 | |
Symbol 59 Bitmap | Used by:60 | |
Symbol 60 Graphic | Uses:59 | Used by:73 |
Symbol 61 Graphic | Used by:73 | |
Symbol 62 Graphic | Used by:73 | |
Symbol 63 Bitmap | Used by:64 | |
Symbol 64 Graphic | Uses:63 | Used by:73 |
Symbol 65 Bitmap | Used by:66 | |
Symbol 66 Graphic | Uses:65 | Used by:73 |
Symbol 67 Bitmap | Used by:68 | |
Symbol 68 Graphic | Uses:67 | Used by:73 |
Symbol 69 Bitmap | Used by:70 | |
Symbol 70 Graphic | Uses:69 | Used by:73 |
Symbol 71 Bitmap | Used by:72 | |
Symbol 72 Graphic | Uses:71 | Used 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 Graphic | Used by:75 | |
Symbol 75 MovieClip | Uses:74 | Used by:78 |
Symbol 76 Graphic | Used by:78 | |
Symbol 77 Graphic | Used 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 Graphic | Used by:82 | |
Symbol 82 MovieClip [mc.battery] | Uses:81 | |
Symbol 116 Graphic | Used by:126 | |
Symbol 117 Bitmap | Used by:118 | |
Symbol 118 Graphic | Uses:117 | Used by:119 |
Symbol 119 MovieClip | Uses:118 | Used by:126 |
Symbol 120 Graphic | Used by:126 | |
Symbol 121 Graphic | Used by:126 | |
Symbol 122 Graphic | Used by:123 | |
Symbol 123 MovieClip | Uses:122 | Used by:126 |
Symbol 124 Graphic | Used by:125 | |
Symbol 125 MovieClip | Uses:124 | Used by:126 |
Symbol 126 MovieClip | Uses:116 119 120 121 123 125 | Used by:Timeline |
Symbol 127 Text | Uses:91 | Used by:Timeline |
Symbol 128 Graphic | Used by:130 | |
Symbol 129 Text | Uses:91 | Used by:130 |
Symbol 130 MovieClip | Uses:128 129 | Used by:133 |
Symbol 131 Graphic | Used by:133 228 | |
Symbol 132 Sound | Used by:133 | |
Symbol 133 Button | Uses:130 131 15 132 | Used by:Timeline |
Symbol 134 Graphic | Used by:142 228 | |
Symbol 135 Graphic | Used by:142 | |
Symbol 136 Graphic | Used by:142 | |
Symbol 137 Bitmap | Used by:138 | |
Symbol 138 Graphic | Uses:137 | Used by:141 |
Symbol 139 Bitmap | Used by:140 | |
Symbol 140 Graphic | Uses:139 | Used by:141 |
Symbol 141 MovieClip | Uses:138 140 | Used by:142 |
Symbol 142 MovieClip | Uses:23 134 135 136 141 | Used by:Timeline |
Symbol 143 Graphic | Used by:153 Timeline | |
Symbol 144 Graphic | Used by:153 Timeline | |
Symbol 145 Graphic | Used by:153 Timeline | |
Symbol 146 Text | Uses:91 | Used by:153 |
Symbol 147 Graphic | Used by:153 | |
Symbol 148 Graphic | Used by:149 | |
Symbol 149 MovieClip | Uses:148 | Used by:153 |
Symbol 150 Graphic | Used by:151 | |
Symbol 151 MovieClip | Uses:150 | Used by:153 |
Symbol 152 Graphic | Used by:153 | |
Symbol 153 MovieClip | Uses:146 147 149 151 152 143 144 145 | Used by:Timeline |
Symbol 154 Graphic | Used by:Timeline | |
Symbol 155 Graphic | Used by:161 | |
Symbol 156 Graphic | Used by:161 | |
Symbol 157 MovieClip | Uses:94 | Used by:161 166 170 |
Symbol 158 Graphic | Used by:161 | |
Symbol 159 Graphic | Used by:160 | |
Symbol 160 MovieClip | Uses:159 | Used by:161 |
Symbol 161 MovieClip | Uses:155 156 157 158 160 | Used by:Timeline |
Symbol 162 Graphic | Used by:Timeline | |
Symbol 163 Graphic | Used by:166 | |
Symbol 164 Graphic | Used by:165 | |
Symbol 165 MovieClip | Uses:164 | Used by:166 |
Symbol 166 MovieClip | Uses:163 165 157 | Used by:Timeline |
Symbol 167 Graphic | Used by:170 | |
Symbol 168 Graphic | Used by:169 | |
Symbol 169 MovieClip | Uses:168 | Used by:170 |
Symbol 170 MovieClip | Uses:167 169 157 | Used by:Timeline |
Symbol 171 Bitmap | Used by:173 | |
Symbol 172 Bitmap | Used by:173 | |
Symbol 173 Graphic | Uses:171 172 | Used by:Timeline |
Symbol 174 Graphic | Used by:Timeline | |
Symbol 175 Graphic | Used by:178 | |
Symbol 176 Graphic | Used by:177 | |
Symbol 177 MovieClip | Uses:176 | Used by:178 |
Symbol 178 MovieClip | Uses:175 177 | Used by:179 |
Symbol 179 MovieClip | Uses:178 | Used by:265 Timeline |
Symbol 180 EditableText | Uses:109 | Used by:228 |
Symbol 181 Bitmap | Used by:182 | |
Symbol 182 Graphic | Uses:181 | Used by:189 |
Symbol 183 Bitmap | Used by:184 | |
Symbol 184 Graphic | Uses:183 | Used by:189 |
Symbol 185 Bitmap | Used by:186 | |
Symbol 186 Graphic | Uses:185 | Used by:189 |
Symbol 187 Bitmap | Used by:188 | |
Symbol 188 Graphic | Uses:187 | Used by:189 |
Symbol 189 MovieClip | Uses:182 184 186 188 | Used by:228 |
Symbol 190 Graphic | Used by:195 | |
Symbol 191 Graphic | Used by:195 | |
Symbol 192 Graphic | Used by:195 | |
Symbol 193 Graphic | Used by:195 | |
Symbol 194 Graphic | Used by:195 | |
Symbol 195 MovieClip | Uses:190 191 192 193 194 | Used by:228 |
Symbol 196 Bitmap | Used by:197 | |
Symbol 197 Graphic | Uses:196 | Used by:228 |
Symbol 198 Bitmap | Used by:199 | |
Symbol 199 Graphic | Uses:198 | Used by:228 |
Symbol 200 Graphic | Used by:228 | |
Symbol 201 Bitmap | Used by:203 | |
Symbol 202 Bitmap | Used by:203 | |
Symbol 203 Graphic | Uses:201 202 | Used by:228 |
Symbol 204 Graphic | Used by:228 | |
Symbol 205 Graphic | Used by:228 | |
Symbol 206 Graphic | Used by:228 | |
Symbol 207 Bitmap | Used by:208 | |
Symbol 208 Graphic | Uses:207 | Used by:215 |
Symbol 209 Bitmap | Used by:210 | |
Symbol 210 Graphic | Uses:209 | Used by:215 |
Symbol 211 Bitmap | Used by:212 | |
Symbol 212 Graphic | Uses:211 | Used by:215 |
Symbol 213 Bitmap | Used by:214 | |
Symbol 214 Graphic | Uses:213 | Used by:215 |
Symbol 215 MovieClip | Uses:208 210 212 214 | Used by:228 |
Symbol 216 MovieClip | Uses:104 105 | Used by:228 |
Symbol 217 Text | Uses:91 | Used by:228 |
Symbol 218 Sound | Used by:228 | |
Symbol 219 Graphic | Used by:221 | |
Symbol 220 Graphic | Used by:221 | |
Symbol 221 MovieClip | Uses:219 220 | Used by:222 |
Symbol 222 MovieClip | Uses:221 | Used by:228 |
Symbol 223 Text | Uses:91 | Used by:228 |
Symbol 224 Text | Uses:91 | Used by:228 |
Symbol 225 Graphic | Used by:228 | |
Symbol 226 Text | Uses:91 | Used by:228 |
Symbol 227 Text | Uses:91 | Used by:228 |
Symbol 228 MovieClip | Uses:180 189 195 94 197 131 199 200 203 204 205 206 215 134 216 217 218 222 223 224 23 225 226 227 SS1 | Used by:Timeline |
Symbol 229 Sound | Used by:Timeline | |
Symbol 230 Bitmap | Used by:231 | |
Symbol 231 Graphic | Uses:230 | Used by:238 Timeline |
Symbol 232 Bitmap | Used by:233 | |
Symbol 233 Graphic | Uses:232 | Used by:238 Timeline |
Symbol 234 Bitmap | Used by:235 | |
Symbol 235 Graphic | Uses:234 | Used by:238 Timeline |
Symbol 236 Bitmap | Used by:237 | |
Symbol 237 Graphic | Uses:236 | Used by:238 Timeline |
Symbol 238 MovieClip | Uses:231 233 235 237 | Used by:Timeline |
Symbol 239 Graphic | Used by:241 | |
Symbol 240 Graphic | Used by:241 | |
Symbol 241 MovieClip | Uses:239 240 | Used by:254 |
Symbol 242 Graphic | Used by:245 | |
Symbol 243 Graphic | Used by:245 | |
Symbol 244 Graphic | Used by:245 | |
Symbol 245 MovieClip | Uses:242 243 244 | Used by:254 |
Symbol 246 Graphic | Used by:249 | |
Symbol 247 Graphic | Used by:249 | |
Symbol 248 Graphic | Used by:249 | |
Symbol 249 MovieClip | Uses:246 247 248 | Used by:254 |
Symbol 250 Graphic | Used by:253 | |
Symbol 251 Graphic | Used by:253 | |
Symbol 252 Graphic | Used by:253 | |
Symbol 253 MovieClip | Uses:250 251 252 | Used by:254 |
Symbol 254 MovieClip | Uses:241 245 249 253 | Used by:Timeline |
Symbol 257 Bitmap | Used by:258 | |
Symbol 258 Graphic | Uses:257 | Used by:259 |
Symbol 259 Button | Uses:258 | Used by:265 |
Symbol 260 Graphic | Used by:265 | |
Symbol 261 Text | Uses:91 | Used by:265 |
Symbol 262 Text | Uses:91 | Used by:265 |
Symbol 263 Graphic | Used by:265 | |
Symbol 264 Text | Uses:91 | Used by:265 |
Symbol 265 MovieClip | Uses:259 260 179 261 262 263 264 | Used by:Timeline |
Streaming Sound 1 | Used by:Symbol 228 MovieClip |
Instance Names
"startBtn_mc" | Frame 1 | Symbol 96 MovieClip |
"frogMachine_mc" | Frame 1 | Symbol 108 MovieClip |
"batteryFarm_mc" | Frame 1 | Symbol 111 MovieClip |
"smokeScreen_mc" | Frame 1 | Symbol 113 MovieClip |
"missileCommand_mc" | Frame 1 | Symbol 115 MovieClip |
"smoke1_mc" | Frame 1 | Symbol 84 MovieClip [mc.smoke] |
"smoke2_mc" | Frame 1 | Symbol 84 MovieClip [mc.smoke] |
"smoke3_mc" | Frame 1 | Symbol 84 MovieClip [mc.smoke] |
"smoke4_mc" | Frame 1 | Symbol 84 MovieClip [mc.smoke] |
"smoke0_mc" | Frame 1 | Symbol 84 MovieClip [mc.smoke] |
"gameBG_mc" | Frame 16 | Symbol 126 MovieClip |
"robotboy_mc" | Frame 16 | Symbol 142 MovieClip |
"visor_mc" | Frame 16 | Symbol 153 MovieClip |
"distance_mc" | Frame 16 | Symbol 161 MovieClip |
"danger_mc" | Frame 16 | Symbol 166 MovieClip |
"power_mc" | Frame 16 | Symbol 170 MovieClip |
"score_mc" | Frame 16 | Symbol 179 MovieClip |
"cutScene_mc" | Frame 16 | Symbol 228 MovieClip |
"jetski_mc" | Frame 31 | Symbol 238 MovieClip |
"smokeScreen_mc" | Frame 31 | Symbol 113 MovieClip |
"smokeScreen_mc" | Frame 53 | Symbol 113 MovieClip |
"missileCommand_mc" | Frame 53 | Symbol 115 MovieClip |
"missileCommand_mc" | Frame 78 | Symbol 115 MovieClip |
"scoreBoard_mc" | Frame 89 | Symbol 265 MovieClip |
"fins_mc" | Symbol 78 MovieClip [mc.missile] Frame 1 | Symbol 75 MovieClip |
"island_mc" | Symbol 126 MovieClip Frame 1 | Symbol 119 MovieClip |
"cloud1_mc" | Symbol 126 MovieClip Frame 1 | Symbol 123 MovieClip |
"cloud2_mc" | Symbol 126 MovieClip Frame 1 | Symbol 125 MovieClip |
"crosshairX_mc" | Symbol 153 MovieClip Frame 3 | Symbol 149 MovieClip |
"crosshairY_mc" | Symbol 153 MovieClip Frame 3 | Symbol 149 MovieClip |
"target_mc" | Symbol 153 MovieClip Frame 3 | Symbol 151 MovieClip |
"mask_mc" | Symbol 161 MovieClip Frame 1 | Symbol 157 MovieClip |
"robHead_mc" | Symbol 161 MovieClip Frame 1 | Symbol 160 MovieClip |
"dangerBlocks_mc" | Symbol 166 MovieClip Frame 1 | Symbol 165 MovieClip |
"mask_mc" | Symbol 166 MovieClip Frame 1 | Symbol 157 MovieClip |
"powerBlocks_mc" | Symbol 170 MovieClip Frame 1 | Symbol 169 MovieClip |
"mask_mc" | Symbol 170 MovieClip Frame 1 | Symbol 157 MovieClip |
"digits_mc" | Symbol 178 MovieClip Frame 1 | Symbol 177 MovieClip |
"num0_mc" | Symbol 179 MovieClip Frame 1 | Symbol 178 MovieClip |
"num1_mc" | Symbol 179 MovieClip Frame 1 | Symbol 178 MovieClip |
"num2_mc" | Symbol 179 MovieClip Frame 1 | Symbol 178 MovieClip |
"num3_mc" | Symbol 179 MovieClip Frame 1 | Symbol 178 MovieClip |
"num4_mc" | Symbol 179 MovieClip Frame 1 | Symbol 178 MovieClip |
"fScore_mc" | Symbol 265 MovieClip Frame 1 | Symbol 179 MovieClip |
"aScore_mc" | Symbol 265 MovieClip Frame 1 | Symbol 179 MovieClip |
"bScore_mc" | Symbol 265 MovieClip Frame 1 | Symbol 179 MovieClip |
Special Tags
Protect (24) | Timeline Frame 1 | 0 bytes "" |
ExportAssets (56) | Timeline Frame 1 | Symbol 1 as "winloop_snd" |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "rbHit_snd" |
ExportAssets (56) | Timeline Frame 1 | Symbol 3 as "rb_missile.aiff" |
ExportAssets (56) | Timeline Frame 1 | Symbol 4 as "charge_snd" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "missile.aiff" |
ExportAssets (56) | Timeline Frame 1 | Symbol 6 as "fly_snd" |
ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "intro_snd" |
ExportAssets (56) | Timeline Frame 1 | Symbol 8 as "launch.aiff" |
ExportAssets (56) | Timeline Frame 1 | Symbol 9 as "danger_snd" |
ExportAssets (56) | Timeline Frame 1 | Symbol 10 as "battCollect_snd" |
ExportAssets (56) | Timeline Frame 1 | Symbol 11 as "battMiss_snd" |
ExportAssets (56) | Timeline Frame 1 | Symbol 12 as "bang3.aiff" |
ExportAssets (56) | Timeline Frame 1 | Symbol 13 as "bang2.aiff" |
ExportAssets (56) | Timeline Frame 1 | Symbol 14 as "bang1.aiff" |
ExportAssets (56) | Timeline Frame 1 | Symbol 15 as "battLow_snd" |
ExportAssets (56) | Timeline Frame 1 | Symbol 17 as "mc.puff2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 18 as "mc.puff" |
ExportAssets (56) | Timeline Frame 1 | Symbol 42 as "mc.frogman" |
ExportAssets (56) | Timeline Frame 1 | Symbol 73 as "mc.explosion" |
ExportAssets (56) | Timeline Frame 1 | Symbol 78 as "mc.missile" |
ExportAssets (56) | Timeline Frame 1 | Symbol 79 as "gfx.wave" |
ExportAssets (56) | Timeline Frame 1 | Symbol 79 as "gfx.wave" |
ExportAssets (56) | Timeline Frame 1 | Symbol 80 as "gfx.wave" |
ExportAssets (56) | Timeline Frame 1 | Symbol 82 as "mc.battery" |
ExportAssets (56) | Timeline Frame 1 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 1 | Symbol 15 as "battLow_snd" |
ExportAssets (56) | Timeline Frame 1 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 1 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 1 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 1 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 1 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 2 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 2 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 2 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 2 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 2 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 3 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 3 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 3 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 3 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 3 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 4 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 4 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 4 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 4 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 4 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 5 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 5 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 5 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 5 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 5 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 6 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 6 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 6 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 6 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 6 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 7 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 7 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 7 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 7 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 7 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 8 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 8 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 8 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 8 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 8 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 9 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 9 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 9 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 9 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 9 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 10 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 10 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 10 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 10 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 10 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 11 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 11 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 11 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 11 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 11 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 12 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 12 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 12 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 12 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 12 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 13 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 13 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 13 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 13 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 13 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 14 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 14 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 14 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 14 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 14 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 15 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 15 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 15 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 15 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 15 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 16 | Symbol 15 as "battLow_snd" |
ExportAssets (56) | Timeline Frame 16 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 16 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 16 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 16 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 16 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 17 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 17 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 17 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 17 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 17 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 18 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 18 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 18 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 18 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 18 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 19 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 19 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 19 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 19 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 19 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 20 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 20 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 20 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 20 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 20 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 21 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 21 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 21 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 21 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 21 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 22 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 22 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 22 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 22 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 22 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 23 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 23 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 23 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 23 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 23 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 24 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 24 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 24 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 24 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 24 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 25 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 25 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 25 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 25 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 25 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 26 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 26 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 26 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 26 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 26 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 27 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 27 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 27 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 27 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 27 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 28 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 28 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 28 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 28 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 28 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 29 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 29 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 29 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 29 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 29 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 30 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 30 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 30 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 30 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 30 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 31 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 31 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 31 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 31 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 31 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 32 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 32 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 32 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 32 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 32 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 33 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 33 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 33 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 33 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 33 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 34 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 34 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 34 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 34 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 34 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 35 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 35 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 35 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 35 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 35 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 36 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 36 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 36 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 36 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 36 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 37 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 37 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 37 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 37 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 37 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 38 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 38 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 38 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 38 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 38 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 39 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 39 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 39 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 39 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 39 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 40 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 40 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 40 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 40 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 40 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 41 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 41 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 41 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 41 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 41 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 42 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 42 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 42 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 42 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 42 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 43 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 43 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 43 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 43 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 43 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 44 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 44 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 44 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 44 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 44 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 45 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 45 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 45 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 45 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 45 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 46 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 46 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 46 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 46 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 46 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 47 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 47 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 47 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 47 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 47 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 48 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 48 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 48 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 48 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 48 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 49 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 49 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 49 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 49 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 49 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 50 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 50 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 50 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 50 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 50 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 51 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 51 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 51 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 51 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 51 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 52 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 52 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 52 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 52 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 52 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 53 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 53 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 53 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 53 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 53 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 54 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 54 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 54 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 54 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 54 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 55 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 55 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 55 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 55 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 55 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 56 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 56 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 56 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 56 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 56 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 57 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 57 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 57 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 57 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 57 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 58 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 58 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 58 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 58 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 58 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 59 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 59 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 59 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 59 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 59 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 60 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 60 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 60 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 60 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 60 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 61 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 61 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 61 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 61 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 61 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 62 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 62 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 62 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 62 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 62 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 63 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 63 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 63 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 63 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 63 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 64 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 64 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 64 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 64 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 64 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 65 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 65 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 65 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 65 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 65 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 66 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 66 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 66 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 66 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 66 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 67 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 67 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 67 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 67 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 67 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 68 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 68 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 68 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 68 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 68 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 69 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 69 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 69 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 69 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 69 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 70 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 70 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 70 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 70 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 70 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 71 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 71 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 71 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 71 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 71 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 72 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 72 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 72 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 72 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 72 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 73 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 73 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 73 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 73 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 73 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 74 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 74 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 74 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 74 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 74 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 75 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 75 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 75 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 75 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 75 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 76 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 76 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 76 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 76 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 76 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 77 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 77 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 77 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 77 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 77 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 78 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 78 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 78 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 78 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 78 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 79 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 79 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 79 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 79 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 79 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 80 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 80 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 80 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 80 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 80 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 81 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 81 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 81 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 81 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 81 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 82 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 82 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 82 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 82 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 82 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 83 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 83 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 83 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 83 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 83 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 84 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 84 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 84 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 84 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 84 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 85 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 85 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 85 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 85 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 85 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 86 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 86 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 86 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 86 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 86 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 87 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 87 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 87 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 87 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 87 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 88 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 88 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 88 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 88 | Symbol 84 as "mc.smoke" |
ExportAssets (56) | Timeline Frame 88 | Symbol 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 |
|