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

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

Show Time.swf

This is the info page for
Flash #26155

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


Text
please wait...

LOADING

Read the Competition Rules

Read the Competition Rules

Avoid

Touch to make
hidden platforms
appear

Controls=Spacebar
and arrows

Collect 6
to succeed

Your mail has been sent

Privacy Policy.

Privacy Policy.

Submit

Submit

The BBC will only use this information for the purposes of administering this competition,
and will not publish it or provide it to anyone without your permission. If you would like to
know more about the BBC’s privacy policy, see

Your name:
Friend's name:
Friend's email address:
Your email address:

T

a

p

e

s

L

i

v

m

Level 1

the lift doors are open!

999

99

play

Level 2
collect the videos
from the
eastenders set.

99

999

THE END

LEVEL 3
FINAL LEVEL
BLURB

999

999

Get to the control room!

Get to the control room!

Get to the control room!

ActionScript [AS1/AS2]

Frame 1
function initialiseMan() { ymov = 0; gravity = _root.gravity; canJump = -1; jumpHeight = _root.jumpHeight; screen = _root.screen; lives = _root.lives; spawned = true; game = "game1"; shoot = false; manState = 1; } function checkMan() { _root.frameRate = Math.floor(1000 / (getTimer() - _root.lastTimer)); _root.lastTimer = getTimer(); _root.scorePanel.txtLives = _root.lives; if (399.5 < _root.turbo._y) { _root.deathsound = "hole"; if (_root.developer == false) { cleanScreen(); if (_root.gamelevel == 1) { _root.lastLevel = _root.screen; _root.lives = _root.lives - 1; if (0 >= _root.lives) { _root.gotoAndPlay("gameEnd"); } else { _root.gotoAndStop("playerDie"); } } else if (_root.gamelevel == 2) { _root.lastLevel = _root.screen - 5; _root.lives = _root.lives - 1; if (0 >= _root.lives) { _root.gotoAndPlay("gameEnd"); } else { _root.gotoAndStop("playerDie2"); } } else { _root.lastLevel = _root.screen - 10; _root.lives = _root.lives - 1; if (0 >= _root.lives) { _root.gotoAndPlay("gameEnd"); } else { _root.gotoAndStop("playerDie3"); } } } else { _root.turbo._y = 1; } } if (0 >= _root.lives) { gotoAndPlay (1); } ymov = ymov + gravity; f = 0; while (_root.platformArray.length >= f) { thisPlat = _root.platformArray[f].mclip; if (thisPlat != -1) { turboRight = _root.turbo._x + (_root.turbo._width / 2); turboLeft = _root.turbo._x - (_root.turbo._width / 2); turboBot = _root.turbo._y; turboTop = _root.turbo._y - _root.turbo._height; boxLeft = (thisPlat._x - (thisPlat._width / 2)) + 4; boxRight = (thisPlat._x + (thisPlat._width / 2)) - 4; boxTop = (thisPlat._y - (thisPlat._height / 2)) + 8; boxBot = thisPlat._y + (thisPlat._height / 2); if (thisPlat.visible == true) { ManTest = hittingMe(turboLeft, turboRight, turboTop + 20, turboBot, _root.turbo._x, boxLeft, boxRight, boxTop, boxBot, thisPlat._x, f); if (ManTest == 1) { ymov = 0; canJump = f; } if (ManTest == 2) { ymov = 0; _root.turbo._y = (boxBot + 4) + _root.turbo._height; } if (ManTest == 3) { _root.turbo._x = (boxLeft - (_root.turbo._width / 2)) - 2; } if (ManTest == 4) { _root.turbo._x = (boxRight + (_root.turbo._width / 2)) + 2; } if (canJump == f) { if ((boxRight < turboLeft) || (turboRight < boxLeft)) { canjump = -1; } else { ymov = 0; _root.turbo._y = boxTop - 2; } } } } f++; } _root.turbo._y = _root.turbo._y + ymov; if (key.isDown(39)) { manstate = 3; walkRight(); } if (key.isDown(37)) { manstate = 4; walkLeft(); } if ((!key.isDown(39)) && (!key.isDown(37))) { isWalking = false; if (((((manstate == 1) || (manstate == 3)) || (manstate == 5)) || (manstate == 7)) || (manstate == 9)) { manstate = 1; } else { manstate = 2; } } if (key.isDown(32) || (key.isDown(38))) { if (-1 < canJump) { if ((((((manstate == 1) || (manstate == 3)) || (manstate == 5)) || (manstate == 7)) || (manstate == 9)) || (key.isDown(39))) { manstate = 5; } else { manstate = 6; } jump(jumpHeight); } } if (key.isDown(66)) { if (key.isDown(85)) { _root.developer = true; _root.jumpHeight = -29; } if (key.isDown(78)) { _root.developer = false; } } if (_root.developer == true) { if (key.isDown(77)) { if (_root.shrunken == false) { _root.turbo._xscale = 50; _root.turbo._yscale = 50; _root.shrunken = true; } else { _root.turbo._xscale = 100; _root.turbo._yscale = 100; _root.shrunken = false; } } if (key.isDown(49)) { cleanScreen(1); _root.collected = 0; gotoAndPlay (1); } if (key.isDown(50)) { cleanScreen(1); _root.collected = 2; gotoAndPlay (378); } if (key.isDown(51)) { cleanScreen(1); _root.collected = 4; gotoAndPlay (790); } if (key.isDown(52)) { _root.doorstate = "open"; } if (key.isDown(53)) { _root.collected++; } } var _local1 = 1; switch (manstate) { case _local1 : _root.turbo.gotoAndStop(9); break; case 2 : _root.turbo.gotoAndStop(10); break; case 3 : _root.turbo.gotoAndStop(1); break; case 4 : _root.turbo.gotoAndStop(2); break; case 5 : _root.turbo.gotoAndStop(5); break; case 6 : _root.turbo.gotoAndStop(6); break; case 7 : _root.turbo.gotoAndStop(3); break; case 8 : _root.turbo.gotoAndStop(4); break; case 9 : _root.turbo.gotoAndStop(7); break; case 10 : _root.turbo.gotoAndStop(8); break; default : _root.turbo.gotoAndStop(9); } if (520 < _root.turbo._x) { if ((_root.screen == 5) || (_root.screen == 15)) { _root.turbo._x = 520; } } if (600 < _root.turbo._x) { if (((_root.screen == 5) || (_root.screen == 10)) || (root.screen == 15)) { _root.turbo._x = 600; } else { _root.entryheight = _root.turbo._y; _root.lastentry = "l"; _root.removeBaddies(); _root.turbo._x = 5; _root.screen++; _root.nextFrame(); } } if (_root.turbo._x < 5) { if (((_root.screen == 1) || (_root.screen == 6)) || (_root.screen == 11)) { _root.turbo._x = 5; } else { _root.lastentry = "r"; _root.entryheight = _root.turbo._y; _root.removeBaddies(); _root.turbo._x = 595; _root.screen--; _root.prevFrame(); } } } function hittingMe(myL, myR, myT, myB, myC, boxL, boxR, boxT, boxB, boxC, platnum) { if ((platnum == 8) || (platnum == 10)) { } if (((myR >= boxL) && (boxR >= myR)) || ((boxR >= myL) && (myL >= boxL))) { if ((myB < boxT) && ((myB + ymov) >= boxT)) { return(1); } if ((boxB < myT) && (boxB >= (myT + ymov))) { return(2); } if ((boxT < myB) && (myT < boxB)) { if (myC < boxC) { return(3); } return(4); } return(0); } return(0); } function stopWalking() { isWalking = false; } function walkRight() { _root.turbo._x = _root.turbo._x + _root.walkIncrement; isWalking = true; } function walkLeft() { _root.turbo._x = _root.turbo._x - _root.walkIncrement; isWalking = true; } function jump(thisJumpHeight) { _root.playSound("boing"); canJump = -1; ymov = thisJumpHeight; }
Frame 2
factor = _root.getBytesLoaded() / _root.getBytesTotal(); perLoaded = Math.floor(factor * 100) + "% loaded"; if (factor >= 1) { _root.gotoAndStop("splash"); }
Frame 3
_root.gotoAndPlay("loader");
Frame 9
function buildPlatforms(thisScreen) { f = 0; while (platformArray.length >= f) { if (platformArray[f].screen == thisScreen) { duplicateMovieClip (_root[platformArray[f].ptype], "floor" + clipLevel, clipLevel); var thisClip = _root["floor" + clipLevel]; thisClip.id = f; thisClip._x = platformArray[f].x + (platformArray[f].pwidth / 2); thisClip._y = platformArray[f].y + (platformArray[f].pheight / 2); thisClip._height = platformArray[f].pheight; thisClip._width = platformArray[f].pwidth; platformArray[f].mclip = thisClip; if (platformArray[f].visible == true) { thisClip._visible = true; } else { thisClip._visible = false; } clipLevel++; } f++; } } function buildTokens(thisScreen) { f = 0; while (tokenArray.length >= f) { if ((tokenArray[f].screen == thisScreen) && (tokenArray[f].collected == false)) { duplicateMovieClip (_root.emptytoken, "token" + clipLevel, clipLevel); var thisClip = _root["token" + clipLevel]; thisClip.id = f; thisClip.collected = tokenArray[f].collected; thisClip._x = tokenArray[f].x; thisClip._y = tokenArray[f].y; tokenArray[f].mclip = thisClip; thisClip._visible = true; clipLevel++; } f++; } } function gotToken(tokenID, token) { _root.tokenArray[tokenID].collected = true; } function levelEnd(thisLevel) { } function cleanScreen(full) { if (full == 1) { _root.turbo.removeMovieClip(); } f = 0; while (platformArray.length >= f) { if (platformArray[f].mclip != -1) { platformArray[f].mclip.removeMovieClip(); platformArray[f].mclip = -1; } f++; } f = 0; while (tokenArray.length >= f) { if (tokenArray[f].mclip != -1) { tokenArray[f].mclip.removeMovieClip(); tokenArray[f].mclip = -1; } f++; } } function removeBaddies() { f = 0; while (10 >= f) { baddie = "baddie" + f; _root[baddie].removeMovieClip(); f++; } } function initialiseLevers() { leverArray[0] = new Lever("off"); leverArray[1] = new Lever("off"); leverArray[2] = new Lever("off"); leverArray[3] = new Lever("off"); leverArray[4] = new Lever("off"); leverArray[5] = new Lever("off"); } function initialisePlatforms() { platformArray[0] = new Platform(-498, 382, 650, 18, "baseFloor", 0, 0, 0, true, false, 1); platformArray[1] = new Platform(466, 382, 650, 18, "baseFloor", 0, 0, 0, true, false, 1); platformArray[2] = new Platform(100, 294, 90, 23, "static", 0, 0, 0, true, false, 1); platformArray[3] = new Platform(2, 204, 90, 23, "static", 0, 0, 0, true, false, 1); platformArray[4] = new Platform(100, 114, 90, 23, "static", 0, 0, 0, true, false, 1); platformArray[5] = new Platform(309, 114, 90, 23, "static", 0, 0, 0, true, false, 1); platformArray[6] = new Platform(357, 204, 90, 23, "static", 0, 0, 0, true, false, 1); platformArray[7] = new Platform(-23, 382, 650, 18, "baseFloor", 0, 0, 0, true, false, 2); platformArray[8] = new Platform(187, 294, 495, 18, "long", 0, 0, 0, true, false, 2); platformArray[9] = new Platform(42, 210, 92, 24, "static", 0, 0, 0, true, false, 2); platformArray[10] = new Platform(246, 145, 413, 18, "long", 0, 0, 0, true, false, 2); platformArray[11] = new Platform(37, 69, 92, 24, "hidden", 0, 0, 0, false, false, 2); platformArray[12] = new Platform(-558, 294, 650, 18, "long", 0, 0, 0, true, false, 3); platformArray[13] = new Platform(516, 294, 650, 18, "long", 0, 0, 0, true, false, 3); platformArray[14] = new Platform(264, 287, 90, 23, "moving", 8, 160, 0, true, true, 3); platformArray[15] = new Platform(-558, 294, 650, 18, "long", 0, 0, 0, true, false, 4); platformArray[16] = new Platform(516, 294, 650, 18, "long", 0, 0, 0, true, false, 4); platformArray[17] = new Platform(99, 240, 90, 23, "crumbling", 0, 0, 0, true, false, 4); platformArray[18] = new Platform(33, 158, 90, 23, "crumbling", 0, 0, 0, true, false, 4); platformArray[19] = new Platform(305, 158, 90, 23, "crumbling", 0, 0, 0, true, false, 4); platformArray[20] = new Platform(165, 72, 90, 23, "crumbling", 0, 0, 0, true, false, 4); platformArray[21] = new Platform(450, 72, 90, 23, "crumbling", 0, 0, 0, true, false, 4); platformArray[22] = new Platform(407, 225, 92, 24, "crumbling", 0, 0, 0, true, false, 4); platformArray[23] = new Platform(-46, 294, 92, 24, "static", 0, 0, 0, true, false, 5); platformArray[24] = new Platform(-46, 294, 92, 24, "static", 0, 0, 0, true, false, 5); platformArray[25] = new Platform(95, 230, 92, 24, "hidden", 0, 0, 0, false, false, 5); platformArray[26] = new Platform(224, 169, 92, 24, "static", 0, 0, 0, true, false, 5); platformArray[27] = new Platform(357, 114, 92, 24, "static", 0, 0, 0, true, false, 5); platformArray[28] = new Platform(-23, 372, 650, 18, "baseFloor", 0, 0, 0, true, false, 5); platformArray[100] = new Platform(-23, 382, 650, 18, "baseFloor", 0, 0, 0, true, false, 6); platformArray[101] = new Platform(220, 325, 233, 36, "escalator", 7, 0, 0, true, false, 6); platformArray[102] = new Platform(136, 234, 92, 24, "static", 0, 0, 0, true, false, 6); platformArray[103] = new Platform(-12, 187, 92, 24, "crumbling", 0, 0, 0, true, false, 6); platformArray[104] = new Platform(87, 100, 92, 24, "crumbling", 0, 0, 0, true, false, 6); platformArray[105] = new Platform(277, 88, 92, 24, "crumbling", 0, 0, 0, true, false, 6); platformArray[107] = new Platform(444, 187, 92, 24, "crumbling", 0, 0, 0, true, false, 6); platformArray[34] = new Platform(-23, 382, 650, 18, "baseFloor", 0, 0, 0, true, false, 7); platformArray[35] = new Platform(267, 259, 616, 18, "long", 0, 0, 0, true, false, 7); platformArray[37] = new Platform(278, 111, 416, 18, "long", 0, 0, 0, true, false, 7); platformArray[38] = new Platform(135, 179, 92, 24, "crumbling", 0, 0, 0, true, false, 7); platformArray[39] = new Platform(-23, 382, 650, 18, "baseFloor", 0, 0, 0, true, false, 8); platformArray[40] = new Platform(358, 330, 92, 24, "crumbling", 0, 0, 0, true, false, 8); platformArray[41] = new Platform(-65, 259, 350, 18, "long", 0, 0, 0, true, false, 8); platformArray[43] = new Platform(-145, 111, 416, 18, "long", 0, 0, 0, true, false, 8); platformArray[44] = new Platform(346, 130, 92, 24, "crumbling", 0, 0, 0, true, false, 8); platformArray[45] = new Platform(-23, 382, 650, 18, "baseFloor", 0, 0, 0, true, false, 9); platformArray[46] = new Platform(384, 333, 92, 24, "crumbling", 0, 0, 0, true, false, 9); platformArray[47] = new Platform(223, 292, 92, 24, "static", 0, 0, 0, true, false, 9); platformArray[48] = new Platform(138, 222, 92, 24, "static", 0, 0, 0, true, false, 9); platformArray[49] = new Platform(337, 187, 265, 18, "long", 0, 0, 0, true, false, 9); platformArray[50] = new Platform(14, 74, 92, 24, "crumbling", 0, 0, 0, true, false, 9); platformArray[51] = new Platform(13, 104, 92, 24, "moving", 8, 200, 0, true, false, 9); platformArray[52] = new Platform(-461, 382, 650, 18, "baseFloor", 0, 0, 0, true, false, 10); platformArray[53] = new Platform(370, 382, 650, 18, "baseFloor", 0, 0, 0, true, false, 10); platformArray[54] = new Platform(234, 356, 92, 24, "moving", 7, 180, 0, true, true, 10); platformArray[55] = new Platform(278, 278, 92, 24, "crumbling", 0, 0, 0, true, false, 10); platformArray[56] = new Platform(150, 210, 92, 24, "crumbling", 0, 0, 0, true, false, 10); platformArray[57] = new Platform(277, 132, 92, 24, "crumbling", 0, 0, 0, true, false, 10); platformArray[58] = new Platform(428, 84, 92, 24, "static", 0, 0, 0, true, false, 10); platformArray[59] = new Platform(-23, 382, 650, 18, "baseFloor", 0, 0, 0, true, false, 11); platformArray[60] = new Platform(385, 382, 191, 18, "baseFloor", 0, 0, 0, true, false, 11); platformArray[61] = new Platform(80, 330, 92, 23, "static", 0, 0, 0, true, false, 11); platformArray[62] = new Platform(173, 281, 92, 23, "static", 0, 0, 0, true, false, 11); platformArray[63] = new Platform(278, 330, 92, 23, "hidden", 0, 0, 0, true, false, 11); platformArray[64] = new Platform(-23, 382, 650, 18, "baseFloor", 0, 0, 0, true, false, 12); platformArray[66] = new Platform(36, 382, 118, 18, "baseFloor", 0, 0, 0, true, false, 12); platformArray[67] = new Platform(231, 382, 148, 18, "baseFloor", 0, 0, 0, true, false, 12); platformArray[68] = new Platform(422, 382, 126, 18, "baseFloor", 0, 0, 0, true, false, 12); platformArray[69] = new Platform(485, 217, 92, 23, "static", 0, 0, 0, true, false, 12); platformArray[70] = new Platform(-23, 382, 650, 18, "baseFloor", 0, 0, 0, true, false, 13); platformArray[71] = new Platform(2, 294, 92, 23, "static", 0, 0, 0, true, false, 13); platformArray[72] = new Platform(41, 166, 308, 18, "long", 0, 0, 0, true, false, 13); platformArray[73] = new Platform(300, 314, 256, 26, "escalator", 7, 0, 0, false, false, 13); platformArray[74] = new Platform(-23, 382, 650, 18, "baseFloor", 0, 0, 0, true, false, 14); platformArray[75] = new Platform(160, 295, 92, 23, "hidden", 0, 0, 0, false, false, 14); platformArray[76] = new Platform(269, 215, 92, 23, "static", 0, 0, 0, true, false, 14); platformArray[77] = new Platform(400, 165, 92, 23, "static", 0, 0, 0, true, false, 14); platformArray[78] = new Platform(531, 121, 70, 18, "long", 0, 0, 0, true, false, 14); platformArray[79] = new Platform(574, 213, 39, 168, "rock", 0, 0, 0, true, false, 14); platformArray[80] = new Platform(44, 215, 92, 23, "static", 0, 0, 0, true, false, 14); platformArray[81] = new Platform(-209, 382, 353, 18, "baseFloor", 0, 0, 0, true, false, 15); platformArray[82] = new Platform(409, 382, 353, 18, "baseFloor", 0, 0, 0, true, false, 15); platformArray[83] = new Platform(106, 291, 92, 23, "static", 0, 0, 0, true, false, 15); platformArray[84] = new Platform(131, 191, 92, 23, "crumbling", 0, 0, 0, true, false, 15); platformArray[85] = new Platform(182, 108, 92, 23, "crumbling", 0, 0, 0, true, false, 15); platformArray[86] = new Platform(-25, 223, 40, 168, "rock", 0, 0, 0, true, false, 15); } function initialiseTokens() { tokenArray[0] = new token(49, 39, 2, 1); tokenArray[1] = new token(393, 92, 5, 1); tokenArray[2] = new token(138, 80, 8, 2); tokenArray[3] = new token(58, 45, 9, 2); tokenArray[4] = new token(214, 322, 11, 3); tokenArray[5] = new token(531, 101, 14, 3); } function lever(state) { this.state = state; this.mclip = -1; } function token(x, y, screen, level) { this.x = x; this.y = y; this.screen = screen; this.level = level; this.collected = false; this.mclip = -1; } function Platform(x, y, pwidth, pheight, ptype, speed, xdist, ydist, visible, moving, screen) { this.x = x; this.y = y; this.pheight = pheight; this.pwidth = pwidth; this.ptype = ptype; this.speed = speed; this.xdist = xdist; this.ydist = ydist; this.visible = visible; this.mclip = -1; this.moving = moving; this.screen = screen; } function initSounds() { gameSound = true; soundFade = 0; fadeSoundAmount = 2; gameMaxVolume = 70; globalSounds = new Sound(); soundExitOpen = new Sound(_root.sounds); soundExitOpen.attachSound("sound_exitOpen"); soundBoingSound = new Sound(_root.sounds); soundBoingSound.attachSound("sound_jump"); soundPickupCash = new Sound(_root.sounds); soundPickupCash.attachSound("sound_pickUpCash"); soundLevelIn = new Sound(_root.sounds); soundLevelIn.attachSound("sound_levelIn"); soundGongSound = new Sound(_root.sounds); soundGongSound.attachSound("sound_gongSound"); soundIntroMusic = new Sound(_root.sounds); soundIntroMusic.attachSound("sound_introMusic"); soundLaserSound = new Sound(_root.sounds); soundLaserSound.attachSound("sound_laserSound"); soundBackgroundLoop = new Sound(_root.sounds); soundBackgroundLoop.attachSound("sound_backgroundLoop"); soundBackgroundLoopFaster = new Sound(_root.sounds); soundBackgroundLoopFaster.attachSound("sound_backgroundLoopFaster"); soundConveyorBelt = new Sound(_root.sounds); soundConveyorBelt.attachSound("sound_conveyorBelt"); soundEasttheme = new Sound(_root.sounds); soundEasttheme.attachSound("sound_eastenderstheme"); soundFoolstheme = new Sound(_root.sounds); soundFoolstheme.attachSound("sound_foolstheme"); soundFoolslose = new Sound(_root.sounds); soundFoolslose.attachSound("sound_foolslose"); soundFoolswin = new Sound(_root.sounds); soundFoolswin.attachSound("sound_foolswin"); soundR1lose = new Sound(_root.sounds); soundR1lose.attachSound("sound_r1lose"); soundR1theme = new Sound(_root.sounds); soundR1theme.attachSound("sound_r1theme"); soundR1win = new Sound(_root.sounds); soundR1win.attachSound("sound_r1win"); soundStarstheme = new Sound(_root.sounds); soundStarstheme.attachSound("sound_starstheme"); soundStarslose = new Sound(_root.sounds); soundStarslose.attachSound("sound_starslose"); soundStarswin = new Sound(_root.sounds); soundStarswin.attachSound("sound_starswin"); soundEastlose = new Sound(_root.sounds); sondEastlose.attachSound("sound_eastlose"); soundEastwin = new Sound(_root.sounds); soundEastwin.attachSound("sound_eastwin"); soundZane3 = new Sound(_root.sounds); soundZane3.attachSound("sound_zane3"); soundClickswitch = new Sound(_root.sounds); soundClickswitch.attachSound("sound_switch"); soundCollectvideo = new Sound(_root.sounds); soundCollectvideo.attachSound("sound_collectvideo"); soundDying = new Sound(_root.sounds); soundDying.attachSound("sound_dying"); soundHole = new Sound(_root.sounds); soundHole.attachSound("sound_hole"); soundEndgame = new Sound(_root.sounds); soundEndgame.attachSound("sound_endgame"); soundLiftclose = new Sound(_root.sounds); soundLiftclose.attachSound("sound_liftclose"); } function soundOff() { sounds.setVolume(0); stopSounds(); gameSound = false; } function soundOn() { stopSounds(); gameSound = true; if (_root.gameLevel == 1) { if (_root.screen == 4) { _root.playSound("backgroundStars"); } else { _root.playSound("backgroundFools"); } } else if (_root.gameLevel == 2) { _root.playSound("backgroundEast"); } else if (_root.gameLevel == 3) { _root.playSound("backgroundR1"); } } function playSound(soundID) { if (gameSound) { var _local1 = "exitopen"; switch (soundID) { case _local1 : _root.soundExitOpen.start(); return; case "boing" : _root.soundBoingSound.start(); return; case "pickupcash" : _root.soundPickupCash.start(); return; case "levelin" : _root.soundLevelIn.setVolume(120); _root.soundLevelIn.start(); return; case "gong" : _root.soundGongSound.start(); return; case "intro" : _root.soundIntroMusic.start(); return; case "laser" : _root.soundLaserSound.start(); return; case "conveyor" : _root.soundConveyorBelt.start(0, 9999); return; case "backgroundEast" : _root.soundEasttheme.start(0, 9999); return; case "backgroundFools" : _root.soundFoolstheme.start(0, 9999); return; case "backgroundStars" : _root.soundStarstheme.start(0, 9999); return; case "soundR1lose" : _root.soundR1lose.start(); return; case "soundR1win" : _root.soundR1win.start(); return; case "backgroundR1" : _root.soundR1theme.start(0, 9999); return; case "eastwin" : _root.soundEastwin.start(); return; case "eastlose" : _root.soundEastlose.start(); return; case "starswin" : _root.soundStarswin.start(); return; case "starsLose" : _root.soundStarslose.start(); return; case "lift3" : _root.soundZane3.start(0, 9999); return; case "clickswitch" : _root.soundClickswitch.start(); return; case "Collectvideo" : _root.soundCollectvideo.start(); return; case "dying" : _root.soundDying.start(); return; case "hole" : _root.soundHole.start(); return; case "endgame" : _root.soundEndgame.start(); return; case "closelift" : _root.soundLiftclose.start(); } } } function stopSound(soundID) { if (gameSound) { var _local1 = "exitopen"; switch (soundID) { case _local1 : _root.soundExitOpen.stop("sound_soundExitOpen"); return; case "boing" : _root.soundBoingSound.stop("sound_soundBoingSound"); return; case "pickupcash" : _root.soundPickupCash.stop("sound_soundPickupCash"); return; case "levelin" : _root.soundLevelIn.stop("sound_soundLevelIn"); return; case "gong" : _root.soundGongSound.stop("sound_soundGongSound"); return; case "intro" : _root.soundIntroMusic.stop("sound_soundIntroMusic"); return; case "laser" : _root.soundLaserSound.stop("sound_soundLaserSound"); return; case "conveyor" : _root.soundConveyorBelt.stop("sound_conveyorBelt"); return; case "backgroundEast" : _root.soundEasttheme.stop("sound_eastenderstheme"); return; case "backgroundFools" : _root.soundFoolstheme.stop("sound_foolstheme"); return; case "backgroundStars" : _root.soundStarstheme.stop("sound_starstheme"); return; case "backgroundR1" : _root.soundR1theme.stop("sound_r1theme"); return; case "eastwin" : _root.soundEastwin.stop("sound_eastwin"); return; case "eastlose" : _root.soundEastlose.stop("sound_eastlose"); return; case "starswin" : _root.soundStarswin.stop("sound_starswin"); return; case "starsLose" : _root.soundStarslose.stop("sound_starslose"); return; case "lift3" : _root.soundZane3.stop("sound_zane3"); } } } function stopSounds() { globalSounds.stop(); } function addToken(tokenName) { _root.coinsCollected = _root.coinsCollected + 1; _root.playsound("pickupcash"); hit = true; if (tokenName.screen == 1) { thisArray = coinArray1; } else if (tokenName.screen == 2) { thisArray = coinArray2; } else if (tokenName.screen == 3) { thisArray = coinArray3; } else if (tokenName.screen == 4) { thisArray = coinArray4; } else if (tokenName.screen == 5) { thisArray = coinArray5; } _root.thisArray[tokenName.id][0] = "false"; tokenName.gotoAndPlay(2); } function platformBehavior(type, platformID) { var _local1 = "static"; switch (type) { case _local1 : return; case "hidden" : thisArrayPlat = platformArray[platformID.id]; if (thisArrayPlat.visible == true) { platformID._alpha = 70; platformID.visible = true; } else { platformID._visible = false; } return; case "crumbling" : if ((_root.canJump == platformID.id) && (platformID.visible == true)) { if (!platformID.crumblestart) { _root.playsound("crumble"); platformID.gotoAndPlay(2); platformID.crumblestart = true; } } return; case "moving" : thisArrayPlat = platformArray[platformID.id]; if (thisArrayPlat.moving == true) { platformID.isMoving = true; } if (platformID.isMoving == true) { if (_root.canJump == platformID.id) { if (0 < thisArrayPlat.xdist) { _root.turbo._x = _root.turbo._x + thisArrayPlat.speed; } if (0 < thisArrayPlat.ydist) { _root.turbo._y = _root.turbo._y + thisArrayPlat.speed; } } if (0 < thisArrayPlat.xdist) { newx = platformID._x + thisArrayPlat.speed; leftX = (thisArrayPlat.x - thisArrayPlat.xdist) + (thisArrayPlat.pwidth / 2); rightX = (thisArrayPlat.x + thisArrayPlat.xdist) + (thisArrayPlat.pwidth / 2); platformID._x = newx; if ((platformID._x < leftX) || (rightX < platformID._x)) { thisArrayPlat.speed = -thisArrayPlat.speed; } } if (0 < thisArrayPlat.ydist) { platformID.thisMov = platformID.thisMov + platformID.speed; platformID._y = platformID.startX + platformID.thisMov; if ((platformID.ydist < platformID.thisMov) || (platformID.thisMov < 0)) { platformID.speed = -platformID.speed; } } } return; case "escalator" : thisArrayPlat = platformArray[platformID.id]; if (thisArrayPlat.visible != true) { break; } platformID.visible = true; _root.playSound("conveyor"); if (_root.canJump != platformID.id) { break; } if (platformID.direction == 1) { _root.turbo._x = _root.turbo._x + _root.platformArray[platformID.id].speed; _root.turbo.isWalking = true; } else { _root.turbo._x = _root.turbo._x - _root.platformArray[platformID.id].speed; _root.turbo.isWalking = true; } } } function leverTest(lever, platform) { if (_level0.turbo.hitTest(lever)) { _root.playSound("clickswitch"); arrayLever = lever.levernum; _root.leverArray[arrayLever].state = "On"; lever.gotoAndPlay("on"); if (platformArray[platform].screen >= 0) { platType = platformArray[platform].ptype; var _local1 = "moving"; switch (platType) { case _local1 : platformArray[platform].moving = true; break; case "hidden" : if (platformArray[platform].visible == true) { platformArray[platform].visible = false; } else { platformArray[platform].visible = true; } break; case "escalator" : if (platformArray[platform].visible == true) { platformArray[platform].visible = false; } else { platformArray[platform].visible = true; } } lever.hit = true; lever.pressed = true; } } } function gotoGameLevel(level) { if (level == 1) { gotoAndPlay (26); } else if (level == 2) { gotoAndPlay (791); } else { gotoAndPlay (799); } } function gotoInstruct() { gotoAndStop (25); } developer = false; devLevel = 2; if (developer == true) { if (devLevel == 1) { walkIncrement = 7.7; standingHeight = 50; crouchingHeight = 30; minXmov = 0.75; maxXmov = 12; groundWalkIncrement = 3.7; airWalkIncrement = 0.85; jumpHeight = -20; windResistance = 0.72; gravity = 2; } else { walkIncrement = 10.7; standingHeight = 50; crouchingHeight = 30; minXmov = 0.75; maxXmov = 12; groundWalkIncrement = 3.7; airWalkIncrement = 0.85; jumpHeight = -29; windResistance = 0.72; gravity = 2; } if (devLevel == 3) { shrunken = true; } else { shrunken = false; } lives = 99; _root.txtDev = "developer"; } else { _root.txtDev = ""; walkIncrement = 7.7; standingHeight = 50; crouchingHeight = 30; minXmov = 0.75; maxXmov = 12; groundWalkIncrement = 3.7; airWalkIncrement = 0.85; jumpHeight = -20; windResistance = 0.72; gravity = 2; lives = 6; } music = true; startTime = 0; runningTimer = 0; finishtime = 0; collected = 0; cliplevel = 0; gameLevel = 2; exit = "disable"; doorstate = "closed"; lastentry = "l"; entryheight = 385; dropped = false; txtExitOpen = ""; var platformArray = new Array(); var tokenArray = new Array(); var leverArray = new Array(); initialisePlatforms(); initialiseTokens(); initialiseLevers(); _root.initsounds(); _root.sentmsg = false; fscommand ("allowscale", "false"); stop();
Frame 25
stop();
Frame 26
_root.gameLevel = 1; screen = 1; _root.entryheight = 370; cleanScreen(); buildPlatforms(screen); manwidth = _root.turbo._xscale; stop();
Instance of Symbol 212 MovieClip "banner" in Frame 26
onClipEvent (load) { dropped = false; if (_root.gamelevel == 1) { videosNeeded = 2; } else if (_root.gamelevel == 2) { videosNeeded = 4; } else { videosNeeded = 6; } } onClipEvent (enterFrame) { if ((_root.scorePanel.txtCoins == videosNeeded) && (dropped == false)) { this.dropped = true; _root.banner.gotoAndPlay("open"); _root.doorstate = "open"; } }
Instance of Symbol 215 MovieClip "long" in Frame 26
onClipEvent (load) { platformType = "static"; visible = true; }
Instance of Symbol 218 MovieClip "moving" in Frame 26
onClipEvent (load) { platformType = "moving"; isMoving = false; visible = true; } onClipEvent (enterFrame) { _root.platformBehavior(platformType, this); }
Instance of Symbol 218 MovieClip "static" in Frame 26
onClipEvent (load) { platformType = "static"; visible = true; } onClipEvent (enterFrame) { _root.platformBehavior(platformType, this); }
Instance of Symbol 218 MovieClip "hidden" in Frame 26
onClipEvent (load) { platformType = "hidden"; visible = false; } onClipEvent (enterFrame) { _root.platformBehavior(platformType, this); }
Instance of Symbol 224 MovieClip "crumbling" in Frame 26
onClipEvent (load) { platformType = "crumbling"; visible = true; crumblestart = false; } onClipEvent (enterFrame) { _root.platformBehavior(platformType, this); }
Instance of Symbol 228 MovieClip "emptyToken" in Frame 26
onClipEvent (load) { hit = false; collected = false; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.turbo) && (hit == false)) { _root.gotToken(this.id, this); this.hit = true; this._visible = false; _root.collected++; _root.playSound("Collectvideo"); this.removeMovieClip(); } }
Instance of Symbol 230 MovieClip "baseFloor" in Frame 26
onClipEvent (load) { platformType = "static"; visible = true; this._alpha = 0; }
Instance of Symbol 187 MovieClip "scorePanel" in Frame 26
onClipEvent (enterFrame) { _root.scorePanel.txtTimer = math.floor((getTimer() - _root.startTime) / 1000); _root.scorePanel.txtCoins = _root.collected; }
Instance of Symbol 233 MovieClip in Frame 26
onClipEvent (load) { _root.attachMovie("turbo_whole", "turbo", 10000); if (382 < _root.entryheight) { _root.entryheight = 382; } if (_root.lastentry == "l") { _root.turbo._x = 15; _root.turbo._y = _root.entryheight; } else { _root.turbo._x = 575; _root.turbo._y = _root.entryheight; _root.turbo.gotoAndStop(10); } this._xscale; _root.initialiseMan(); } onClipEvent (enterFrame) { _root.checkMan(); }
Instance of Symbol 245 MovieClip in Frame 26
/* no clip actions */
Frame 27
screen = 2; cleanScreen(); buildPlatforms(screen); buildTokens(screen); _root.turbo.canJump = 99; stop();
Instance of Symbol 250 MovieClip "lever0" in Frame 27
onClipEvent (load) { hit = false; levernum = 0; if (_root.leverArray[levernum].state != "off") { this.gotoAndPlay("on"); } } onClipEvent (enterFrame) { if (_root.leverArray[levernum].state == "off") { _root.leverTest(this, 25); } }
Instance of Symbol 253 MovieClip in Frame 27
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (_root.developer == false) { if (this.hitbox.hitTest(_root.turbo) && (hit == false)) { hit = true; _root.lastLevel = _root.screen; _root.lives = _root.lives - 1; _root.deathsound = "hole"; if (0 >= _root.lives) { _root.gotoAndPlay("gameEnd"); } else { _root.lastLevel = _root.screen; _root.gotoAndPlay("playerDie"); } } } }
Instance of Symbol 261 MovieClip "baddie1" in Frame 27
onClipEvent (load) { visible = true; attachedTo = 8; speed = 4; move = speed; this.swapDepths(9998); width = this._xscale; this._x = _root.platformArray[attachedTo].mclip._x; } onClipEvent (enterFrame) { floor = _root.platformArray[attachedTo].mclip; this._y = (floor._y + (floor._height / 2)) - 8; platR = floor._x + (floor._width / 2); platL = floor._x - (floor._width / 2); if (platR < (move + this._x)) { this._xscale = -width; move = -move; } else if ((move + this._x) < platL) { this._xscale = width; move = -move; } this._x = this._x + move; if (_root.developer == false) { if (this.hitbox.hitTest(_root.turbo) || (this.hitbox2.hitTest(_root.turbo))) { _root.cleanScreen(1); _root.lastLevel = _root.screen; _root.lives = _root.lives - 1; if (0 >= _root.lives) { _root.gotoAndPlay("gameEnd"); } else { _root.lastLevel = _root.screen; _root.gotoAndPlay("playerDie"); } } } }
Instance of Symbol 261 MovieClip "baddie2" in Frame 27
onClipEvent (load) { visible = true; attachedTo = 10; speed = 6; move = speed; this.swapDepths(9999); width = this._xscale; this._x = _root.platformArray[attachedTo].mclip._x; } onClipEvent (enterFrame) { floor = _root.platformArray[attachedTo].mclip; this._y = (floor._y + (floor._height / 2)) - 8; platR = floor._x + (floor._width / 2); platL = floor._x - (floor._width / 2); if (platR < (move + this._x)) { this._xscale = -width; move = -move; } else if ((move + this._x) < platL) { this._xscale = width; move = -move; } this._x = this._x + move; if (_root.developer == false) { if (this.hitbox.hitTest(_root.turbo) || (this.hitbox2.hitTest(_root.turbo))) { _root.cleanScreen(1); _root.lastLevel = _root.screen; _root.lives = _root.lives - 1; if (0 >= _root.lives) { _root.gotoAndPlay("gameEnd"); } else { _root.lastLevel = _root.screen; _root.gotoAndPlay("playerDie"); } } } }
Frame 28
screen = 3; cleanScreen(); buildPlatforms(screen); if (_root.lastentry == "r") { if (_root.music) { _root.soundOff(); _root.soundOn(); } } _root.turbo.canJump = 99; stop();
Frame 29
screen = 4; cleanScreen(); buildPlatforms(screen); if (_root.lastentry == "l") { if (_root.music) { _root.soundOff(); _root.soundOn(); } } _root.turbo.canJump = 99; stop();
Frame 30
screen = 5; cleanScreen(); buildPlatforms(screen); buildTokens(screen); _root.turbo.canJump = 99; stop();
Instance of Symbol 250 MovieClip "lever1" in Frame 30
onClipEvent (load) { hit = false; levernum = 1; if (_root.leverArray[levernum].state != "off") { this.gotoAndPlay("on"); } } onClipEvent (enterFrame) { if (_root.leverArray[levernum].state == "off") { _root.leverTest(this, 11); } }
Instance of Symbol 288 MovieClip "lift" in Frame 30
onClipEvent (load) { opened = "no"; } onClipEvent (enterFrame) { if (key.isDown(52)) { _root.doorstate = "open"; } if (_root.doorstate == "open") { if (opened == "yes") { _root.lift.gotoAndStop("doorsOpen"); if (this.hitbox.hitTest(_root.turbo)) { _root.finishtime = _root.scorePanel.txtTimer; _root.runningTimer = _root.runningTimer + _root.finishTime; _root.gotoAndPlay("level1end"); } } else { opened = "yes"; _root.lift.gotoAndPlay("doorsOpening"); } } else { _root.lift.gotoAndStop("doorsClosed"); } }
Instance of Symbol 253 MovieClip in Frame 30
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (_root.developer == false) { if (this.hitbox.hitTest(_root.turbo) && (hit == false)) { hit = true; _root.lastLevel = _root.screen; _root.lives = _root.lives - 1; _root.deathsound = "hole"; if (0 >= _root.lives) { _root.gotoAndPlay("gameEnd"); } else { _root.lastLevel = _root.screen; _root.gotoAndPlay("playerDie"); } } } }
Frame 31
_root.stopSounds(); var _local1 = "hole"; switch (_root.deathsound) { case _local1 : _root.playSound("hole"); break; case "eastlose" : _root.playSound("starsLose"); } _root.cleanScreen(1); _root.removeBaddies(); stop();
Frame 32
cleanScreen(1); gotoAndPlay (34);
Frame 33
cleanScreen(1); gotoAndStop (807); stop();
Frame 34
_root.stopSounds(); _root.playSound("lift3");
Frame 242
stop();
Frame 333
_root.playSound("closelift");
Frame 376
_root.txtExitOpen = ""; _root.gameLevel = 2; _root.txtCoins = 0; _root.doorstate = "closed"; stopAllSounds(); _root.finishTime = 0; _root.startTime = getTimer(); gotoAndPlay (791);
Frame 378
stop();
Frame 379
_root.stopSounds(); _root.playSound("lift3");
Frame 587
stop();
Frame 613
_root.playSound("closelift");
Frame 787
_root.txtExitOpen = ""; _root.gameLevel = 2; _root.txtCoins = 0; _root.doorstate = "closed"; stopAllSounds(); _root.finishTime = 0; _root.startTime = getTimer(); gotoAndPlay (799);
Frame 788
_root.txtExitOpen = ""; _root.stopSounds(); _root.playSound("endgame"); stop(); stop();
Frame 789
stop();
Frame 790
stop();
Frame 791
_root.gameLevel = 2; _root.entryheight = 370; screen = 6; cleanScreen(); buildPlatforms(screen); manwidth = _root.turbo._xscale; stop();
Instance of Symbol 212 MovieClip "banner" in Frame 791
onClipEvent (load) { dropped = false; if (_root.gamelevel == 1) { videosNeeded = 2; } else if (_root.gamelevel == 2) { videosNeeded = 4; } else { videosNeeded = 6; } } onClipEvent (enterFrame) { if ((_root.scorePanel.txtCoins == videosNeeded) && (dropped == false)) { this.dropped = true; _root.banner.gotoAndPlay("open"); _root.doorstate = "open"; } }
Instance of Symbol 187 MovieClip "scorePanel" in Frame 791
onClipEvent (enterFrame) { _root.scorePanel.txtTimer = math.floor((getTimer() - _root.startTime) / 1000); _root.scorePanel.txtCoins = _root.collected; }
Instance of Symbol 230 MovieClip "long2" in Frame 791
onClipEvent (load) { platformType = "static"; visible = true; }
Instance of Symbol 230 MovieClip "baseFloor" in Frame 791
onClipEvent (load) { platformType = "static"; visible = true; this._alpha = 0; }
Instance of Symbol 228 MovieClip "emptyToken" in Frame 791
onClipEvent (load) { hit = false; collected = false; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.turbo) && (hit == false)) { _root.gotToken(this.id, this); this.hit = true; this._visible = false; _root.collected++; _root.playSound("Collectvideo"); gotToken(this); this.removeMovieClip(); } }
Instance of Symbol 215 MovieClip "long" in Frame 791
onClipEvent (load) { platformType = "static"; visible = true; }
Instance of Symbol 218 MovieClip "moving" in Frame 791
onClipEvent (load) { platformType = "moving"; isMoving = false; visible = true; } onClipEvent (enterFrame) { _root.platformBehavior(platformType, this); }
Instance of Symbol 218 MovieClip "static" in Frame 791
onClipEvent (load) { platformType = "static"; visible = true; } onClipEvent (enterFrame) { _root.platformBehavior(platformType, this); }
Instance of Symbol 218 MovieClip "hidden" in Frame 791
onClipEvent (load) { platformType = "hidden"; visible = false; } onClipEvent (enterFrame) { _root.platformBehavior(platformType, this); }
Instance of Symbol 224 MovieClip "crumbling" in Frame 791
onClipEvent (load) { platformType = "crumbling"; visible = true; crumblestart = false; } onClipEvent (enterFrame) { _root.platformBehavior(platformType, this); }
Instance of Symbol 363 MovieClip "escalator" in Frame 791
onClipEvent (load) { platformType = "escalator"; thisMov = 0; direction = 1; this._xscale = -this._xscale; } onClipEvent (enterFrame) { _root.platformBehavior(platformType, this); }
Instance of Symbol 233 MovieClip in Frame 791
onClipEvent (load) { _root.attachMovie("turbo_whole", "turbo", 10000); if (382 < _root.entryheight) { _root.entryheight = 382; } if (_root.lastentry == "l") { _root.turbo._x = 15; _root.turbo._y = _root.entryheight; } else { _root.turbo._x = 575; _root.turbo._y = _root.entryheight; _root.turbo.gotoAndStop(10); } this._xscale; _root.initialiseMan(); } onClipEvent (enterFrame) { _root.checkMan(); }
Instance of Symbol 253 MovieClip in Frame 791
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (this.hitbox.hitTest(_root.turbo) && (hit == false)) { _root.deathsound = "hole"; hit = true; _root.lives = _root.lives - 1; if (0 >= _root.lives) { _root.gotoAndPlay("gameEnd"); } else { _root.lastLevel = _root.screen - 5; _root.gotoAndPlay("playerDie2"); } } }
Instance of Symbol 253 MovieClip in Frame 791
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (this.hitbox.hitTest(_root.turbo) && (hit == false)) { _root.deathsound = "hole"; hit = true; _root.lives = _root.lives - 1; if (0 >= _root.lives) { _root.gotoAndPlay("gameEnd"); } else { _root.lastLevel = _root.screen - 5; _root.gotoAndPlay("playerDie2"); } } }
Frame 792
_root.gameLevel = 2; _root.stopSound("conveyor"); screen = 7; cleanScreen(); buildPlatforms(screen); manwidth = _root.turbo._xscale; stop();
Instance of Symbol 261 MovieClip "baddie1" in Frame 792
onClipEvent (load) { visible = true; attachedTo = 37; speed = 4; move = speed; this.swapDepths(9998); width = this._xscale; this._x = _root.platformArray[attachedTo].mclip._x; } onClipEvent (enterFrame) { floor = _root.platformArray[attachedTo].mclip; this._y = (floor._y + (floor._height / 2)) - 8; platR = floor._x + (floor._width / 2); platL = floor._x - (floor._width / 2); if (platR < (move + this._x)) { this._xscale = -width; move = -move; } else if ((move + this._x) < platL) { this._xscale = width; move = -move; } this._x = this._x + move; if (_root.developer == false) { if (this.hitbox.hitTest(_root.turbo) || (this.hitbox2.hitTest(_root.turbo))) { _root.deathsound = "hole"; _root.cleanScreen(1); _root.lastLevel = _root.screen - 5; _root.lives = _root.lives - 1; if (0 >= _root.lives) { _root.gotoAndPlay("gameEnd"); } else { _root.lastLevel = _root.screen - 5; _root.gotoAndPlay("playerDie2"); } } } }
Frame 793
_root.gameLevel = 2; screen = 8; cleanScreen(); buildPlatforms(screen); buildTokens(screen); manwidth = _root.turbo._xscale; stop();
Instance of Symbol 261 MovieClip "baddie1" in Frame 793
onClipEvent (load) { visible = true; attachedTo = 41; speed = 4; move = speed; this.swapDepths(9998); width = this._xscale; this._x = _root.platformArray[attachedTo].mclip._x; } onClipEvent (enterFrame) { floor = _root.platformArray[attachedTo].mclip; this._y = (floor._y + (floor._height / 2)) - 8; platR = floor._x + (floor._width / 2); platL = floor._x - (floor._width / 2); if (platR < (move + this._x)) { this._xscale = -width; move = -move; } else if ((move + this._x) < platL) { this._xscale = width; move = -move; } this._x = this._x + move; if (_root.developer == false) { if (this.hitbox.hitTest(_root.turbo) || (this.hitbox2.hitTest(_root.turbo))) { _root.deathsound = "hole"; _root.cleanScreen(1); _root.lives = _root.lives - 1; if (0 >= _root.lives) { _root.gotoAndPlay("gameEnd"); } else { _root.lastLevel = _root.screen - 5; _root.gotoAndPlay("playerDie2"); } } } }
Frame 794
_root.gameLevel = 2; screen = 9; cleanScreen(); buildPlatforms(screen); buildTokens(screen); manwidth = _root.turbo._xscale; stop();
Frame 795
_root.gameLevel = 2; screen = 10; cleanScreen(); buildPlatforms(screen); manwidth = _root.turbo._xscale; stop();
Instance of Symbol 250 MovieClip "lever2" in Frame 795
onClipEvent (load) { hit = false; levernum = 2; if (_root.leverArray[levernum].state != "off") { this.gotoAndPlay("on"); } } onClipEvent (enterFrame) { if (_root.leverArray[levernum].state == "off") { _root.leverTest(this, 51); } }
Instance of Symbol 288 MovieClip "lift" in Frame 795
onClipEvent (load) { opened = "no"; } onClipEvent (enterFrame) { if (_root.doorstate == "open") { if (opened == "yes") { _root.lift.gotoAndStop("doorsOpen"); if (this.hitbox.hitTest(_root.turbo)) { _root.finishtime = _root.scorePanel.txtTimer; _root.runningTimer = _root.runningTimer + _root.finishTime; _root.gotoAndPlay("level2end"); } } else { opened = "yes"; _root.lift.gotoAndPlay("doorsOpening"); } } else { _root.lift.gotoAndStop("doorsClosed"); } }
Frame 796
_root.stopSounds(); var _local1 = "hole"; switch (_root.deathsound) { case _local1 : _root.playSound("hole"); break; case "eastlose" : _root.playSound("starsLose"); } _root.cleanScreen(1); _root.removeBaddies(); stop();
Frame 797
cleanScreen(1); gotoAndPlay (379);
Frame 798
cleanScreen(1); gotoAndStop (807); stop();
Frame 799
_root.gameLevel = 3; screen = 11; _root.entryheight = 370; cleanScreen(); buildPlatforms(screen); buildTokens(screen); manwidth = _root.turbo._xscale; stop();
Instance of Symbol 393 MovieClip "rock" in Frame 799
onClipEvent (load) { platformType = "static"; visible = true; } onClipEvent (enterFrame) { _root.platformBehavior(platformType, this); }
Instance of Symbol 230 MovieClip "baseFloor" in Frame 799
onClipEvent (load) { platformType = "static"; visible = true; this._alpha = 0; }
Instance of Symbol 215 MovieClip "long" in Frame 799
onClipEvent (load) { platformType = "static"; visible = true; }
Instance of Symbol 218 MovieClip "moving" in Frame 799
onClipEvent (load) { platformType = "moving"; isMoving = false; visible = true; } onClipEvent (enterFrame) { _root.platformBehavior(platformType, this); }
Instance of Symbol 218 MovieClip "static" in Frame 799
onClipEvent (load) { platformType = "static"; visible = true; } onClipEvent (enterFrame) { _root.platformBehavior(platformType, this); }
Instance of Symbol 218 MovieClip "hidden" in Frame 799
onClipEvent (load) { platformType = "hidden"; visible = false; } onClipEvent (enterFrame) { _root.platformBehavior(platformType, this); }
Instance of Symbol 224 MovieClip "crumbling" in Frame 799
onClipEvent (load) { platformType = "crumbling"; visible = true; crumblestart = false; } onClipEvent (enterFrame) { _root.platformBehavior(platformType, this); }
Instance of Symbol 228 MovieClip "emptyToken" in Frame 799
onClipEvent (load) { hit = false; collected = false; this._visible = true; } onClipEvent (enterFrame) { if (this.hitTest(_root.turbo) && (hit == false)) { _root.gotToken(this.id, this); this.hit = true; this._visible = false; _root.collected++; _root.playSound("Collectvideo"); gotToken(this); this.removeMovieClip(); } }
Instance of Symbol 363 MovieClip "escalator" in Frame 799
onClipEvent (load) { platformType = "escalator"; visible = false; thisMov = 0; direction = 1; } onClipEvent (enterFrame) { _root.platformBehavior(platformType, this); }
Instance of Symbol 233 MovieClip in Frame 799
onClipEvent (load) { _root.attachMovie("turbo_whole", "turbo", 10000); if (382 < _root.entryheight) { _root.entryheight = 382; } if (_root.lastentry == "l") { _root.turbo._x = 15; _root.turbo._y = _root.entryheight; } else { _root.turbo._x = 575; _root.turbo._y = _root.entryheight; _root.turbo.gotoAndStop(10); } this._xscale; _root.initialiseMan(); } onClipEvent (enterFrame) { _root.checkMan(); }
Instance of Symbol 399 MovieClip "banner" in Frame 799
onClipEvent (load) { dropped = false; if (_root.gamelevel == 1) { videosNeeded = 2; } else if (_root.gamelevel == 2) { videosNeeded = 4; } else { videosNeeded = 6; } } onClipEvent (enterFrame) { if ((_root.scorePanel.txtCoins == videosNeeded) && (dropped == false)) { this.dropped = true; _root.banner.gotoAndPlay("open"); _root.doorstate = "open"; } }
Instance of Symbol 187 MovieClip "scorePanel" in Frame 799
onClipEvent (enterFrame) { _root.scorePanel.txtTimer = math.floor((getTimer() - _root.startTime) / 1000); _root.scorePanel.txtCoins = _root.collected; }
Instance of Symbol 250 MovieClip "lever3" in Frame 799
onClipEvent (load) { hit = false; levernum = 3; if (_root.leverArray[levernum].state != "off") { this.gotoAndPlay("on"); } } onClipEvent (enterFrame) { if (_root.leverArray[levernum].state == "off") { _root.leverTest(this, 75); } }
Instance of Symbol 261 MovieClip "baddie1" in Frame 799
onClipEvent (load) { visible = true; attachedTo = 60; speed = 5.2; move = speed; this.swapDepths(9999); width = this._xscale; floor = _root.platformArray[attachedTo].mclip; this._x = floor._x - (floor._width / 2); } onClipEvent (enterFrame) { floor = _root.platformArray[attachedTo].mclip; this._y = (floor._y + (floor._height / 2)) - 8; platR = floor._x + (floor._width / 2); platL = floor._x - (floor._width / 2); if (platR < (move + this._x)) { this._xscale = -width; move = -move; } else if ((move + this._x) < platL) { this._xscale = width; move = -move; } this._x = this._x + move; if (_root.developer == false) { if (this.hitbox.hitTest(_root.turbo) || (this.hitbox2.hitTest(_root.turbo))) { _root.cleanScreen(1); _root.lastLevel = _root.screen; _root.lives = _root.lives - 1; if (0 >= _root.lives) { _root.gotoAndPlay("gameEnd"); } else { _root.lastLevel = _root.screen - 10; _root.gotoAndPlay("playerDie3"); } } } }
Instance of Symbol 401 MovieClip "floor1" in Frame 799
onClipEvent (load) { platformType = "static"; visible = true; }
Instance of Symbol 245 MovieClip in Frame 799
/* no clip actions */
Frame 800
_root.gameLevel = 3; screen = 12; _root.stopSound("conveyor"); cleanScreen(); buildPlatforms(screen); manwidth = _root.turbo._xscale; stop();
Instance of Symbol 261 MovieClip "baddie3" in Frame 800
onClipEvent (load) { visible = true; attachedTo = 68; speed = 5.2; move = speed; this.swapDepths(9997); width = this._xscale; this._x = _root.platformArray[attachedTo].mclip._x; } onClipEvent (enterFrame) { floor = _root.platformArray[attachedTo].mclip; this._y = (floor._y + (floor._height / 2)) - 8; platR = floor._x + (floor._width / 2); platL = floor._x - (floor._width / 2); if (platR < (move + this._x)) { this._xscale = -width; move = -move; } else if ((move + this._x) < platL) { this._xscale = width; move = -move; } this._x = this._x + move; if (_root.developer == false) { if (this.hitbox.hitTest(_root.turbo) || (this.hitbox2.hitTest(_root.turbo))) { _root.cleanScreen(1); _root.lastLevel = _root.screen; _root.lives = _root.lives - 1; if (0 >= _root.lives) { _root.gotoAndPlay("gameEnd"); } else { _root.lastLevel = _root.screen - 10; _root.gotoAndPlay("playerDie3"); } } } }
Instance of Symbol 261 MovieClip "baddie2" in Frame 800
onClipEvent (load) { visible = true; attachedTo = 67; speed = 5.2; move = speed; this.swapDepths(9998); width = this._xscale; this._x = _root.platformArray[attachedTo].mclip._x; } onClipEvent (enterFrame) { floor = _root.platformArray[attachedTo].mclip; this._y = (floor._y + (floor._height / 2)) - 8; platR = floor._x + (floor._width / 2); platL = floor._x - (floor._width / 2); if (platR < (move + this._x)) { this._xscale = -width; move = -move; } else if ((move + this._x) < platL) { this._xscale = width; move = -move; } this._x = this._x + move; if (_root.developer == false) { if (this.hitbox.hitTest(_root.turbo) || (this.hitbox2.hitTest(_root.turbo))) { _root.cleanScreen(1); _root.lastLevel = _root.screen; _root.lives = _root.lives - 1; if (0 >= _root.lives) { _root.gotoAndPlay("gameEnd"); } else { _root.lastLevel = _root.screen - 10; _root.gotoAndPlay("playerDie3"); } } } }
Instance of Symbol 261 MovieClip "baddie1" in Frame 800
onClipEvent (load) { visible = true; attachedTo = 66; speed = 5.2; move = speed; this.swapDepths(9999); width = this._xscale; this._x = _root.platformArray[attachedTo].mclip._x; } onClipEvent (enterFrame) { floor = _root.platformArray[attachedTo].mclip; this._y = (floor._y + (floor._height / 2)) - 8; platR = floor._x + (floor._width / 2); platL = floor._x - (floor._width / 2); if (platR < (move + this._x)) { this._xscale = -width; move = -move; } else if ((move + this._x) < platL) { this._xscale = width; move = -move; } this._x = this._x + move; if (_root.developer == false) { if (this.hitbox.hitTest(_root.turbo) || (this.hitbox2.hitTest(_root.turbo))) { _root.cleanScreen(1); _root.lastLevel = _root.screen; _root.lives = _root.lives - 1; if (0 >= _root.lives) { _root.gotoAndPlay("gameEnd"); } else { _root.lastLevel = _root.screen - 10; _root.gotoAndPlay("playerDie3"); } } } }
Frame 801
_root.gameLevel = 3; screen = 13; cleanScreen(); buildPlatforms(screen); moysnd = math.random(2); if (moysnd == 1) { _root.playSound("soundR1win"); } else { _root.playSound("soundR1lose"); } manwidth = _root.turbo._xscale; stop();
Instance of Symbol 253 MovieClip in Frame 801
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (this.hitbox.hitTest(_root.turbo) && (hit == false)) { hit = true; _root.lives = _root.lives - 1; if (0 >= _root.lives) { _root.gotoAndPlay("gameEnd"); } else { _root.lastLevel = _root.screen - 10; _root.gotoAndPlay("playerDie3"); } } }
Instance of Symbol 253 MovieClip in Frame 801
onClipEvent (load) { hit = false; } onClipEvent (enterFrame) { if (this.hitbox.hitTest(_root.turbo) && (hit == false)) { hit = true; _root.lives = _root.lives - 1; if (0 >= _root.lives) { _root.gotoAndPlay("gameEnd"); } else { _root.lastLevel = _root.screen - 10; _root.gotoAndPlay("playerDie3"); } } }
Instance of Symbol 261 MovieClip "baddie1" in Frame 801
onClipEvent (load) { visible = true; attachedTo = 70; speed = 5.2; move = speed; this.swapDepths(9992); width = this._xscale; this._x = _root.platformArray[attachedTo].mclip._x; } onClipEvent (enterFrame) { floor = _root.platformArray[attachedTo].mclip; this._y = (floor._y + (floor._height / 2)) - 8; platR = floor._x + (floor._width / 2); platL = floor._x - (floor._width / 2); if (platR < (move + this._x)) { this._xscale = -width; move = -move; } else if ((move + this._x) < platL) { this._xscale = width; move = -move; } this._x = this._x + move; if (_root.developer == false) { if (this.hitbox.hitTest(_root.turbo) || (this.hitbox2.hitTest(_root.turbo))) { _root.cleanScreen(1); _root.lastLevel = _root.screen; _root.lives = _root.lives - 1; if (0 >= _root.lives) { _root.gotoAndPlay("gameEnd"); } else { _root.lastLevel = _root.screen - 10; _root.gotoAndPlay("playerDie3"); } } } }
Instance of Symbol 401 MovieClip "floor1" in Frame 801
onClipEvent (load) { platformType = "static"; visible = true; }
Instance of Symbol 419 MovieClip "floor13" in Frame 801
onClipEvent (load) { platformType = "static"; visible = true; }
Frame 802
_root.gameLevel = 3; screen = 14; _root.stopSound("conveyor"); cleanScreen(); buildPlatforms(screen); buildTokens(screen); manwidth = _root.turbo._xscale; stop();
Instance of Symbol 250 MovieClip "lever5" in Frame 802
onClipEvent (load) { hit = false; levernum = 5; if (_root.leverArray[levernum].state != "off") { this.gotoAndPlay("on"); } } onClipEvent (enterFrame) { if (_root.leverArray[levernum].state == "off") { _root.leverTest(this, 73); } }
Instance of Symbol 250 MovieClip "lever4" in Frame 802
onClipEvent (load) { hit = false; levernum = 4; if (_root.leverArray[levernum].state != "off") { this.gotoAndPlay("on"); } } onClipEvent (enterFrame) { if (_root.leverArray[levernum].state == "off") { _root.leverTest(this, 63); } }
Instance of Symbol 261 MovieClip "baddie1" in Frame 802
onClipEvent (load) { visible = true; attachedTo = 74; speed = 5.2; move = speed; this.swapDepths(9993); width = this._xscale; this._x = _root.platformArray[attachedTo].mclip._x; } onClipEvent (enterFrame) { floor = _root.platformArray[attachedTo].mclip; this._y = (floor._y + (floor._height / 2)) - 8; platR = floor._x + (floor._width / 2); platL = floor._x - (floor._width / 2); if (platR < (move + this._x)) { this._xscale = -width; move = -move; } else if ((move + this._x) < platL) { this._xscale = width; move = -move; } this._x = this._x + move; if (_root.developer == false) { if (this.hitbox.hitTest(_root.turbo) || (this.hitbox2.hitTest(_root.turbo))) { _root.cleanScreen(1); _root.lastLevel = _root.screen; _root.lives = _root.lives - 1; if (0 >= _root.lives) { _root.gotoAndPlay("gameEnd"); } else { _root.lastLevel = _root.screen - 10; _root.gotoAndPlay("playerDie3"); } } } }
Instance of Symbol 454 MovieClip "floor1" in Frame 802
onClipEvent (load) { platformType = "static"; visible = true; }
Frame 803
_root.gameLevel = 3; screen = 15; cleanScreen(); buildPlatforms(screen); manwidth = _root.turbo._xscale; stop();
Instance of Symbol 288 MovieClip "lift" in Frame 803
onClipEvent (load) { opened = "no"; } onClipEvent (enterFrame) { if (key.isDown(52)) { _root.doorstate = "open"; } if (_root.doorstate == "open") { if (opened == "yes") { _root.lift.gotoAndStop("doorsOpen"); if (this.hitbox.hitTest(_root.turbo)) { _root.finishtime = _root.scorePanel.txtTimer; _root.runningTimer = _root.runningTimer + _root.finishTime; _root.finishTime = 0; _root.gotoAndPlay("level3end"); } } else { opened = "yes"; _root.lift.gotoAndPlay("doorsOpening"); } } else { _root.lift.gotoAndStop("doorsClosed"); } }
Frame 804
_root.stopSounds(); _root.cleanScreen(1); _root.removeBaddies(); stop();
Frame 805
cleanScreen(1); gotoAndPlay (788);
Frame 806
cleanScreen(1); gotoAndStop (807); stop();
Frame 807
stopAllSounds(); _root.soundEffects.gotoAndPlay("levelEnd"); stop();
Symbol 21 MovieClip [turbo_whole] Frame 1
stop();
Symbol 21 MovieClip [turbo_whole] Frame 2
stop();
Symbol 21 MovieClip [turbo_whole] Frame 3
stop();
Symbol 21 MovieClip [turbo_whole] Frame 4
stop();
Symbol 21 MovieClip [turbo_whole] Frame 5
stop();
Symbol 21 MovieClip [turbo_whole] Frame 6
stop();
Symbol 21 MovieClip [turbo_whole] Frame 7
stop();
Symbol 21 MovieClip [turbo_whole] Frame 8
stop();
Symbol 21 MovieClip [turbo_whole] Frame 9
stop();
Symbol 21 MovieClip [turbo_whole] Frame 10
stop();
Symbol 55 MovieClip Frame 1
stop();
Symbol 55 MovieClip Frame 2
stop();
Symbol 94 MovieClip Frame 40
stop();
Symbol 102 Button
on (release) { gotoAndPlay (60); }
Symbol 106 Button
on (release) { _root.startTime = getTimer(); _root.gotoGameLevel(1); }
Symbol 112 Button
on (release) { getURL ("http://www.bbc.co.uk/teens/lads/joypad/winstuff/xmas_rules.shtml", "_blank"); }
Symbol 152 Button
on (release) { getURL ("javascript:openWin();"); }
Symbol 163 Button
on (release) { getURL ("http://www.bbc.co.uk/privacy/", "_blank"); }
Symbol 168 Button
on (release) { body = (_root.sendfriendname + "\n\nI am seconds away from winning shed loads of DVDs from the BBC! Can you beat my time in the great Television Centre challenge, and bag the DVDs for yourself?\n\nwww.bbc.co.uk/entertainment/xmas/index.shtml\n\n\nGood Luck\n\n") + _root.sendyourname; loadVariables ("http://www.bbc.co.uk/cgi-bin/navigation/mailto.pl?GO=1", this, "POST"); _root.sentmsg = true; }
Symbol 198 MovieClip Frame 59
stop();
Symbol 198 MovieClip Frame 60
stop();
Symbol 198 MovieClip Frame 61
REFERER = "http://www.bbc.co.uk/entertainment/xmas/"; subject = "BBC DVD Competition"; stop();
Instance of Symbol 159 MovieClip "txtSent" in Symbol 198 MovieClip Frame 61
onClipEvent (load) { } onClipEvent (enterFrame) { if (_root.sentmsg == true) { this._visible = true; } else { this._visible = false; } }
Symbol 198 MovieClip Frame 62
stop();
Symbol 198 MovieClip Frame 63
stop();
Symbol 198 MovieClip Frame 64
stop();
Symbol 198 MovieClip Frame 65
stop();
Symbol 203 Button
on (release) { gotoAndStop (3); _root.music = false; }
Symbol 208 Button
on (release) { gotoAndStop (2); _root.music = true; }
Symbol 209 MovieClip Frame 1
if (_root.music) { gotoAndPlay (2); } else { gotoAndPlay (3); }
Symbol 209 MovieClip Frame 2
if (_root.music) { _root.soundOn(); } else { gotoAndPlay (3); } stop();
Symbol 209 MovieClip Frame 3
if (_root.music) { gotoAndPlay (2); } else { _root.soundOff(); } stop();
Symbol 212 MovieClip Frame 1
stop();
Symbol 212 MovieClip Frame 25
stop();
Symbol 224 MovieClip Frame 1
stop();
Symbol 224 MovieClip Frame 30
visible = false; stop();
Symbol 250 MovieClip Frame 1
stop();
Symbol 250 MovieClip Frame 2
stop();
Instance of Symbol 252 MovieClip "hitbox" in Symbol 253 MovieClip Frame 1
onClipEvent (load) { this._visible = false; }
Instance of Symbol 255 MovieClip "hitbox" in Symbol 261 MovieClip Frame 1
onClipEvent (load) { this._visible = false; }
Symbol 288 MovieClip Frame 1
stop();
Instance of Symbol 284 MovieClip "hitbox" in Symbol 288 MovieClip Frame 1
onClipEvent (load) { this._visible = false; }
Symbol 288 MovieClip Frame 105
stop();
Symbol 294 Button
on (keyPress "<Space>") { _root.removeBaddies(); if (_root.music) { _root.bgmusic.gotoAndPlay("music"); } else { _root.bgmusic.gotoAndPlay("nomusic"); } gotoAndPlay(lastLevel +25); }
Symbol 338 Button
on (keyPress "<Space>") { gotoAndPlay (267); }
Symbol 344 MovieClip Frame 36
gotoAndPlay (1);
Symbol 347 Button
on (release) { _root.gameLevel = 2; _root.txtCoins = 0; _root.doorstate = "closed"; stopAllSounds(); _root.finishTime = 0; _root.startTime = getTimer(); gotoAndPlay (791); }
Symbol 349 Button
on (keyPress "<Space>") { gotoAndPlay (612); }
Symbol 354 Button
on (keyPress "<Space>") { gotoAndPlay (9); }
Symbol 357 Button
on (release) { gotoAndPlay (9); }
Symbol 358 Button
on (release) { _root.invisiblocks = true; _root.gameLevel = 3; stopAllSounds(); _root.doorstate = "closed"; _root.finishTime = 0; _root.startTime = getTimer(); gotoAndPlay (799); }
Symbol 391 Button
on (keyPress "<Space>") { _root.removeBaddies(); if (_root.music) { _root.bgmusic.gotoAndPlay("music"); } else { _root.bgmusic.gotoAndPlay("nomusic"); } gotoAndPlay(lastLevel +790); }
Symbol 399 MovieClip Frame 1
stop();
Symbol 399 MovieClip Frame 25
stop();
Symbol 464 Button
on (keyPress "<Space>") { _root.removeBaddies(); if (_root.music) { _root.bgmusic.gotoAndPlay("music"); } else { _root.bgmusic.gotoAndPlay("nomusic"); } gotoAndPlay(lastLevel +798); }

Library Items

Symbol 1 Sound [sound_boingSound]
Symbol 2 Sound [sound_eastenderstheme]Used by:55
Symbol 3 GraphicUsed by:5 7 9 11 13 15
Symbol 4 GraphicUsed by:5
Symbol 5 MovieClipUses:3 4Used by:16 21
Symbol 6 GraphicUsed by:7
Symbol 7 MovieClipUses:3 6Used by:16
Symbol 8 GraphicUsed by:9
Symbol 9 MovieClipUses:3 8Used by:16
Symbol 10 GraphicUsed by:11
Symbol 11 MovieClipUses:3 10Used by:16
Symbol 12 GraphicUsed by:13
Symbol 13 MovieClipUses:3 12Used by:16
Symbol 14 GraphicUsed by:15
Symbol 15 MovieClipUses:3 14Used by:16 21
Symbol 16 MovieClipUses:5 7 9 11 13 15Used by:21
Symbol 17 GraphicUsed by:18
Symbol 18 MovieClipUses:17Used by:21
Symbol 19 GraphicUsed by:20
Symbol 20 MovieClipUses:19Used by:21
Symbol 21 MovieClip [turbo_whole]Uses:16 15 18 20 5
Symbol 22 FontUsed by:23 174 175 176 177 178 179 180 181 182 183 184 185 346 348 352 356 359
Symbol 23 TextUses:22Used by:Timeline
Symbol 24 GraphicUsed by:25
Symbol 25 MovieClipUses:24Used by:198  Timeline
Symbol 26 FontUsed by:27 28 114 122 123 143 154 155 156 157 210 231 339 350 360 394 396 397 398
Symbol 27 TextUses:26Used by:Timeline
Symbol 28 EditableTextUses:26Used by:Timeline
Symbol 29 MovieClipUsed by:Timeline
Symbol 30 Sound [sound_exitOpen]Used by:55
Symbol 31 Sound [sound_boing]Used by:55
Symbol 32 Sound [sound_zane3]Used by:55
Symbol 33 Sound [sound_pickUpCash]Used by:55
Symbol 34 Sound [sound_foolstheme]Used by:55
Symbol 35 Sound [sound_foolslose]Used by:55
Symbol 36 Sound [sound_foolswin]Used by:55
Symbol 37 Sound [sound_laserSound]Used by:55
Symbol 38 Sound [sound_r1lose]Used by:55
Symbol 39 Sound [sound_r1theme]Used by:55
Symbol 40 Sound [sound_r1win]Used by:55
Symbol 41 Sound [sound_starstheme]Used by:55
Symbol 42 Sound [sound_starslose]Used by:55
Symbol 43 Sound [sound_starswin]Used by:55
Symbol 44 Sound [sound_eastlose]Used by:55
Symbol 45 Sound [sound_eastwin]Used by:55
Symbol 46 SoundUsed by:55
Symbol 47 Sound [sound_conveyorBelt]Used by:55
Symbol 48 Sound [sound_switch]Used by:55
Symbol 49 Sound [sound_collectvideo]Used by:55
Symbol 50 Sound [sound_dying]Used by:55
Symbol 51 Sound [sound_hole]Used by:55
Symbol 52 Sound [sound_endgame]Used by:55
Symbol 53 Sound [sound_jump]Used by:55
Symbol 54 Sound [sound_liftclose]Used by:55
Symbol 55 MovieClipUses:30 31 32 33 2 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54Used by:Timeline
Symbol 56 GraphicUsed by:57
Symbol 57 MovieClipUses:56Used by:198  Timeline
Symbol 58 GraphicUsed by:59
Symbol 59 MovieClipUses:58Used by:94 97
Symbol 60 GraphicUsed by:61
Symbol 61 MovieClipUses:60Used by:94 97
Symbol 62 GraphicUsed by:63
Symbol 63 MovieClipUses:62Used by:94 97
Symbol 64 GraphicUsed by:65
Symbol 65 MovieClipUses:64Used by:94 97
Symbol 66 GraphicUsed by:67
Symbol 67 MovieClipUses:66Used by:94 97
Symbol 68 GraphicUsed by:69
Symbol 69 MovieClipUses:68Used by:94 97
Symbol 70 GraphicUsed by:71
Symbol 71 MovieClipUses:70Used by:94 97
Symbol 72 GraphicUsed by:73
Symbol 73 MovieClipUses:72Used by:94 97
Symbol 74 GraphicUsed by:75
Symbol 75 MovieClipUses:74Used by:94 97
Symbol 76 GraphicUsed by:77
Symbol 77 MovieClipUses:76Used by:94 97
Symbol 78 GraphicUsed by:79
Symbol 79 MovieClipUses:78Used by:94 97
Symbol 80 GraphicUsed by:81
Symbol 81 MovieClipUses:80Used by:94 97
Symbol 82 GraphicUsed by:83
Symbol 83 MovieClipUses:82Used by:94 97
Symbol 84 GraphicUsed by:85
Symbol 85 MovieClipUses:84Used by:94 97
Symbol 86 GraphicUsed by:87
Symbol 87 MovieClipUses:86Used by:94 97
Symbol 88 GraphicUsed by:89
Symbol 89 MovieClipUses:88Used by:94 97
Symbol 90 GraphicUsed by:94
Symbol 91 GraphicUsed by:94
Symbol 92 GraphicUsed by:93
Symbol 93 MovieClipUses:92Used by:94 97
Symbol 94 MovieClipUses:59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 91 90 93Used by:198
Symbol 95 GraphicUsed by:96
Symbol 96 MovieClipUses:95Used by:198  Timeline
Symbol 97 MovieClipUses:93 87 83 79 75 71 67 63 59 89 85 81 77 73 69 65 61Used by:198  Timeline
Symbol 98 GraphicUsed by:99
Symbol 99 MovieClipUses:98Used by:102
Symbol 100 GraphicUsed by:102
Symbol 101 GraphicUsed by:102 106
Symbol 102 ButtonUses:99 100 101Used by:198
Symbol 103 GraphicUsed by:106
Symbol 104 GraphicUsed by:106
Symbol 105 GraphicUsed by:106
Symbol 106 ButtonUses:103 104 105 101Used by:198
Symbol 107 GraphicUsed by:198
Symbol 108 FontUsed by:109 110 158 160 161 165 166 169 171 188
Symbol 109 TextUses:108Used by:112
Symbol 110 TextUses:108Used by:112
Symbol 111 GraphicUsed by:112
Symbol 112 ButtonUses:109 110 111Used by:198
Symbol 113 GraphicUsed by:198
Symbol 114 TextUses:26Used by:198
Symbol 115 GraphicUsed by:120
Symbol 116 GraphicUsed by:120
Symbol 117 GraphicUsed by:120
Symbol 118 GraphicUsed by:120
Symbol 119 GraphicUsed by:120
Symbol 120 MovieClipUses:115 116 117 118 119Used by:198 253
Symbol 121 GraphicUsed by:198 253
Symbol 122 TextUses:26Used by:198
Symbol 123 TextUses:26Used by:198
Symbol 124 GraphicUsed by:128 250
Symbol 125 GraphicUsed by:126
Symbol 126 MovieClipUses:125Used by:128 250
Symbol 127 GraphicUsed by:128 250
Symbol 128 MovieClipUses:124 126 127Used by:129
Symbol 129 MovieClipUses:128Used by:198
Symbol 130 GraphicUsed by:198 228
Symbol 131 GraphicUsed by:136 261 296
Symbol 132 GraphicUsed by:133
Symbol 133 MovieClipUses:132Used by:136 261
Symbol 134 GraphicUsed by:136 261
Symbol 135 GraphicUsed by:136
Symbol 136 MovieClipUses:131 133 134 135Used by:198
Symbol 137 GraphicUsed by:141
Symbol 138 GraphicUsed by:139
Symbol 139 MovieClipUses:138Used by:141
Symbol 140 GraphicUsed by:141
Symbol 141 MovieClipUses:137 139 140Used by:198
Symbol 142 GraphicUsed by:198
Symbol 143 TextUses:26Used by:198
Symbol 144 GraphicUsed by:198
Symbol 145 GraphicUsed by:146
Symbol 146 MovieClipUses:145Used by:198  Timeline
Symbol 147 GraphicUsed by:148 150
Symbol 148 MovieClipUses:147Used by:152
Symbol 149 GraphicUsed by:152
Symbol 150 ButtonUses:147Used by:152
Symbol 151 GraphicUsed by:152
Symbol 152 ButtonUses:148 149 150 151Used by:198
Symbol 153 GraphicUsed by:198
Symbol 154 EditableTextUses:26Used by:198
Symbol 155 EditableTextUses:26Used by:198
Symbol 156 EditableTextUses:26Used by:198
Symbol 157 EditableTextUses:26Used by:198
Symbol 158 TextUses:108Used by:159
Symbol 159 MovieClipUses:158Used by:198
Symbol 160 TextUses:108Used by:163
Symbol 161 TextUses:108Used by:163
Symbol 162 GraphicUsed by:163
Symbol 163 ButtonUses:160 161 162Used by:198
Symbol 164 GraphicUsed by:198
Symbol 165 TextUses:108Used by:168
Symbol 166 TextUses:108Used by:168
Symbol 167 GraphicUsed by:168
Symbol 168 ButtonUses:165 166 167Used by:198
Symbol 169 TextUses:108Used by:198
Symbol 170 GraphicUsed by:198
Symbol 171 TextUses:108Used by:198
Symbol 172 GraphicUsed by:173
Symbol 173 MovieClipUses:172Used by:198
Symbol 174 EditableTextUses:22Used by:187
Symbol 175 EditableTextUses:22Used by:187
Symbol 176 EditableTextUses:22Used by:187
Symbol 177 TextUses:22Used by:187
Symbol 178 TextUses:22Used by:187
Symbol 179 TextUses:22Used by:187
Symbol 180 TextUses:22Used by:187
Symbol 181 TextUses:22Used by:187
Symbol 182 TextUses:22Used by:187
Symbol 183 TextUses:22Used by:187
Symbol 184 TextUses:22Used by:187
Symbol 185 TextUses:22Used by:187
Symbol 186 GraphicUsed by:187
Symbol 187 MovieClipUses:174 175 176 177 178 179 180 181 182 183 184 185 186Used by:198  Timeline
Symbol 188 TextUses:108Used by:198
Symbol 189 GraphicUsed by:190
Symbol 190 MovieClipUses:189Used by:192 354
Symbol 191 GraphicUsed by:192 354
Symbol 192 ButtonUses:190 191Used by:198
Symbol 193 GraphicUsed by:194
Symbol 194 MovieClipUses:193Used by:198  Timeline
Symbol 195 GraphicUsed by:198
Symbol 196 GraphicUsed by:197
Symbol 197 MovieClipUses:196Used by:198  Timeline
Symbol 198 MovieClipUses:57 94 96 25 97 102 106 107 112 113 114 120 121 122 123 129 130 136 141 142 143 144 146 152 153 154 155 156 157 159 163 164 168 169 170 171 173 187 188 192 194 195 197Used by:Timeline
Symbol 199 GraphicUsed by:203
Symbol 200 GraphicUsed by:203
Symbol 201 GraphicUsed by:203
Symbol 202 GraphicUsed by:203
Symbol 203 ButtonUses:199 200 201 202Used by:209
Symbol 204 GraphicUsed by:208
Symbol 205 GraphicUsed by:208
Symbol 206 GraphicUsed by:208
Symbol 207 GraphicUsed by:208
Symbol 208 ButtonUses:204 205 206 207Used by:209
Symbol 209 MovieClipUses:203 208Used by:Timeline
Symbol 210 EditableTextUses:26Used by:212
Symbol 211 GraphicUsed by:212 399
Symbol 212 MovieClipUses:210 211Used by:Timeline
Symbol 213 GraphicUsed by:215
Symbol 214 GraphicUsed by:215
Symbol 215 MovieClipUses:213 214Used by:Timeline
Symbol 216 GraphicUsed by:218
Symbol 217 GraphicUsed by:218
Symbol 218 MovieClipUses:216 217Used by:Timeline
Symbol 219 GraphicUsed by:224
Symbol 220 GraphicUsed by:224
Symbol 221 GraphicUsed by:224
Symbol 222 GraphicUsed by:224
Symbol 223 GraphicUsed by:224
Symbol 224 MovieClipUses:219 220 221 222 223Used by:Timeline
Symbol 225 GraphicUsed by:228
Symbol 226 GraphicUsed by:228
Symbol 227 GraphicUsed by:228
Symbol 228 MovieClipUses:130 225 226 227Used by:Timeline
Symbol 229 GraphicUsed by:230
Symbol 230 MovieClipUses:229Used by:Timeline
Symbol 231 EditableTextUses:26Used by:Timeline
Symbol 232 GraphicUsed by:233
Symbol 233 MovieClipUses:232Used by:Timeline
Symbol 234 GraphicUsed by:237
Symbol 235 GraphicUsed by:237
Symbol 236 GraphicUsed by:237
Symbol 237 MovieClipUses:234 235 236Used by:Timeline
Symbol 238 GraphicUsed by:Timeline
Symbol 239 GraphicUsed by:Timeline
Symbol 240 GraphicUsed by:Timeline
Symbol 241 GraphicUsed by:Timeline
Symbol 242 GraphicUsed by:243  Timeline
Symbol 243 MovieClipUses:242Used by:Timeline
Symbol 244 GraphicUsed by:245  Timeline
Symbol 245 MovieClipUses:244Used by:Timeline
Symbol 246 GraphicUsed by:Timeline
Symbol 247 GraphicUsed by:Timeline
Symbol 248 GraphicUsed by:Timeline
Symbol 249 GraphicUsed by:Timeline
Symbol 250 MovieClipUses:124 126 127Used by:Timeline
Symbol 251 GraphicUsed by:252
Symbol 252 MovieClipUses:251Used by:253
Symbol 253 MovieClipUses:252 120 121Used by:Timeline
Symbol 254 GraphicUsed by:255
Symbol 255 MovieClipUses:254Used by:261
Symbol 256 GraphicUsed by:261
Symbol 257 GraphicUsed by:261
Symbol 258 GraphicUsed by:261
Symbol 259 GraphicUsed by:261
Symbol 260 GraphicUsed by:261
Symbol 261 MovieClipUses:255 131 133 256 257 134 258 259 260Used by:Timeline
Symbol 262 GraphicUsed by:Timeline
Symbol 263 GraphicUsed by:Timeline
Symbol 264 GraphicUsed by:Timeline
Symbol 265 GraphicUsed by:Timeline
Symbol 266 GraphicUsed by:Timeline
Symbol 267 GraphicUsed by:Timeline
Symbol 268 GraphicUsed by:Timeline
Symbol 269 GraphicUsed by:Timeline
Symbol 270 GraphicUsed by:Timeline
Symbol 271 GraphicUsed by:Timeline
Symbol 272 GraphicUsed by:Timeline
Symbol 273 GraphicUsed by:Timeline
Symbol 274 GraphicUsed by:Timeline
Symbol 275 GraphicUsed by:Timeline
Symbol 276 BitmapUsed by:277
Symbol 277 GraphicUses:276Used by:Timeline
Symbol 278 GraphicUsed by:Timeline
Symbol 279 GraphicUsed by:Timeline
Symbol 280 GraphicUsed by:Timeline
Symbol 281 GraphicUsed by:Timeline
Symbol 282 GraphicUsed by:Timeline
Symbol 283 GraphicUsed by:284
Symbol 284 MovieClipUses:283Used by:288
Symbol 285 GraphicUsed by:288
Symbol 286 GraphicUsed by:288
Symbol 287 GraphicUsed by:288
Symbol 288 MovieClipUses:284 285 286 287Used by:Timeline
Symbol 289 GraphicUsed by:Timeline
Symbol 290 GraphicUsed by:Timeline
Symbol 291 GraphicUsed by:Timeline
Symbol 292 GraphicUsed by:Timeline
Symbol 293 GraphicUsed by:294 338 349 391 464
Symbol 294 ButtonUses:293Used by:Timeline
Symbol 295 GraphicUsed by:296
Symbol 296 MovieClipUses:131 295Used by:297
Symbol 297 MovieClipUses:296Used by:Timeline
Symbol 298 GraphicUsed by:299
Symbol 299 MovieClipUses:298Used by:Timeline
Symbol 300 GraphicUsed by:301
Symbol 301 MovieClipUses:300Used by:323
Symbol 302 GraphicUsed by:323
Symbol 303 GraphicUsed by:323 344
Symbol 304 GraphicUsed by:323
Symbol 305 GraphicUsed by:323
Symbol 306 GraphicUsed by:323 344
Symbol 307 GraphicUsed by:323
Symbol 308 GraphicUsed by:323
Symbol 309 GraphicUsed by:323
Symbol 310 GraphicUsed by:323 344
Symbol 311 GraphicUsed by:323 344
Symbol 312 GraphicUsed by:323
Symbol 313 GraphicUsed by:323 344
Symbol 314 GraphicUsed by:323 344
Symbol 315 GraphicUsed by:323 344
Symbol 316 GraphicUsed by:323
Symbol 317 GraphicUsed by:323 344
Symbol 318 GraphicUsed by:323
Symbol 319 GraphicUsed by:323
Symbol 320 GraphicUsed by:323
Symbol 321 GraphicUsed by:323
Symbol 322 GraphicUsed by:323
Symbol 323 MovieClipUses:301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322Used by:Timeline
Symbol 324 GraphicUsed by:Timeline
Symbol 325 GraphicUsed by:327
Symbol 326 GraphicUsed by:327
Symbol 327 MovieClipUses:325 326Used by:Timeline
Symbol 328 GraphicUsed by:329
Symbol 329 MovieClipUses:328Used by:Timeline
Symbol 330 GraphicUsed by:Timeline
Symbol 331 GraphicUsed by:Timeline
Symbol 332 GraphicUsed by:Timeline
Symbol 333 GraphicUsed by:Timeline
Symbol 334 GraphicUsed by:Timeline
Symbol 335 GraphicUsed by:Timeline
Symbol 336 GraphicUsed by:Timeline
Symbol 337 GraphicUsed by:Timeline
Symbol 338 ButtonUses:293Used by:Timeline
Symbol 339 EditableTextUses:26Used by:Timeline
Symbol 340 GraphicUsed by:341
Symbol 341 MovieClipUses:340Used by:Timeline
Symbol 342 GraphicUsed by:Timeline
Symbol 343 GraphicUsed by:344
Symbol 344 MovieClipUses:313 315 303 310 311 306 314 343 317Used by:Timeline
Symbol 345 GraphicUsed by:347 357 358
Symbol 346 TextUses:22Used by:347 357 358
Symbol 347 ButtonUses:345 346Used by:Timeline
Symbol 348 TextUses:22Used by:Timeline
Symbol 349 ButtonUses:293Used by:Timeline
Symbol 350 EditableTextUses:26Used by:Timeline
Symbol 351 GraphicUsed by:Timeline
Symbol 352 EditableTextUses:22Used by:Timeline
Symbol 353 GraphicUsed by:Timeline
Symbol 354 ButtonUses:190 191Used by:Timeline
Symbol 355 GraphicUsed by:Timeline
Symbol 356 TextUses:22Used by:Timeline
Symbol 357 ButtonUses:345 346Used by:Timeline
Symbol 358 ButtonUses:345 346Used by:Timeline
Symbol 359 TextUses:22Used by:Timeline
Symbol 360 EditableTextUses:26Used by:Timeline
Symbol 361 GraphicUsed by:363
Symbol 362 GraphicUsed by:363
Symbol 363 MovieClipUses:361 362Used by:Timeline
Symbol 364 GraphicUsed by:Timeline
Symbol 365 GraphicUsed by:Timeline
Symbol 366 GraphicUsed by:Timeline
Symbol 367 GraphicUsed by:Timeline
Symbol 368 GraphicUsed by:Timeline
Symbol 369 GraphicUsed by:Timeline
Symbol 370 GraphicUsed by:Timeline
Symbol 371 GraphicUsed by:Timeline
Symbol 372 GraphicUsed by:Timeline
Symbol 373 GraphicUsed by:Timeline
Symbol 374 GraphicUsed by:Timeline
Symbol 375 GraphicUsed by:Timeline
Symbol 376 GraphicUsed by:Timeline
Symbol 377 GraphicUsed by:Timeline
Symbol 378 GraphicUsed by:Timeline
Symbol 379 GraphicUsed by:Timeline
Symbol 380 GraphicUsed by:Timeline
Symbol 381 GraphicUsed by:Timeline
Symbol 382 GraphicUsed by:Timeline
Symbol 383 GraphicUsed by:Timeline
Symbol 384 GraphicUsed by:Timeline
Symbol 385 GraphicUsed by:Timeline
Symbol 386 GraphicUsed by:Timeline
Symbol 387 FontUsed by:388
Symbol 388 EditableTextUses:387Used by:Timeline
Symbol 389 GraphicUsed by:Timeline
Symbol 390 GraphicUsed by:Timeline
Symbol 391 ButtonUses:293Used by:Timeline
Symbol 392 GraphicUsed by:393
Symbol 393 MovieClipUses:392Used by:Timeline
Symbol 394 EditableTextUses:26Used by:Timeline
Symbol 395 GraphicUsed by:Timeline
Symbol 396 EditableTextUses:26Used by:399
Symbol 397 EditableTextUses:26Used by:399
Symbol 398 EditableTextUses:26Used by:399
Symbol 399 MovieClipUses:396 211 397 398Used by:Timeline
Symbol 400 GraphicUsed by:401
Symbol 401 MovieClipUses:400Used by:Timeline
Symbol 402 GraphicUsed by:Timeline
Symbol 403 GraphicUsed by:Timeline
Symbol 404 GraphicUsed by:407
Symbol 405 GraphicUsed by:407
Symbol 406 GraphicUsed by:407
Symbol 407 MovieClipUses:404 405 406Used by:Timeline
Symbol 408 GraphicUsed by:Timeline
Symbol 409 GraphicUsed by:415
Symbol 410 GraphicUsed by:415
Symbol 411 GraphicUsed by:415
Symbol 412 GraphicUsed by:415
Symbol 413 GraphicUsed by:415
Symbol 414 GraphicUsed by:415
Symbol 415 MovieClipUses:409 410 411 413 412 414Used by:Timeline
Symbol 416 GraphicUsed by:Timeline
Symbol 417 GraphicUsed by:Timeline
Symbol 418 GraphicUsed by:419
Symbol 419 MovieClipUses:418Used by:Timeline
Symbol 420 GraphicUsed by:Timeline
Symbol 421 GraphicUsed by:430
Symbol 422 GraphicUsed by:430 438
Symbol 423 GraphicUsed by:430 438 459
Symbol 424 GraphicUsed by:430 438
Symbol 425 GraphicUsed by:430
Symbol 426 GraphicUsed by:430
Symbol 427 GraphicUsed by:430
Symbol 428 GraphicUsed by:430
Symbol 429 GraphicUsed by:430
Symbol 430 MovieClipUses:421 422 423 424 425 426 427 428 429Used by:Timeline
Symbol 431 GraphicUsed by:432
Symbol 432 MovieClipUses:431Used by:Timeline
Symbol 433 GraphicUsed by:434
Symbol 434 MovieClipUses:433Used by:Timeline
Symbol 435 GraphicUsed by:Timeline
Symbol 436 GraphicUsed by:Timeline
Symbol 437 GraphicUsed by:Timeline
Symbol 438 MovieClipUses:422 423 424Used by:449
Symbol 439 GraphicUsed by:449
Symbol 440 GraphicUsed by:449
Symbol 441 GraphicUsed by:449
Symbol 442 GraphicUsed by:449
Symbol 443 GraphicUsed by:449
Symbol 444 GraphicUsed by:449
Symbol 445 GraphicUsed by:449
Symbol 446 GraphicUsed by:449
Symbol 447 GraphicUsed by:449
Symbol 448 GraphicUsed by:449
Symbol 449 MovieClipUses:438 439 440 441 442 443 444 445 446 447 448Used by:Timeline
Symbol 450 GraphicUsed by:Timeline
Symbol 451 GraphicUsed by:Timeline
Symbol 452 GraphicUsed by:Timeline
Symbol 453 GraphicUsed by:454
Symbol 454 MovieClipUses:453Used by:Timeline
Symbol 455 GraphicUsed by:Timeline
Symbol 456 GraphicUsed by:Timeline
Symbol 457 GraphicUsed by:459
Symbol 458 GraphicUsed by:459
Symbol 459 MovieClipUses:457 423 458Used by:Timeline
Symbol 460 GraphicUsed by:Timeline
Symbol 461 GraphicUsed by:Timeline
Symbol 462 GraphicUsed by:Timeline
Symbol 463 GraphicUsed by:Timeline
Symbol 464 ButtonUses:293Used by:Timeline

Instance Names

"sounds"Frame 9Symbol 55 MovieClip
"sounds"Frame 26Symbol 55 MovieClip
"bgmusic"Frame 26Symbol 209 MovieClip
"banner"Frame 26Symbol 212 MovieClip
"long"Frame 26Symbol 215 MovieClip
"moving"Frame 26Symbol 218 MovieClip
"static"Frame 26Symbol 218 MovieClip
"hidden"Frame 26Symbol 218 MovieClip
"crumbling"Frame 26Symbol 224 MovieClip
"emptyToken"Frame 26Symbol 228 MovieClip
"baseFloor"Frame 26Symbol 230 MovieClip
"scorePanel"Frame 26Symbol 187 MovieClip
"hole"Frame 26Symbol 243 MovieClip
"lever0"Frame 27Symbol 250 MovieClip
"baddie1"Frame 27Symbol 261 MovieClip
"baddie2"Frame 27Symbol 261 MovieClip
"hole"Frame 28Symbol 243 MovieClip
"lever1"Frame 30Symbol 250 MovieClip
"lift"Frame 30Symbol 288 MovieClip
"sounds"Frame 34Symbol 55 MovieClip
"sounds"Frame 378Symbol 55 MovieClip
"sounds"Frame 379Symbol 55 MovieClip
"sounds"Frame 788Symbol 55 MovieClip
"sounds"Frame 789Symbol 55 MovieClip
"sounds"Frame 790Symbol 55 MovieClip
"sounds"Frame 791Symbol 55 MovieClip
"bgmusic"Frame 791Symbol 209 MovieClip
"banner"Frame 791Symbol 212 MovieClip
"scorePanel"Frame 791Symbol 187 MovieClip
"long2"Frame 791Symbol 230 MovieClip
"baseFloor"Frame 791Symbol 230 MovieClip
"emptyToken"Frame 791Symbol 228 MovieClip
"long"Frame 791Symbol 215 MovieClip
"moving"Frame 791Symbol 218 MovieClip
"static"Frame 791Symbol 218 MovieClip
"hidden"Frame 791Symbol 218 MovieClip
"crumbling"Frame 791Symbol 224 MovieClip
"escalator"Frame 791Symbol 363 MovieClip
"baddie1"Frame 792Symbol 261 MovieClip
"baddie1"Frame 793Symbol 261 MovieClip
"lever2"Frame 795Symbol 250 MovieClip
"lift"Frame 795Symbol 288 MovieClip
"rock"Frame 799Symbol 393 MovieClip
"baseFloor"Frame 799Symbol 230 MovieClip
"bgmusic"Frame 799Symbol 209 MovieClip
"long"Frame 799Symbol 215 MovieClip
"moving"Frame 799Symbol 218 MovieClip
"static"Frame 799Symbol 218 MovieClip
"hidden"Frame 799Symbol 218 MovieClip
"crumbling"Frame 799Symbol 224 MovieClip
"emptyToken"Frame 799Symbol 228 MovieClip
"escalator"Frame 799Symbol 363 MovieClip
"sounds"Frame 799Symbol 55 MovieClip
"banner"Frame 799Symbol 399 MovieClip
"scorePanel"Frame 799Symbol 187 MovieClip
"lever3"Frame 799Symbol 250 MovieClip
"baddie1"Frame 799Symbol 261 MovieClip
"floor1"Frame 799Symbol 401 MovieClip
"baddie3"Frame 800Symbol 261 MovieClip
"baddie2"Frame 800Symbol 261 MovieClip
"baddie1"Frame 800Symbol 261 MovieClip
"baddie1"Frame 801Symbol 261 MovieClip
"floor1"Frame 801Symbol 401 MovieClip
"floor13"Frame 801Symbol 419 MovieClip
"lever5"Frame 802Symbol 250 MovieClip
"lever4"Frame 802Symbol 250 MovieClip
"baddie1"Frame 802Symbol 261 MovieClip
"floor1"Frame 802Symbol 454 MovieClip
"lift"Frame 803Symbol 288 MovieClip
"sounds"Frame 807Symbol 55 MovieClip
"shootr"Symbol 21 MovieClip [turbo_whole] Frame 3Symbol 15 MovieClip
"txtSent"Symbol 198 MovieClip Frame 61Symbol 159 MovieClip
"hitbox"Symbol 253 MovieClip Frame 1Symbol 252 MovieClip
"hitbox"Symbol 261 MovieClip Frame 1Symbol 255 MovieClip
"hitbox"Symbol 288 MovieClip Frame 1Symbol 284 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "sound_boingSound"
ExportAssets (56)Timeline Frame 1Symbol 2 as "sound_eastenderstheme"
ExportAssets (56)Timeline Frame 1Symbol 21 as "turbo_whole"
ExportAssets (56)Timeline Frame 9Symbol 30 as "sound_exitOpen"
ExportAssets (56)Timeline Frame 9Symbol 31 as "sound_boing"
ExportAssets (56)Timeline Frame 9Symbol 32 as "sound_zane3"
ExportAssets (56)Timeline Frame 9Symbol 33 as "sound_pickUpCash"
ExportAssets (56)Timeline Frame 9Symbol 2 as "sound_eastenderstheme"
ExportAssets (56)Timeline Frame 9Symbol 34 as "sound_foolstheme"
ExportAssets (56)Timeline Frame 9Symbol 35 as "sound_foolslose"
ExportAssets (56)Timeline Frame 9Symbol 36 as "sound_foolswin"
ExportAssets (56)Timeline Frame 9Symbol 37 as "sound_laserSound"
ExportAssets (56)Timeline Frame 9Symbol 38 as "sound_r1lose"
ExportAssets (56)Timeline Frame 9Symbol 39 as "sound_r1theme"
ExportAssets (56)Timeline Frame 9Symbol 40 as "sound_r1win"
ExportAssets (56)Timeline Frame 9Symbol 41 as "sound_starstheme"
ExportAssets (56)Timeline Frame 9Symbol 42 as "sound_starslose"
ExportAssets (56)Timeline Frame 9Symbol 43 as "sound_starswin"
ExportAssets (56)Timeline Frame 9Symbol 44 as "sound_eastlose"
ExportAssets (56)Timeline Frame 9Symbol 45 as "sound_eastwin"
ExportAssets (56)Timeline Frame 9Symbol 47 as "sound_conveyorBelt"
ExportAssets (56)Timeline Frame 9Symbol 32 as "sound_zane3"
ExportAssets (56)Timeline Frame 9Symbol 48 as "sound_switch"
ExportAssets (56)Timeline Frame 9Symbol 49 as "sound_collectvideo"
ExportAssets (56)Timeline Frame 9Symbol 50 as "sound_dying"
ExportAssets (56)Timeline Frame 9Symbol 51 as "sound_hole"
ExportAssets (56)Timeline Frame 9Symbol 52 as "sound_endgame"
ExportAssets (56)Timeline Frame 9Symbol 53 as "sound_jump"
ExportAssets (56)Timeline Frame 9Symbol 54 as "sound_liftclose"

Labels

"loader"Frame 2
"splash"Frame 9
"instructions"Frame 25
"screen1"Frame 26
"screen2"Frame 27
"screen3"Frame 28
"screen4"Frame 29
"screen5"Frame 30
"playerDie"Frame 31
"level1end"Frame 32
"gameEnd"Frame 33
"screen1"Frame 791
"screen2"Frame 792
"screen3"Frame 793
"screen4"Frame 794
"screen5"Frame 795
"playerDie2"Frame 796
"level2end"Frame 797
"gameEnd"Frame 798
"screen1"Frame 799
"screen2"Frame 800
"screen3"Frame 801
"screen4"Frame 802
"screen5"Frame 803
"playerDie3"Frame 804
"level3end"Frame 805
"gameEnd"Frame 806
"walkr"Symbol 21 MovieClip [turbo_whole] Frame 1
"walkl"Symbol 21 MovieClip [turbo_whole] Frame 2
"shootr"Symbol 21 MovieClip [turbo_whole] Frame 3
"shootl"Symbol 21 MovieClip [turbo_whole] Frame 4
"jumpr"Symbol 21 MovieClip [turbo_whole] Frame 5
"jumpl"Symbol 21 MovieClip [turbo_whole] Frame 6
"dier"Symbol 21 MovieClip [turbo_whole] Frame 7
"diel"Symbol 21 MovieClip [turbo_whole] Frame 8
"standingr"Symbol 21 MovieClip [turbo_whole] Frame 9
"standingl"Symbol 21 MovieClip [turbo_whole] Frame 10
"off"Symbol 128 MovieClip Frame 1
"on"Symbol 128 MovieClip Frame 62
"music"Symbol 209 MovieClip Frame 2
"nomusic"Symbol 209 MovieClip Frame 3
"open"Symbol 212 MovieClip Frame 2
"off"Symbol 250 MovieClip Frame 1
"on"Symbol 250 MovieClip Frame 2
"doorsClosed"Symbol 288 MovieClip Frame 1
"doorsOpening"Symbol 288 MovieClip Frame 2
"doorsOpen"Symbol 288 MovieClip Frame 105
"open"Symbol 399 MovieClip Frame 2

Dynamic Text Variables

perLoadedSymbol 28 EditableText""
fromSymbol 154 EditableText""
sendSymbol 155 EditableText""
_root.sendfriendnameSymbol 156 EditableText""
_root.sendyournameSymbol 157 EditableText""
txtCoinsSymbol 174 EditableText""
txtLivesSymbol 175 EditableText""
txtTimerSymbol 176 EditableText""
txtExitOpenSymbol 210 EditableText"the lift doors are open!"
frameRateSymbol 231 EditableText"999"
_root.runningTimerSymbol 339 EditableText"99"
_root.runningTimerSymbol 350 EditableText"99"
_root.runningTimerSymbol 352 EditableText"999"
frameRateSymbol 360 EditableText"999"
txtExitOpenSymbol 388 EditableText""
frameRateSymbol 394 EditableText"999"
txtExitOpenSymbol 396 EditableText"Get to the control room!"
txtExitOpenSymbol 397 EditableText"Get to the control room!"
txtExitOpenSymbol 398 EditableText"Get to the control room!"




http://swfchan.com/6/26155/info.shtml
Created: 22/5 -2019 23:40:53 Last modified: 22/5 -2019 23:40:53 Server time: 10/05 -2024 21:37:05