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

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

Shutter Escape The Darkroom.swf

This is the info page for
Flash #22484

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


Text
INSTRUCTIONS
Move around by clicking where you see arrows.
Move towards objects by clicking on them.
Collect items by clicking on them when
highlighted.
Objects can be combined by activating one and
clicking on another in "View details" or on screen.
Collect all the items to fill the squares to the right.
Be patient and expect the unexpected!

close

X

X

close

you have errored

narrative text

Cheat

Skip Intro

Instructions

The Dark Room

Welcome to

Please read the instructions and

expect the unexpected!

Im in a room...

Why is it so dark?

Whats that noise?

How do I get out of here?

YOUR ITEMS

VIEW DETAILS

VIEW DETAILS

VIEW DETAILS

USED

takeAsnap









4

4

4

4

4


SHE NEVER LEAVES YOU

Your full name

Email

Click to agree to the terms and conditions

X

Please keep me informed about future competitions
and marketing

SUBMIT

Please keep me informed about future Shutter news.

SUBMIT YOUR TIME

All escapees will be entered into the prize draw.

Click here to
view the
Leaderboard

Click here to
refer a friend.

CONGRATULATIONS

Click below to view the full leaderboard, or why
not challenge a friend to beat your escape time.

Your friend's full name

Your friend's email

CHALLENGE A FRIEND

Challenge your friends to beat your escape time.
You can challenge as many as you like!

End

THANKS FOR PLAYING

You can come back at any time and try to
improve your escape time.

INCORRECT GAME VALUES

Your game data is incomplete and can not be
submitted. Please ensure you collect all
required objects.

YOUVE ESCAPED

Play again and try and get your score on the leaderboard
for a chance to win some great prizes!

CLICK HERE TO
PLAY AGAIN

ActionScript [AS1/AS2]

Frame 1
_root.introLoaded = false; _root.introPointer = 1; _root.introDir = -1; MovieClip.prototype.tabEnabled = false; Button.prototype.tabEnabled = false; Stage.showMenu = false; _root.onEnterFrame = function () { if (_root.getBytesLoaded() == _root.getBytesTotal()) { _root.gotoAndStop("intro"); delete this.onEnterFrame; } else { if (_root.introPointer > 7) { _root.introPointer = 1; } if (_root.introDir < 0) { if (_root.loadingMsg[_root.introPointer]._y > -4) { _root.loadingMsg[_root.introPointer]._y = _root.loadingMsg[_root.introPointer]._y + _root.introDir; } else { _root.introDir = _root.introDir * -1; } } else if (_root.loadingMsg[_root.introPointer]._y < 0) { _root.loadingMsg[_root.introPointer]._y = _root.loadingMsg[_root.introPointer]._y + _root.introDir; } else { _root.introDir = _root.introDir * -1; _root.introPointer++; } } }; stop();
Frame 6
stop(); _root.audioStatus = "on"; _root.createEmptyMovieClip("ambient_mc", _root.getNextHighestDepth()); ambient = new Sound("ambient_mc"); ambient.attachSound("ambient_loop"); ambient.setVolume(60); ambient.start(0, 999); ambient.onSoundComplete = function () { ambient.start(0, 999); }; _root.btnMute.onRelease = function () { if (_root.audioStatus == "on") { _root.audiofxSoundObject.setVolume(0); _root.ambient.setVolume(0); _root.randomSoundObject.setVolume(0); _root.audioStatus = "off"; } else { _root.audiofxSoundObject.setVolume(80); _root.ambient.setVolume(60); _root.randomSoundObject.setVolume(80); _root.audioStatus = "on"; } }; _root.btnHelp.onRelease = function () { getInstructions(); }; _root.btnSkipIntro.onRelease = function () { _root.btnSkipIntro.removeMovieClip(); _root.gotoAndStop("narrativeIntro"); }; function getInstructions() { _root.instructionClip.removeMovieClip(); _root.attachMovie("instructionClip", "instructionClip", _root.getNextHighestDepth()); _root.instructionClip._x = 90; _root.instructionClip._y = 90; _root.instructionClip.close.onRelease = function () { _root.instructionClip.removeMovieClip(); }; }
Frame 11
stop(); _root.btnSkipIntro.onRelease = function () { _root.gotoAndStop("wall1Dark"); }; function audioFx(snd, md) { trace("audiofx"); audiofxSoundObject.stop(); _root.testAudio = snd; audiofxSoundObject.attachSound(snd); if (_root.audioStatus == "on") { audiofxSoundObject.setVolume(80); } else { audiofxSoundObject.setVolume(0); } audiofxSoundObject.start(); audiofxSoundObject.onSoundComplete = function () { if (md == "l") { audiofxSoundObject.start(); } else { delete audiofxSoundObject.onSoundComplete; } }; } function randomSound() { clearInterval(randomSoundInt); trace("random sound"); tmpSoundRandom = soundArray[Math.floor(Math.random() * soundArray.length)]; trace("sound thing = " + tmpSoundRandom); randomSoundObject.attachSound(tmpSoundRandom); if (_root.audioStatus == "on") { randomSoundObject.setVolume(80); } else { randomSoundObject.setVolume(0); } randomSoundObject.start(); randomSoundObject.onSoundComplete = function () { trace("setting sound"); randomSoundInt = setInterval(randomSound, Math.round(Math.random() * 40000) + 3000); delete randomSoundObject.onSoundComplete; }; } function ghostSound() { clearInterval(_root.randomGhostInt); _root[_root.ghostArray[Math.floor(Math.random() * _root.ghostArray.length)]].gotoAndPlay(2); _root.audioFx("spooky", "s"); trace("GHOST"); } function panAcross(frm1, frm2, end) { var currFrame = frm1; _root.createEmptyMovieClip("framer", _root.getNextHighestDepth()); _root.framer.onEnterFrame = function () { _root.gotoAndStop(currFrame); if (currFrame == frm2) { delete this.onEnterFrame; _root.gotoAndStop(end); } else if (frm1 > frm2) { currFrame--; } else if (frm1 < frm2) { currFrame++; } }; } function callnarrative(obj, msg) { trace("YO"); tmpcount = 0; _root.narrativecopy = _root.detailitem[obj][msg]; _root.narrativetext.removeMovieClip(); _root.attachMovie("narrativetext", "narrativetext", _root.getNextHighestDepth()); _root.narrativetext._x = 100; _root.narrativetext._y = 95; _root.narrativetext.onEnterFrame = function () { if (tmpcount < 48) { tmpcount++; } else { tmpcount = 0; delete this.onEnterFrame; _root.narrativetext.removeMovieClip(); } }; } function setActive(abj) { iwdx = 0; while (iwdx < _root.detailitem.length) { if (_root.detailitem[iwdx].consoleitem == abj) { _root.theactiveObject = iwdx; _root.theactivePanel = abj; _root.detailitem[iwdx].active = true; _root.theactiveObjectisset = true; trace((("theactive is " + _root.theactiveObject) + " and the abj is ") + abj); if (_root.theactiveObject == 1) { if (((_root.detailitem[1].isset == true) && (_root.photosTaken < 3)) && (_root.popUpShowing == false)) { _root.audioFx("cameraCharge", "s"); checkTakePhoto(); } } } else { _root.detailitem[iwdx].active = false; } iwdx++; } } function setUnActive(wbj) { delete _root.btnTakePhoto.onRelease; delete _root.btnTakePhoto.onRollOver; delete _root.btnTakePhoto.onRollOut; delete _root.btnTakePhoto.onPress; _root.theactiveObjectisset = false; _root.theactiveObject = ""; _root.theactivePanel = ""; } function getDetailedReview(obj) { _root.itemCloseUp.removeMovieClip(); delete _root.btnTakePhoto.onRelease; delete _root.btnTakePhoto.onRollOver; delete _root.btnTakePhoto.onRollOut; delete _root.btnTakePhoto.onPress; idx = 0; while (idx < _root.detailitem.length) { if (_root.detailitem[idx].consoleitem == obj) { theobj = idx; trace("theobj is " + theobj); } idx++; } _root.itemFrame = 1; if (((theobj == 1) && (_root.detailitem[2].used == true)) && (_root.detailitem[0].used == true)) { _root.reviewText = _root.detailitem[theobj].moredetail; } else { _root.reviewText = _root.detailitem[theobj].introdetail; } _root.attachMovie("itemCloseUp", "itemCloseUp", _root.getNextHighestDepth()); _root.itemCloseUp._x = 90; _root.itemCloseUp._y = 90; _root.itemCloseUp.itemReview.gotoAndStop(_root.detailitem[theobj].closeupframe); _root.itemCloseUp.close.onRelease = function () { _root.popUpShowing = false; _root.itemCloseUp.removeMovieClip(); checkTakePhoto(); }; _root.popUpShowing = true; if (_root.detailitem[theobj].itemframe != "") { _root.itemCloseUp.itemReview.item.gotoAndStop(_root.detailitem[theobj].itemframe); } if (_root.detailitem[theobj].click == true) { _root.itemCloseUp.itemReview.onRelease = function () { flipItem(theobj); }; } if (_root.detailitem[theobj].type == "incomplete") { trace("incomplete"); if (_root.detailitem[theobj].isset == true) { trace("set"); _root.itemCloseUp.itemReview.item.gotoAndStop(2); } else { trace("not set"); _root.itemCloseUp.itemReview.onRelease = function () { testrelationstoItem(theobj); }; } } } function flipItem(tobj) { trace("HOIH"); if (_root.itemCloseUp.itemReview.item._currentframe == 1) { _root.itemCloseUp.itemReview.item.gotoAndStop(2); _root.reviewText = _root.detailitem[tobj].flipdetail; } else { _root.itemCloseUp.itemReview.item.gotoAndStop(1); _root.reviewText = _root.detailitem[tobj].introdetail; } } function testrelationstoItem(themast) { trace((("themast: " + themast) + " activeobject: ") + _root.theactiveObject); if (themast == 0) { if (_root.theactiveObject == 1) { _root.detailitem[themast].used = true; _root.theactivePanel = ""; _root.detailitem[_root.theactiveObject].active = false; _root.theactiveObjectisset = false; _root.collectionpanel["1"].livestate = "off"; _root.collectionpanel["1"].shader.gotoAndStop(2); _root.itemCloseUp.itemReview.gotoAndStop(3); if (_root.detailitem[2].used == true) { _root.detailitem[_root.theactiveObject].itemframe = 2; _root.itemCloseUp.itemReview.item.gotoAndStop(2); _root.reviewText = _root.detailitem[_root.theactiveObject].moredetail; _root.collectionpanel["2"].gotoAndStop(16); } else { _root.detailitem[_root.theactiveObject].itemframe = 4; _root.itemCloseUp.itemReview.item.gotoAndStop(4); _root.reviewText = _root.detailitem[themast].moredetail; _root.collectionpanel["2"].gotoAndStop(14); _root.itemCloseUp.itemReview.onRelease = function () { testrelationstoItem(1); }; } } else if ((_root.theactiveObject.toString().length > 0) && (_root.theactiveObject != themast)) { _root.reviewText = "This will do nothing"; } } else if (themast == 1) { if (_root.detailitem[themast].isset == false) { if (!((_root.detailitem[0].used == true) && (_root.detailitem[2].used == true))) { if ((_root.theactiveObject == 0) || (_root.theactiveObject == 2)) { if (_root.detailitem[themast].isset == false) { if (_root.theactiveObject == 0) { _root.detailitem[_root.theactiveObject].used = true; _root.theactivePanel = ""; _root.detailitem[_root.theactiveObject].active = false; _root.theactiveObjectisset = false; _root.collectionpanel["1"].livestate = "off"; _root.collectionpanel["1"].shader.gotoAndStop(2); if (_root.detailitem[2].used == true) { _root.detailitem[themast].itemframe = 2; _root.itemCloseUp.itemReview.item.gotoAndStop(2); _root.reviewText = _root.detailitem[themast].moredetail; _root.collectionpanel["2"].gotoAndStop(16); } else { _root.detailitem[themast].itemframe = 4; _root.itemCloseUp.itemReview.item.gotoAndStop(4); _root.reviewText = _root.detailitem[_root.theactiveObject].moredetail; _root.collectionpanel["2"].gotoAndStop(14); } } else if (_root.theactiveObject == 2) { _root.detailitem[_root.theactiveObject].used = true; _root.theactivePanel = ""; _root.detailitem[_root.theactiveObject].active = false; _root.theactiveObjectisset = false; _root.collectionpanel["3"].livestate = "off"; _root.collectionpanel["3"].shader.gotoAndStop(2); if (_root.detailitem[0].used == true) { _root.detailitem[themast].itemframe = 2; _root.itemCloseUp.itemReview.item.gotoAndStop(2); _root.reviewText = _root.detailitem[themast].moredetail; _root.collectionpanel["2"].gotoAndStop(16); } else { _root.detailitem[themast].itemframe = 3; _root.itemCloseUp.itemReview.item.gotoAndStop(3); _root.reviewText = _root.detailitem[_root.theactiveObject].moredetail; _root.collectionpanel["2"].gotoAndStop(15); } } } } else if ((_root.theactiveObject.toString().length > 0) && (_root.theactiveObject != themast)) { _root.reviewText = "This will do nothing"; } } else if (_root.theactiveObject == 3) { if (_root.detailitem[_root.theactiveObject].used == false) { _root.detailitem[_root.theactiveObject].used = true; _root.theactivePanel = ""; _root.theactiveObjectisset = false; _root.reviewText = _root.detailitem[_root.theactiveObject].moredetail; if ((_root.detailitem[4].used == true) && (_root.detailitem[5].used == true)) { _root.reviewText = "The Camera is now ready to use."; _root.detailitem[1].isset = true; } } else { _root.reviewText = "This has already been used."; } } else if (_root.theactiveObject == 4) { _root.detailitem[_root.theactiveObject].used = true; _root.theactivePanel = ""; _root.detailitem[_root.theactiveObject].active = false; _root.theactiveObjectisset = false; _root.collectionpanel["5"].livestate = "off"; _root.collectionpanel["5"].shader.gotoAndStop(2); _root.reviewText = _root.detailitem[_root.theactiveObject].moredetail; if ((_root.detailitem[3].used == true) && (_root.detailitem[5].used == true)) { _root.reviewText = "The Camera is now ready to use."; _root.detailitem[1].isset = true; } } else if (_root.theactiveObject == 5) { _root.detailitem[_root.theactiveObject].used = true; _root.theactivePanel = ""; _root.detailitem[_root.theactiveObject].active = false; _root.theactiveObjectisset = false; _root.collectionpanel["6"].livestate = "off"; _root.collectionpanel["6"].shader.gotoAndStop(2); _root.reviewText = _root.detailitem[_root.theactiveObject].moredetail; if ((_root.detailitem[3].used == true) && (_root.detailitem[4].used == true)) { _root.reviewText = "The Camera is now ready to use."; _root.detailitem[1].isset = true; } } else if ((_root.theactiveObject.toString().length > 0) && (_root.theactiveObject != themast)) { _root.reviewText = "This will do nothing"; } } else if ((_root.theactiveObject.toString().length > 0) && (_root.theactiveObject != themast)) { _root.reviewText = "This will do nothing"; } } else if (themast == 2) { if (_root.theactiveObject == 1) { _root.detailitem[themast].used = true; _root.theactivePanel = ""; _root.detailitem[_root.theactiveObject].active = false; _root.theactiveObjectisset = false; _root.collectionpanel["3"].livestate = "off"; _root.collectionpanel["3"].shader.gotoAndStop(2); _root.itemCloseUp.itemReview.gotoAndStop(3); if (_root.detailitem[0].used == true) { _root.detailitem[_root.theactiveObject].itemframe = 2; _root.itemCloseUp.itemReview.item.gotoAndStop(2); _root.reviewText = _root.detailitem[_root.theactiveObject].moredetail; _root.collectionpanel["2"].gotoAndStop(16); } else { _root.detailitem[_root.theactiveObject].itemframe = 3; _root.itemCloseUp.itemReview.item.gotoAndStop(3); _root.reviewText = _root.detailitem[themast].moredetail; _root.collectionpanel["2"].gotoAndStop(15); _root.itemCloseUp.itemReview.onRelease = function () { testrelationstoItem(1); }; } } else if ((_root.theactiveObject.toString().length > 0) && (_root.theactiveObject != themast)) { _root.reviewText = "This will do nothing"; } } } function checkTakePhoto() { trace((((((("checkTakePhoto call >> theactiveoject: " + _root.theactiveObject) + " detailitem[1].isset: ") + _root.detailitem[1].isset) + " photostaken: ") + _root.photosTaken) + " currentframe: ") + _root._currentframe); _root.btnTakePhoto.removeMovieClip(); _root.attachMovie("btnTakePhoto", "btnTakePhoto", _root.getNextHighestDepth()); _root.btnTakePhoto._x = 470.8; _root.btnTakePhoto._y = 51.4; if (_root.theactiveObject == 1) { if ((_root.detailitem[1].isset == true) && (_root.photosTaken < 3)) { var _local3 = "n"; if (_root._currentframe == 128) { if (_root.shot1 == false) { _local3 = "y"; } } else if (_root._currentframe == 144) { if (_root.shot2 == false) { _local3 = "y"; } } else if (_root._currentframe == 155) { if (_root.shot3 == false) { _local3 = "y"; } } else if (_root._currentframe == 170) { if (_root.shot4 == false) { _local3 = "y"; } } else if (_root._currentframe == 184) { if (_root.shot5 == false) { _local3 = "y"; } } else if (_root._currentframe == 195) { if (_root.shot6 == false) { _local3 = "y"; } } if (_local3 == "y") { _root.btnTakePhoto.onRelease = (_root.btnTakePhoto.onReleaseOutside = function () { takePhoto(); }); _root.btnTakePhoto.onRollOver = function () { this.gotoAndStop(2); }; _root.btnTakePhoto.onRollOut = function () { this.gotoAndStop(1); }; _root.btnTakePhoto.onPress = function () { this.gotoAndStop(3); }; } } } } function takePhoto() { _root.audioFx("cameraSnap", "s"); var _local3 = ""; var _local2 = ""; if (_root._currentframe == 128) { _root.shot1 = true; _local2 = 11; } else if (_root._currentframe == 144) { _root.shot2 = true; _local2 = 12; } else if (_root._currentframe == 155) { _root.shot3 = true; _local2 = 13; } else if (_root._currentframe == 170) { _root.shot4 = true; _local2 = 14; _root.btnMirror.enabled = true; _root.btnMirror.onRelease = function () { _root.audioFx("reveal", "s"); panAcross(699, 708, 709); }; } else if (_root._currentframe == 184) { _root.shot5 = true; _local2 = 15; } else if (_root._currentframe == 195) { _root.shot6 = true; _local2 = 16; } if (_root.photosTaken == 0) { _root.detailitem[9].closeupframe = _local2; _root.detailitem[9].collected = true; _local3 = 10; } else if (_root.photosTaken == 1) { _root.detailitem[10].closeupframe = _local2; _root.detailitem[10].collected = true; _local3 = 11; } else if (_root.photosTaken == 2) { _root.detailitem[11].closeupframe = _local2; _root.detailitem[11].collected = true; _local3 = 12; } _root.collectionpanel[_local3].gotoAndStop(11); _root.photosTaken++; delete _root.btnTakePhoto.onRelease; delete _root.btnTakePhoto.onRollOver; delete _root.btnTakePhoto.onRollOut; delete _root.btnTakePhoto.onPress; _root.btnTakePhoto.gotoAndStop(1); trace("DELETED"); } function safeEntry(ref) { if ((_root.entryPoint == "") || (_root.entryPoint == undefined)) { _root.entryPoint = 1; } _root.audioFx("click", "s"); if (_root.entryPoint < 6) { _root["code" + _root.entryPoint] = ref; _root.entryPoint++; if (_root.entryPoint >= 6) { var _local2 = (((_root.code1.toString() + _root.code2.toString()) + _root.code3.toString()) + _root.code4.toString()) + _root.code5.toString(); _root.entryPoint = 1; _root.code1 = "?"; _root.code2 = "?"; _root.code3 = "?"; _root.code4 = "?"; _root.code5 = "?"; trace((("combinedKey: " + _local2) + " safecode: ") + _root.safeCode); if (_local2 == _root.safeCode) { _root.audioFx("metal", "s"); if (_root.detailitem[7].collected == true) { panAcross(719, 721, 735); } else { panAcross(716, 718, 722); } } else { _root.audioFx("siren", "s"); } } } } _root.createEmptyMovieClip("audiofx_mc", _root.getNextHighestDepth()); audiofxSoundObject = new Sound("audiofx_mc"); soundArray = new Array(); soundArray.push("heartbeat"); soundArray.push("scream1"); soundArray.push("scream2"); soundArray.push("footsteps"); soundArray.push("rattle"); _root.createEmptyMovieClip("random_mc", _root.getNextHighestDepth()); randomSoundObject = new Sound("random_mc"); randomSoundInt = setInterval(randomSound, Math.round(Math.random() * 40000) + 3000); ghostArray = new Array(); ghostArray.push("ghostClip1"); ghostArray.push("ghostClip2");
Frame 21
stop(); if (!_root.initialVars) { _root.safeCode = "26557"; _root.userStartTime = getTimer(); _root.upArrow._alpha = 0; _root.rightArrow._alpha = 0; _root.downArrow._alpha = 0; _root.leftArrow._alpha = 0; _root.photosTaken = 0; _root.initialVars = true; _root.shot1 = false; _root.shot2 = false; _root.shot3 = false; _root.shot4 = false; _root.shot5 = false; _root.shot6 = false; _root.popUpShowing = false; _root.detailitem = new Array(); _root.detailitem[0] = {desc:"Camera Flash", introdetail:"It's a Camera Part", moredetail:"Youve added it to the Camera.", flipdetail:"", collected:false, used:false, type:"incomplete", click:false, outmessage:"", isset:false, active:false, consoleitem:1, closeupframe:2, iconframe:2, itemframe:""}; _root.detailitem[1] = {desc:"Camera Body", introdetail:"It's a Camera Part", moredetail:"You now have a Camera.", flipdetail:"", collected:false, used:false, type:"incomplete", click:false, outmessage:"That doesn't work.", isset:false, active:false, consoleitem:2, closeupframe:3, iconframe:3, itemframe:1}; _root.detailitem[2] = {desc:"Camera Base", introdetail:"It's a Camera Part", moredetail:"Youve added it to the Camera.", flipdetail:"", collected:false, used:false, type:"incomplete", click:false, outmessage:"This achieves nothing.", isset:false, active:false, consoleitem:3, closeupframe:4, iconframe:4, itemframe:""}; _root.detailitem[3] = {desc:"Film", introdetail:"Its a Camera Film", moredetail:"Youve added it to the Camera.", flipdetail:"There's something written underneath.", collected:false, used:false, type:"interactive", click:true, outmessage:"You can't quite reach that high.", isset:false, active:false, consoleitem:4, closeupframe:5, iconframe:5, itemframe:""}; _root.detailitem[4] = {desc:"Battery1", introdetail:"It's a battery.", moredetail:"Youve added it to the Camera.", flipdetail:"", collected:false, used:false, type:"interactive", click:false, outmessage:"That doesn't take batteries.", isset:false, active:false, consoleitem:5, closeupframe:6, iconframe:6, itemframe:""}; _root.detailitem[5] = {desc:"Battery2", introdetail:"It's a battery.", moredetail:"Youve added it to the Camera.", flipdetail:"", collected:false, used:false, type:"interactive", click:false, outmessage:"That doesn't take batteries.", isset:false, active:false, consoleitem:6, closeupframe:7, iconframe:6, itemframe:""}; _root.detailitem[6] = {desc:"Book", introdetail:"It's a Book.", moredetail:"It's got some sort of diagram.", flipdetail:"It's got some sort of diagram.", collected:false, used:false, type:"interactive", click:true, outmessage:"That doesn't need the power cable.", isset:false, active:false, consoleitem:7, closeupframe:8, iconframe:8, itemframe:""}; _root.detailitem[7] = {desc:"Key", introdetail:"It's a key.", moredetail:"You have unlocked the door.", flipdetail:"", collected:false, used:false, type:"interactive", click:false, outmessage:"The door is locked.", isset:false, active:false, consoleitem:8, closeupframe:9, iconframe:0, itemframe:""}; _root.detailitem[8] = {desc:"Jar", introdetail:"It's a jar.", moredetail:"Something fell to the floor.", flipdetail:"", collected:false, used:false, type:"interactive", click:false, outmessage:"Are you an art collector?", isset:false, active:false, consoleitem:9, closeupframe:10, iconframe:0, itemframe:""}; _root.detailitem[9] = {desc:"Picture 1", introdetail:"", moredetail:"Its a photo that youve taken.", flipdetail:"", collected:false, used:false, type:"reference", click:false, outmessage:"You can't use it for that.", isset:false, active:false, consoleitem:10, closeupframe:11, iconframe:7, itemframe:""}; _root.detailitem[10] = {desc:"Picture 2", introdetail:"", moredetail:"Its a photo that youve taken.", flipdetail:"", collected:false, used:false, type:"reference", click:false, outmessage:"You can't use it for that.", isset:false, active:false, consoleitem:11, closeupframe:12, iconframe:2, itemframe:""}; _root.detailitem[11] = {desc:"Picture 3", introdetail:"", moredetail:"Its a photo that youve taken.", flipdetail:"", collected:false, used:false, type:"reference", click:false, outmessage:"What can you plug into here?", isset:false, active:false, consoleitem:12, closeupframe:13, iconframe:0, itemframe:""}; } checkTakePhoto(); _root.btnLeftArrow.onRelease = function () { _root.leftArrow._alpha = 0; panAcross(100, 94, 86); }; _root.btnLeftArrow.onRollOver = function () { _root.leftArrow._alpha = 100; }; _root.btnLeftArrow.onRollOut = function () { _root.leftArrow._alpha = 0; }; _root.btnRightArrow.onRelease = function () { _root.rightArrow._alpha = 0; panAcross(28, 34, 35); }; _root.btnRightArrow.onRollOver = function () { _root.rightArrow._alpha = 100; }; _root.btnRightArrow.onRollOut = function () { _root.rightArrow._alpha = 0; };
Frame 35
stop(); checkTakePhoto(); _root.btnLeftArrow.onRelease = function () { _root.leftArrow._alpha = 0; panAcross(34, 28, 21); }; _root.btnLeftArrow.onRollOver = function () { _root.leftArrow._alpha = 100; }; _root.btnLeftArrow.onRollOut = function () { _root.leftArrow._alpha = 0; }; _root.btnRightArrow.onRelease = function () { _root.rightArrow._alpha = 0; panAcross(43, 45, 46); }; _root.btnRightArrow.onRollOver = function () { _root.rightArrow._alpha = 100; }; _root.btnRightArrow.onRollOut = function () { _root.rightArrow._alpha = 0; };
Frame 46
stop(); checkTakePhoto(); _root.btnLeftArrow.onRelease = function () { _root.leftArrow._alpha = 0; panAcross(45, 43, 35); }; _root.btnLeftArrow.onRollOver = function () { _root.leftArrow._alpha = 100; }; _root.btnLeftArrow.onRollOut = function () { _root.leftArrow._alpha = 0; }; _root.btnRightArrow.onRelease = function () { _root.rightArrow._alpha = 0; panAcross(54, 60, 61); }; _root.btnRightArrow.onRollOver = function () { _root.rightArrow._alpha = 100; }; _root.btnRightArrow.onRollOut = function () { _root.rightArrow._alpha = 0; };
Frame 61
stop(); checkTakePhoto(); _root.btnLeftArrow.onRelease = function () { _root.leftArrow._alpha = 0; panAcross(60, 54, 46); }; _root.btnLeftArrow.onRollOver = function () { _root.leftArrow._alpha = 100; }; _root.btnLeftArrow.onRollOut = function () { _root.leftArrow._alpha = 0; }; _root.btnRightArrow.onRelease = function () { _root.rightArrow._alpha = 0; panAcross(68, 74, 75); }; _root.btnRightArrow.onRollOver = function () { _root.rightArrow._alpha = 100; }; _root.btnRightArrow.onRollOut = function () { _root.rightArrow._alpha = 0; };
Frame 75
stop(); checkTakePhoto(); _root.btnLeftArrow.onRelease = function () { _root.leftArrow._alpha = 0; panAcross(74, 68, 61); }; _root.btnLeftArrow.onRollOver = function () { _root.leftArrow._alpha = 100; }; _root.btnLeftArrow.onRollOut = function () { _root.leftArrow._alpha = 0; }; _root.btnRightArrow.onRelease = function () { _root.rightArrow._alpha = 0; panAcross(83, 85, 86); }; _root.btnRightArrow.onRollOver = function () { _root.rightArrow._alpha = 100; }; _root.btnRightArrow.onRollOut = function () { _root.rightArrow._alpha = 0; };
Frame 86
stop(); checkTakePhoto(); _root.btnLeftArrow.onRelease = function () { _root.leftArrow._alpha = 0; panAcross(85, 83, 75); }; _root.btnLeftArrow.onRollOver = function () { _root.leftArrow._alpha = 100; }; _root.btnLeftArrow.onRollOut = function () { _root.leftArrow._alpha = 0; }; _root.btnRightArrow.onRelease = function () { _root.rightArrow._alpha = 0; panAcross(94, 100, 21); }; _root.btnRightArrow.onRollOver = function () { _root.rightArrow._alpha = 100; }; _root.btnRightArrow.onRollOut = function () { _root.rightArrow._alpha = 0; }; _root.btnLight.onRelease = function () { panAcross(101, 104, 105); };
Frame 105
stop(); checkTakePhoto(); _root.btnDownArrow.onRollOver = function () { _root.downArrow._alpha = 100; }; _root.btnDownArrow.onRollOut = function () { _root.downArrow._alpha = 0; }; _root.btnDownArrow.onRelease = function () { _root.downArrow._alpha = 0; panAcross(104, 101, 86); }; _root.btnLightSwitch.onRelease = function () { _root.audioFx("click", "s"); _root.gotoAndStop("lightSwitchLight"); };
Frame 116
stop(); checkTakePhoto(); _root.btnLightSwitch.onRelease = function () { _root.audioFx("click", "s"); _root.gotoAndStop("lightSwitchDark"); }; _root.btnDownArrow.onRollOver = function () { _root.downArrow._alpha = 100; }; _root.btnDownArrow.onRollOut = function () { _root.downArrow._alpha = 0; }; _root.btnDownArrow.onRelease = function () { _root.downArrow._alpha = 0; panAcross(213, 210, 195); };
Frame 128
stop(); checkTakePhoto(); _root.btnLeftArrow.onRelease = function () { _root.leftArrow._alpha = 0; panAcross(209, 203, 195); }; _root.btnLeftArrow.onRollOver = function () { _root.leftArrow._alpha = 100; }; _root.btnLeftArrow.onRollOut = function () { _root.leftArrow._alpha = 0; }; _root.btnRightArrow.onRelease = function () { _root.rightArrow._alpha = 0; panAcross(137, 143, 144); }; _root.btnRightArrow.onRollOver = function () { _root.rightArrow._alpha = 100; }; _root.btnRightArrow.onRollOut = function () { _root.rightArrow._alpha = 0; }; _root.btnUpArrow.onRelease = function () { _root.upArrow._alpha = 0; panAcross(214, 216, 217); }; _root.btnUpArrow.onRollOver = function () { _root.upArrow._alpha = 100; }; _root.btnUpArrow.onRollOut = function () { _root.upArrow._alpha = 0; }; _root.btnDownArrow.onRelease = function () { _root.downArrow._alpha = 0; panAcross(227, 229, 230); }; _root.btnDownArrow.onRollOver = function () { _root.downArrow._alpha = 100; }; _root.btnDownArrow.onRollOut = function () { _root.downArrow._alpha = 0; }; _root.btnDoor.onRelease = function () { panAcross(264, 266, 267); };
Frame 144
stop(); checkTakePhoto(); _root.btnLeftArrow.onRelease = function () { _root.leftArrow._alpha = 0; panAcross(143, 137, 128); }; _root.btnLeftArrow.onRollOver = function () { _root.leftArrow._alpha = 100; }; _root.btnLeftArrow.onRollOut = function () { _root.leftArrow._alpha = 0; }; _root.btnRightArrow.onRelease = function () { _root.rightArrow._alpha = 0; panAcross(152, 154, 155); }; _root.btnRightArrow.onRollOver = function () { _root.rightArrow._alpha = 100; }; _root.btnRightArrow.onRollOut = function () { _root.rightArrow._alpha = 0; }; _root.btnPolaroid.onRelease = function () { panAcross(411, 413, 414); }; _root.btnDrawers.onRelease = function () { panAcross(426, 428, 429); }; _root.btnSideShelf.onRelease = function () { if (_root.detailitem[3].collected == true) { panAcross(597, 599, 612); } else { panAcross(597, 599, 600); } };
Frame 155
stop(); checkTakePhoto(); _root.btnLeftArrow.onRelease = function () { _root.leftArrow._alpha = 0; panAcross(154, 152, 144); }; _root.btnLeftArrow.onRollOver = function () { _root.leftArrow._alpha = 100; }; _root.btnLeftArrow.onRollOut = function () { _root.leftArrow._alpha = 0; }; _root.btnRightArrow.onRelease = function () { _root.rightArrow._alpha = 0; panAcross(163, 169, 170); }; _root.btnRightArrow.onRollOver = function () { _root.rightArrow._alpha = 100; }; _root.btnRightArrow.onRollOut = function () { _root.rightArrow._alpha = 0; }; _root.btnShelves.onRelease = function () { panAcross(646, 648, 649); };
Frame 170
stop(); checkTakePhoto(); randomGhostInt = setInterval(ghostSound, Math.round(Math.random() * 40000) + 3000); _root.btnLeftArrow.onRelease = function () { clearInterval(_root.randomGhostInt); _root.leftArrow._alpha = 0; panAcross(169, 163, 155); }; _root.btnLeftArrow.onRollOver = function () { _root.leftArrow._alpha = 100; }; _root.btnLeftArrow.onRollOut = function () { _root.leftArrow._alpha = 0; }; _root.btnRightArrow.onRelease = function () { clearInterval(_root.randomGhostInt); _root.rightArrow._alpha = 0; panAcross(177, 183, 184); }; _root.btnRightArrow.onRollOver = function () { _root.rightArrow._alpha = 100; }; _root.btnRightArrow.onRollOut = function () { _root.rightArrow._alpha = 0; }; _root.btnUpArrow.onRelease = function () { clearInterval(_root.randomGhostInt); _root.upArrow._alpha = 0; panAcross(239, 241, 242); }; _root.btnUpArrow.onRollOver = function () { _root.upArrow._alpha = 100; }; _root.btnUpArrow.onRollOut = function () { _root.upArrow._alpha = 0; }; _root.btnDownArrow.onRelease = function () { clearInterval(_root.randomGhostInt); _root.downArrow._alpha = 0; panAcross(252, 254, 255); }; _root.btnDownArrow.onRollOver = function () { _root.downArrow._alpha = 100; }; _root.btnDownArrow.onRollOut = function () { _root.downArrow._alpha = 0; }; _root.btnMirror.enabled = false; delete _root.btnMirror.onRelease; if ((_root.shot4 == true) || (_root.photosTaken > 2)) { _root.btnMirror.enabled = true; _root.btnMirror.onRelease = function () { clearInterval(_root.randomGhostInt); _root.audioFx("reveal", "s"); panAcross(699, 708, 709); }; }
Frame 184
stop(); checkTakePhoto(); _root.btnLeftArrow.onRelease = function () { _root.leftArrow._alpha = 0; panAcross(183, 177, 170); }; _root.btnLeftArrow.onRollOver = function () { _root.leftArrow._alpha = 100; }; _root.btnLeftArrow.onRollOut = function () { _root.leftArrow._alpha = 0; }; _root.btnRightArrow.onRelease = function () { _root.rightArrow._alpha = 0; panAcross(192, 194, 195); }; _root.btnRightArrow.onRollOver = function () { _root.rightArrow._alpha = 100; }; _root.btnRightArrow.onRollOut = function () { _root.rightArrow._alpha = 0; }; _root.btnSink.onRelease = function () { panAcross(315, 317, 318); }; _root.btnTrays.onRelease = function () { panAcross(327, 329, 330); }; _root.btnLargeDrawers.onRelease = function () { panAcross(479, 481, 482); };
Frame 195
stop(); checkTakePhoto(); _root.btnLeftArrow.onRelease = function () { _root.leftArrow._alpha = 0; panAcross(194, 192, 184); }; _root.btnLeftArrow.onRollOver = function () { _root.leftArrow._alpha = 100; }; _root.btnLeftArrow.onRollOut = function () { _root.leftArrow._alpha = 0; }; _root.btnRightArrow.onRelease = function () { _root.rightArrow._alpha = 0; panAcross(203, 209, 128); }; _root.btnRightArrow.onRollOver = function () { _root.rightArrow._alpha = 100; }; _root.btnRightArrow.onRollOut = function () { _root.rightArrow._alpha = 0; }; _root.btnLight.onRelease = function () { panAcross(210, 213, 116); }; _root.btnBin.onRelease = function () { panAcross(274, 276, 277); }; _root.btnPinBoard.onRelease = function () { panAcross(584, 586, 587); };
Frame 217
stop(); checkTakePhoto(); _root.btnDownArrow.onRollOver = function () { _root.downArrow._alpha = 100; }; _root.btnDownArrow.onRollOut = function () { _root.downArrow._alpha = 0; }; _root.btnDownArrow.onRelease = function () { _root.downArrow._alpha = 0; panAcross(216, 214, 128); };
Frame 230
stop(); checkTakePhoto(); _root.btnUpArrow.onRelease = function () { _root.upArrow._alpha = 0; panAcross(229, 227, 128); }; _root.btnUpArrow.onRollOver = function () { _root.upArrow._alpha = 100; }; _root.btnUpArrow.onRollOut = function () { _root.upArrow._alpha = 0; };
Frame 242
stop(); checkTakePhoto(); _root.btnDownArrow.onRollOver = function () { _root.downArrow._alpha = 100; }; _root.btnDownArrow.onRollOut = function () { _root.downArrow._alpha = 0; }; _root.btnDownArrow.onRelease = function () { _root.downArrow._alpha = 0; panAcross(241, 239, 170); };
Frame 255
stop(); checkTakePhoto(); _root.btnUpArrow.onRelease = function () { _root.upArrow._alpha = 0; panAcross(254, 252, 170); }; _root.btnUpArrow.onRollOver = function () { _root.upArrow._alpha = 100; }; _root.btnUpArrow.onRollOut = function () { _root.upArrow._alpha = 0; }; _root.btnCorner.onRelease = function () { panAcross(371, 373, 374); };
Frame 267
stop(); checkTakePhoto(); _root.btnDownArrow.onRollOver = function () { _root.downArrow._alpha = 100; }; _root.btnDownArrow.onRollOut = function () { _root.downArrow._alpha = 0; }; _root.btnDownArrow.onRelease = function () { _root.downArrow._alpha = 0; panAcross(266, 264, 128); }; _root.btnHandle.onRelease = function () { if (_root.detailitem[7].used == true) { _root.audioFx("creak", "s"); _root.narrativetext.removeMovieClip(); _root.gotoAndStop("escape"); _root.userEndTime = getTimer(); trace("you've escaped!"); } else { _root.audioFx("rattle", "s"); _root.callnarrative(7, "outmessage"); } }; _root.btnLock.onRelease = function () { if (_root.detailitem[7].used == false) { if ((_root.detailitem[7].collected == true) && (_root.theactiveObject == 7)) { _root.audioFx("click", "s"); _root.doorstatus = "unlocked"; _root.callnarrative(7, "moredetail"); _root.detailitem[7].used = true; _root.theactivePanel = ""; _root.detailitem[7].active = false; _root.theactiveObjectisset = false; _root.collectionpanel[8].livestate = "off"; _root.collectionpanel[8].shader.gotoAndStop(9); } else { _root.callnarrative(7, "outmessage"); } } };
Frame 277
stop(); checkTakePhoto(); _root.btnBin.onRelease = function () { if (_root.detailitem[1].collected == true) { panAcross(286, 288, 302); } else { panAcross(283, 285, 289); } }; _root.btnDownArrow.onRollOver = function () { _root.downArrow._alpha = 100; }; _root.btnDownArrow.onRollOut = function () { _root.downArrow._alpha = 0; }; _root.btnDownArrow.onRelease = function () { _root.downArrow._alpha = 0; panAcross(276, 274, 195); };
Frame 289
stop(); checkTakePhoto(); _root.btnObj.onRelease = function () { _root.theDesc = _root.detailitem[1].introdetail; _root.objClose.gotoAndStop(2); }; _root.btnDownArrow.onRollOver = function () { _root.downArrow._alpha = 100; }; _root.btnDownArrow.onRollOut = function () { _root.downArrow._alpha = 0; }; _root.btnDownArrow.onRelease = function () { _root.downArrow._alpha = 0; panAcross(285, 283, 277); };
Frame 302
stop(); checkTakePhoto(); _root.btnDownArrow.onRollOver = function () { _root.downArrow._alpha = 100; }; _root.btnDownArrow.onRollOut = function () { _root.downArrow._alpha = 0; }; _root.btnDownArrow.onRelease = function () { _root.downArrow._alpha = 0; panAcross(288, 286, 277); };
Frame 318
stop(); checkTakePhoto(); _root.audioFx("sink", "l"); _root.btnDownArrow.onRollOver = function () { _root.downArrow._alpha = 100; }; _root.btnDownArrow.onRollOut = function () { _root.downArrow._alpha = 0; }; _root.btnDownArrow.onRelease = function () { _root.downArrow._alpha = 0; panAcross(317, 315, 184); _root.audiofxSoundObject.stop(); };
Frame 330
stop(); checkTakePhoto(); _root.btnTray1.onRelease = function () { _root.gotoAndStop("leftTray"); }; _root.btnTray2.onRelease = function () { if (_root.detailitem[4].collected == true) { _root.gotoAndStop("midTrayNoObj"); } else { _root.gotoAndStop("midTrayObj"); } }; _root.btnTray3.onRelease = function () { _root.gotoAndStop("rightTray"); }; _root.btnDownArrow.onRollOver = function () { _root.downArrow._alpha = 100; }; _root.btnDownArrow.onRollOut = function () { _root.downArrow._alpha = 0; }; _root.btnDownArrow.onRelease = function () { _root.downArrow._alpha = 0; panAcross(329, 327, 184); };
Frame 338
stop(); checkTakePhoto(); _root.btnTray.onRelease = function () { _root.audioFx("click", "s"); _root.gotoAndStop("faceTrays"); };
Frame 344
stop(); checkTakePhoto(); _root.btnTray.onRelease = function () { _root.audioFx("click", "s"); _root.gotoAndStop("faceTrays"); }; _root.btnObj.onRelease = function () { _root.theDesc = _root.detailitem[4].introdetail; _root.objClose.gotoAndStop(2); };
Frame 353
stop(); checkTakePhoto(); _root.btnTray.onRelease = function () { _root.audioFx("click", "s"); _root.gotoAndStop("faceTrays"); };
Frame 363
stop(); checkTakePhoto(); _root.btnTray.onRelease = function () { _root.audioFx("click", "s"); _root.gotoAndStop("faceTrays"); };
Frame 374
stop(); checkTakePhoto(); _root.btnCorner.onRelease = function () { if (_root.detailitem[0].collected == true) { panAcross(392, 394, 626); } else { panAcross(392, 394, 395); } }; _root.btnDownArrow.onRollOver = function () { _root.downArrow._alpha = 100; }; _root.btnDownArrow.onRollOut = function () { _root.downArrow._alpha = 0; }; _root.btnDownArrow.onRelease = function () { _root.downArrow._alpha = 0; panAcross(373, 371, 255); };
Frame 395
stop(); checkTakePhoto(); _root.btnDownArrow.onRollOver = function () { _root.downArrow._alpha = 100; }; _root.btnDownArrow.onRollOut = function () { _root.downArrow._alpha = 0; }; _root.btnDownArrow.onRelease = function () { _root.downArrow._alpha = 0; panAcross(394, 392, 374); }; _root.btnObj.onRelease = function () { _root.theDesc = _root.detailitem[0].introdetail; _root.objClose.gotoAndStop(2); };
Frame 414
stop(); checkTakePhoto(); _root.btnDrawers.onRelease = function () { panAcross(423, 425, 429); }; _root.btnDownArrow.onRollOver = function () { _root.downArrow._alpha = 100; }; _root.btnDownArrow.onRollOut = function () { _root.downArrow._alpha = 0; }; _root.btnDownArrow.onRelease = function () { _root.downArrow._alpha = 0; panAcross(413, 411, 144); };
Frame 429
stop(); checkTakePhoto(); _root.btnDownArrow.onRollOver = function () { _root.downArrow._alpha = 100; }; _root.btnDownArrow.onRollOut = function () { _root.downArrow._alpha = 0; }; _root.btnDownArrow.onRelease = function () { _root.downArrow._alpha = 0; panAcross(428, 426, 144); }; _root.btnTopOpen.onRelease = function () { _root.audioFx("drawer", "s"); _root.gotoAndStop("topDrawerOpen"); }; _root.btnBotOpen.onRelease = function () { _root.audioFx("drawer", "s"); if (_root.detailitem[2].collected == true) { _root.gotoAndStop("botDrawerOpenNoObj"); } else { _root.gotoAndStop("botDrawerOpenObj"); } };
Frame 438
stop(); checkTakePhoto(); _root.btnOpen.onRelease = function () { _root.audioFx("drawer", "s"); _root.gotoAndStop("faceDrawers"); };
Frame 450
stop(); checkTakePhoto(); _root.btnOpen.onRelease = function () { _root.audioFx("drawer", "s"); _root.gotoAndStop("faceDrawers"); }; _root.btnObj.onRelease = function () { _root.theDesc = _root.detailitem[2].introdetail; _root.objClose.gotoAndStop(2); };
Frame 463
stop(); checkTakePhoto(); _root.btnOpen.onRelease = function () { _root.audioFx("drawer", "s"); _root.gotoAndStop("faceDrawers"); };
Frame 482
stop(); checkTakePhoto(); _root.btnTopDraw.onRelease = function () { _root.audioFx("drawer", "s"); _root.gotoAndStop("topLargeDrawerOpen"); }; _root.btnBotDraw.onRelease = function () { _root.audioFx("drawer", "s"); if (_root.detailitem[8].collected == true) { _root.gotoAndStop("bottomLargeDrawerOpenNoObj"); } else { _root.gotoAndStop("bottomLargeDrawerOpenObj"); } }; _root.btnDownArrow.onRollOver = function () { _root.downArrow._alpha = 100; }; _root.btnDownArrow.onRollOut = function () { _root.downArrow._alpha = 0; }; _root.btnDownArrow.onRelease = function () { _root.downArrow._alpha = 0; panAcross(481, 479, 184); };
Frame 494
stop(); checkTakePhoto(); _root.btnTopDraw.onRelease = function () { _root.audioFx("drawer", "s"); _root.gotoAndStop("faceLargeDrawers"); };
Frame 509
stop(); checkTakePhoto(); _root.btnBotDraw.onRelease = function () { _root.audioFx("drawer", "s"); _root.gotoAndStop("faceLargeDrawers"); }; _root.btnObj.onRelease = function () { _root.theDesc = _root.detailitem[8].introdetail; _root.objClose.gotoAndStop(2); };
Frame 528
stop(); checkTakePhoto(); _root.btnBotDraw.onRelease = function () { _root.audioFx("drawer", "s"); _root.gotoAndStop("faceLargeDrawers"); };
Frame 555
stop(); checkTakePhoto(); _root.btnDownArrow.onRollOver = function () { _root.downArrow._alpha = 100; }; _root.btnDownArrow.onRollOut = function () { _root.downArrow._alpha = 0; }; _root.btnDownArrow.onRelease = function () { _root.downArrow._alpha = 0; panAcross(551, 549, 587); };
Frame 569
stop(); checkTakePhoto(); _root.btnDownArrow.onRollOver = function () { _root.downArrow._alpha = 100; }; _root.btnDownArrow.onRollOut = function () { _root.downArrow._alpha = 0; }; _root.btnDownArrow.onRelease = function () { _root.downArrow._alpha = 0; panAcross(554, 552, 587); }; _root.btnObj.onRelease = function () { _root.theDesc = _root.detailitem[5].introdetail; _root.objClose.gotoAndStop(2); };
Frame 587
stop(); checkTakePhoto(); _root.btnBattery.onRelease = function () { if (_root.detailitem[5].collected == true) { panAcross(549, 551, 555); } else { panAcross(552, 554, 569); } }; _root.btnDownArrow.onRollOver = function () { _root.downArrow._alpha = 100; }; _root.btnDownArrow.onRollOut = function () { _root.downArrow._alpha = 0; }; _root.btnDownArrow.onRelease = function () { _root.downArrow._alpha = 0; panAcross(586, 584, 195); };
Frame 600
stop(); checkTakePhoto(); _root.btnDownArrow.onRollOver = function () { _root.downArrow._alpha = 100; }; _root.btnDownArrow.onRollOut = function () { _root.downArrow._alpha = 0; }; _root.btnDownArrow.onRelease = function () { _root.downArrow._alpha = 0; panAcross(599, 597, 144); }; _root.btnObj.onRelease = function () { _root.theDesc = _root.detailitem[3].introdetail; _root.objClose.gotoAndStop(2); };
Frame 612
stop(); checkTakePhoto(); _root.btnDownArrow.onRollOver = function () { _root.downArrow._alpha = 100; }; _root.btnDownArrow.onRollOut = function () { _root.downArrow._alpha = 0; }; _root.btnDownArrow.onRelease = function () { _root.downArrow._alpha = 0; panAcross(599, 597, 144); };
Frame 626
stop(); checkTakePhoto(); _root.btnDownArrow.onRollOver = function () { _root.downArrow._alpha = 100; }; _root.btnDownArrow.onRollOut = function () { _root.downArrow._alpha = 0; }; _root.btnDownArrow.onRelease = function () { _root.downArrow._alpha = 0; panAcross(394, 392, 374); };
Frame 649
stop(); checkTakePhoto(); _root.btnShelves.onRelease = function () { panAcross(660, 662, 663); }; _root.btnDownArrow.onRollOver = function () { _root.downArrow._alpha = 100; }; _root.btnDownArrow.onRollOut = function () { _root.downArrow._alpha = 0; }; _root.btnDownArrow.onRelease = function () { _root.downArrow._alpha = 0; panAcross(648, 646, 155); };
Frame 663
stop(); checkTakePhoto(); _root.btnObj.onRelease = function () { if (_root.detailitem[6].collected == true) { panAcross(675, 677, 688); } else { panAcross(675, 677, 678); } }; _root.btnDownArrow.onRollOver = function () { _root.downArrow._alpha = 100; }; _root.btnDownArrow.onRollOut = function () { _root.downArrow._alpha = 0; }; _root.btnDownArrow.onRelease = function () { _root.downArrow._alpha = 0; panAcross(662, 660, 649); };
Frame 678
stop(); checkTakePhoto(); _root.btnDownArrow.onRollOver = function () { _root.downArrow._alpha = 100; }; _root.btnDownArrow.onRollOut = function () { _root.downArrow._alpha = 0; }; _root.btnDownArrow.onRelease = function () { _root.downArrow._alpha = 0; panAcross(677, 675, 663); }; _root.btnObj.onRelease = function () { _root.theDesc = _root.detailitem[6].introdetail; _root.objClose.gotoAndStop(2); };
Frame 688
stop(); checkTakePhoto(); _root.btnDownArrow.onRollOver = function () { _root.downArrow._alpha = 100; }; _root.btnDownArrow.onRollOut = function () { _root.downArrow._alpha = 0; }; _root.btnDownArrow.onRelease = function () { _root.downArrow._alpha = 0; panAcross(677, 675, 663); };
Frame 709
stop(); checkTakePhoto(); _root.entryPoint = 1; _root.code1 = "?"; _root.code2 = "?"; _root.code3 = "?"; _root.code4 = "?"; _root.code5 = "?"; var i = 1; while (i < 10) { _root["btnPanel" + i].handle = i; _root["btnPanel" + i].onRelease = function () { safeEntry(this.handle); }; i++; } _root.btnDownArrow.onRollOver = function () { _root.downArrow._alpha = 100; }; _root.btnDownArrow.onRollOut = function () { _root.downArrow._alpha = 0; }; _root.btnDownArrow.onRelease = function () { _root.downArrow._alpha = 0; panAcross(708, 699, 170); };
Frame 722
stop(); checkTakePhoto(); _root.btnSafeDoor.onRelease = function () { _root.audioFx("metal", "s"); panAcross(718, 716, 709); }; _root.btnObj.onRelease = function () { _root.theDesc = _root.detailitem[7].introdetail; _root.objClose.gotoAndStop(2); };
Frame 735
stop(); checkTakePhoto(); _root.btnSafeDoor.onRelease = function () { _root.audioFx("metal", "s"); panAcross(721, 719, 709); };
Frame 750
stop(); checkTakePhoto();
Frame 761
function checkAddress(email) { var _local3 = email.indexOf("@"); var _local6 = email.lastIndexOf("@"); var _local4 = email.length; if (((_local3 != _local6) || (_local3 < 1)) || (_local3 > (_local4 - 4))) { return(false); } var _local5 = email.lastIndexOf("."); if (((_local4 - _local5) < 3) || ((_local4 - _local5) > 5)) { return(false); } var _local1 = " ~!#$%^&*()+|=`[]{};:<>,?/\\\"'\r\n"; i = 0; while (i < _local1.length) { if (email.indexOf(_local1.substr(i, 1)) >= 0) { return(false); } i++; } return(true); } stop(); clearInterval(_root.randomGhostInt); clearInterval(_root.randomSoundInt); stopAllSounds(); _root.thePath = ""; _root.terms = false; _root.signedup = false; _root.shuttersignedup = false; _root.sender = new LoadVars(); _root.terms_but.onRelease = function () { getURL ("javascript:open_window('terms.html',500,500);"); }; _root.check_terms.onRelease = function () { if (_root.terms) { this.symbol._alpha = 0; _root.terms = false; } else { this.symbol._alpha = 100; _root.terms = true; } }; _root.newsletter_but.onRelease = function () { if (_root.signedup) { this.symbol._alpha = 0; _root.signedup = false; } else { this.symbol._alpha = 100; _root.signedup = true; } }; _root.shutter_newsletter_but.onRelease = function () { if (_root.shuttersignedup) { this.symbol._alpha = 0; _root.shuttersignedup = false; } else { this.symbol._alpha = 100; _root.shuttersignedup = true; } }; _root.subBtn.onRelease = function () { _root.sender.gameTime = _root.userEndTime - _root.userStartTime; if (_root.sender.gameTime < 0) { _root.cheat = true; } _root.sender.objects_string = ""; ocdx = 0; while (ocdx < _root.detailitem.length) { if (_root.detailitem[ocdx].collected == true) { _root.sender.objects_string = _root.sender.objects_string + (ocdx + ","); } ocdx++; } tmp_objstr = _root.sender.objects_string; tmp_objarr = tmp_objstr.split(","); if (tmp_objarr.length < 8) { _root.cheat = true; } if (_root.uid != undefined) { _root.sender.uid = _root.uid; } _root.attachMovie("error_msg", "error_msg", 20); _root.error_msg._x = 112; _root.error_msg._y = 65; _root.error_copy = "Accessing Database..."; if (_root.signedup) { _root.sender.str_maillist = "y"; } if (_root.shuttersignedup) { _root.sender.str_shutter_maillist = "y"; } if (((_root.sender.name_var.length > 0) && (checkAddress(_root.sender.email_var))) && (_root.terms)) { if (_root.cheat == true) { _root.gotoAndStop("cheat"); } else { _root.sender.sendAndLoad(_root.thePath + "submit.php", _root.sender); _root.sender.onLoad = function () { trace("wibble=" + _root.sender.wibble); if (_root.sender.wibble == "y") { _root.error_msg.removeMovieClip(); _root.winmsg = _root.sender.winmsg; _root.myid = _root.sender.myid; if (_root.cheat == true) { _root.gotoAndStop("cheat"); } else { _root.gotoAndStop("score"); } } else if (_root.sender.wibble == "n") { _root.error_msg.removeMovieClip(); _root.error_copy = "There has been a problem with the database. Please try again."; _root.attachMovie("error_msg", "error_msg", 20); _root.error_msg._x = 112; _root.error_msg._y = 65; _root.error_msg.ok_button.onRelease = function () { _root.error_msg.removeMovieClip(); }; } delete this.onLoad; }; } } else { _root.error_copy = ""; if (!terms) { _root.error_copy = _root.error_copy + "You must agree to our Terms and Conditions to take part. "; } else { _root.error_copy = _root.error_copy + "Please make sure you have entered a user name and a valid email address."; } _root.error_msg.ok_button.onRelease = function () { _root.error_msg.removeMovieClip(); }; } };
Frame 770
stop(); _root.btn_leaderboard.onRelease = function () { getURL ("leaderboard.php", "_BLANK"); }; _root.btn_refer.onRelease = function () { _root.gotoAndStop("refer"); };
Frame 776
stop(); _root.thePath = ""; _root.endSubmit.onRelease = function () { _root.gotoAndStop("endframe"); }; _root.referSubmit.onRelease = function () { _root.attachMovie("error_msg", "error_msg", 20); _root.error_msg._x = 112; _root.error_msg._y = 65; _root.error_copy = "Accessing Database..."; if (checkAddress(_root.sender.friendemail_var)) { _root.sender.myid = _root.myid; _root.sender.wibble == ""; _root.sender.sendAndLoad(_root.thePath + "referral.php", _root.sender); _root.sender.onLoad = function () { trace("hello"); if (_root.sender.wibble == "y") { trace("move on"); _root.error_copy = ""; e_txt.text = ""; f_txt.text = ""; _root.sender.friendemail_var = ""; _root.sender.friendname_var = ""; _root.error_copy = _root.error_copy + "Thanks for entering. You can enter as many friends as you want."; _root.error_msg.ok_button.onRelease = function () { _root.error_msg.removeMovieClip(); }; } else if (_root.sender.wibble == "n") { trace("error"); _root.error_copy = ""; _root.error_copy = _root.error_copy + ("There has been a problem with the database. Please try again. >" + _root.sender.traced); _root.error_msg.ok_button.onRelease = function () { _root.error_msg.removeMovieClip(); }; } delete this.onLoad; }; } else { _root.error_copy = ""; _root.error_copy = _root.error_copy + "Please make sure you have entered a user name and a valid email address."; _root.error_msg.ok_button.onRelease = function () { _root.error_msg.removeMovieClip(); }; } };
Frame 781
_root.btn_leaderboard.onRelease = function () { getURL ("leaderboard.php", "_BLANK"); }; _root.btn_refer.onRelease = function () { _root.gotoAndStop("refer"); };
Frame 788
_root.btn_leaderboard.onRelease = function () { getURL ("leaderboard.php", "_BLANK"); }; stop();
Frame 794
stop(); clearInterval(_root.randomGhostInt); clearInterval(_root.randomSoundInt); stopAllSounds(); _root.btnPlayAgain.onRelease = function () { getURL ("http://www.shutter-themovie.co.uk/game/ext.php", "_blank"); };
Symbol 23 MovieClip Frame 1
stop();
Symbol 30 MovieClip Frame 1
stop();
Symbol 48 MovieClip Frame 1
stop();
Symbol 48 MovieClip Frame 2
stop();
Symbol 48 MovieClip Frame 3
stop();
Symbol 48 MovieClip Frame 4
stop();
Symbol 55 MovieClip Frame 1
stop();
Symbol 55 MovieClip Frame 2
stop();
Symbol 62 MovieClip Frame 1
stop();
Symbol 62 MovieClip Frame 2
stop();
Symbol 79 MovieClip Frame 1
stop();
Symbol 79 MovieClip Frame 2
stop();
Symbol 79 MovieClip Frame 3
stop();
Symbol 79 MovieClip Frame 4
stop();
Symbol 79 MovieClip Frame 5
stop();
Symbol 79 MovieClip Frame 6
stop();
Symbol 79 MovieClip Frame 7
stop();
Symbol 79 MovieClip Frame 8
stop();
Symbol 79 MovieClip Frame 9
stop();
Symbol 79 MovieClip Frame 10
stop();
Symbol 79 MovieClip Frame 11
stop();
Symbol 79 MovieClip Frame 12
stop();
Symbol 79 MovieClip Frame 13
stop();
Symbol 79 MovieClip Frame 14
stop();
Symbol 79 MovieClip Frame 15
stop();
Symbol 79 MovieClip Frame 16
stop();
Symbol 89 MovieClip [btnTakePhoto] Frame 1
stop();
Symbol 89 MovieClip [btnTakePhoto] Frame 2
stop();
Symbol 89 MovieClip [btnTakePhoto] Frame 3
stop();
Symbol 195 MovieClip Frame 110
stop(); _root.btnSkipIntro.swapDepths(9999); _root.btnSkipIntro.removeMovieClip(); btnPlay.onRelease = function () { _root.gotoAndStop("narrativeIntro"); };
Symbol 203 MovieClip Frame 145
_root.gotoAndStop("wall1Dark");
Symbol 217 Button
on (release) { if (_root.theactiveObjectisset == true) { _root.getDetailedReview(_root.theactivePanel); } }
Symbol 220 MovieClip Frame 1
stop();
Symbol 222 Button
on (release) { this.tmpme = this._target; this.tmparray = this.tmpme.split("/"); this.me = this.tmparray.pop(); trace("I am" + this.me); if (this.livestate != "off") { if (_root.theactivePanel == this.me) { _root.setUnActive(this.me); } else { _root.setActive(this.me); } } }
Symbol 225 MovieClip Frame 1
stop();
Symbol 239 MovieClip Frame 1
stop();
Instance of Symbol 220 MovieClip "hilite" in Symbol 239 MovieClip Frame 1
onClipEvent (enterFrame) { this.tmpme = _parent._target; this.tmparray = this.tmpme.split("/"); this.me = this.tmparray.pop(); if (this.me == _root.theactivePanel) { gotoAndStop (2); } else { gotoAndStop (1); } }
Symbol 375 MovieClip Frame 1
stop();
Symbol 375 MovieClip Frame 85
gotoAndStop (1);
Symbol 378 MovieClip Frame 1
stop();
Symbol 378 MovieClip Frame 85
gotoAndStop (1);
Symbol 484 MovieClip Frame 1
stop();
Symbol 484 MovieClip Frame 2
objCollect.onRelease = function () { _root.detailitem[1].collected = true; _root.collectionpanel["2"].gotoAndStop(3); _root.gotoAndStop("binCloseupNoObj"); };
Symbol 508 MovieClip Frame 1
stop();
Symbol 508 MovieClip Frame 2
objCollect.onRelease = function () { _root.detailitem[4].collected = true; _root.collectionpanel["5"].gotoAndStop(6); _root.gotoAndStop("midTrayNoObj"); };
Symbol 530 MovieClip Frame 1
stop();
Symbol 530 MovieClip Frame 2
objCollect.onRelease = function () { _root.detailitem[0].collected = true; _root.collectionpanel["1"].gotoAndStop(2); _root.gotoAndStop("faceW3WallCornerLightNoObj"); };
Symbol 558 MovieClip Frame 1
stop();
Symbol 558 MovieClip Frame 2
objCollect.onRelease = function () { _root.detailitem[2].collected = true; _root.collectionpanel["3"].gotoAndStop(4); _root.gotoAndStop("botDrawerOpenNoObj"); };
Symbol 574 MovieClip Frame 1
stop();
Symbol 574 MovieClip Frame 2
objCollect.onRelease = function () { _root.detailitem[8].collected = true; _root.collectionpanel["9"].gotoAndStop(10); _root.gotoAndStop("bottomLargeDrawerOpenNoObj"); };
Symbol 594 MovieClip Frame 1
stop();
Symbol 594 MovieClip Frame 2
objCollect.onRelease = function () { _root.detailitem[5].collected = true; _root.collectionpanel["6"].gotoAndStop(7); _root.gotoAndStop("faceTopBoardNoObj"); };
Symbol 612 MovieClip Frame 1
stop();
Symbol 612 MovieClip Frame 2
objCollect.onRelease = function () { _root.detailitem[3].collected = true; _root.collectionpanel["4"].gotoAndStop(5); _root.gotoAndStop("faceSideShelfNoObj"); };
Symbol 642 MovieClip Frame 1
stop();
Symbol 642 MovieClip Frame 2
objCollect.onRelease = function () { _root.detailitem[6].collected = true; _root.collectionpanel["7"].gotoAndStop(8); _root.gotoAndStop("faceShelfNoObj"); };
Symbol 685 MovieClip Frame 1
stop();
Symbol 685 MovieClip Frame 2
objCollect.onRelease = function () { _root.detailitem[7].collected = true; _root.collectionpanel["8"].gotoAndStop(9); _root.gotoAndStop("faceSafeOpenNoObj"); };
Symbol 733 MovieClip Frame 58
_root.gotoAndStop("standAloneScreen");

Library Items

Symbol 1 Sound [sink]
Symbol 2 Sound [spooky]
Symbol 3 Sound [siren]
Symbol 4 Sound [cameraSnap]
Symbol 5 Sound [scream2]
Symbol 6 Sound [scream1]
Symbol 7 Sound [reveal]
Symbol 8 Sound [rattle]
Symbol 9 Sound [metal]
Symbol 10 Sound [heartbeat]
Symbol 11 Sound [footsteps]
Symbol 12 Sound [drawer]
Symbol 13 Sound [creak]
Symbol 14 Sound [cameraCharge]
Symbol 15 Sound [click]
Symbol 16 Sound [ambient_loop]
Symbol 17 GraphicUsed by:24 80 208 222
Symbol 18 FontUsed by:19 22 35 37 82 91 111 199 200 201 202 224 483 507 529 557 573 593 611 641 684 732
Symbol 19 TextUses:18Used by:24
Symbol 20 GraphicUsed by:23
Symbol 21 GraphicUsed by:23
Symbol 22 TextUses:18Used by:23
Symbol 23 MovieClipUses:20 21 22Used by:24 80
Symbol 24 MovieClip [instructionClip]Uses:17 19 23
Symbol 25 GraphicUsed by:34
Symbol 26 GraphicUsed by:30
Symbol 27 FontUsed by:28 29 740 741 743 767 768
Symbol 28 TextUses:27Used by:30
Symbol 29 TextUses:27Used by:30
Symbol 30 MovieClipUses:26 28 29Used by:34
Symbol 31 FontUsed by:32 33 667 668 669 670 671 756
Symbol 32 TextUses:31Used by:34
Symbol 33 EditableTextUses:31Used by:34
Symbol 34 MovieClip [error_msg]Uses:25 30 32 33
Symbol 35 EditableTextUses:18Used by:36
Symbol 36 MovieClip [narrativetext]Uses:35
Symbol 37 EditableTextUses:18Used by:80
Symbol 38 BitmapUsed by:39
Symbol 39 GraphicUses:38Used by:79 530
Symbol 40 BitmapUsed by:41
Symbol 41 GraphicUses:40Used by:48 484
Symbol 42 BitmapUsed by:43
Symbol 43 GraphicUses:42Used by:48
Symbol 44 BitmapUsed by:45
Symbol 45 GraphicUses:44Used by:48
Symbol 46 BitmapUsed by:47
Symbol 47 GraphicUses:46Used by:48
Symbol 48 MovieClipUses:41 43 45 47Used by:79
Symbol 49 BitmapUsed by:50
Symbol 50 GraphicUses:49Used by:79 558
Symbol 51 BitmapUsed by:52
Symbol 52 GraphicUses:51Used by:55 612
Symbol 53 BitmapUsed by:54
Symbol 54 GraphicUses:53Used by:55
Symbol 55 MovieClipUses:52 54Used by:79
Symbol 56 BitmapUsed by:57
Symbol 57 GraphicUses:56Used by:79 508 594
Symbol 58 BitmapUsed by:59
Symbol 59 GraphicUses:58Used by:62 642
Symbol 60 BitmapUsed by:61
Symbol 61 GraphicUses:60Used by:62
Symbol 62 MovieClipUses:59 61Used by:79
Symbol 63 BitmapUsed by:64
Symbol 64 GraphicUses:63Used by:79 685
Symbol 65 BitmapUsed by:66
Symbol 66 GraphicUses:65Used by:79 574
Symbol 67 BitmapUsed by:68
Symbol 68 GraphicUses:67Used by:79
Symbol 69 BitmapUsed by:70
Symbol 70 GraphicUses:69Used by:79
Symbol 71 BitmapUsed by:72
Symbol 72 GraphicUses:71Used by:79
Symbol 73 BitmapUsed by:74
Symbol 74 GraphicUses:73Used by:79
Symbol 75 BitmapUsed by:76
Symbol 76 GraphicUses:75Used by:79
Symbol 77 BitmapUsed by:78
Symbol 78 GraphicUses:77Used by:79
Symbol 79 MovieClipUses:39 48 50 55 57 62 64 66 68 70 72 74 76 78Used by:80
Symbol 80 MovieClip [itemCloseUp]Uses:37 17 79 23
Symbol 81 GraphicUsed by:83
Symbol 82 TextUses:18Used by:83
Symbol 83 MovieClip [btnCheat]Uses:81 82
Symbol 84 BitmapUsed by:85 86
Symbol 85 GraphicUses:84Used by:89
Symbol 86 GraphicUses:84Used by:89
Symbol 87 BitmapUsed by:88
Symbol 88 GraphicUses:87Used by:89
Symbol 89 MovieClip [btnTakePhoto]Uses:85 86 88
Symbol 90 GraphicUsed by:92 112
Symbol 91 TextUses:18Used by:92
Symbol 92 MovieClip [btnSkipIntro]Uses:90 91Used by:Timeline
Symbol 93 BitmapUsed by:94
Symbol 94 GraphicUses:93Used by:Timeline
Symbol 95 GraphicUsed by:Timeline
Symbol 96 GraphicUsed by:97
Symbol 97 MovieClipUses:96Used by:110
Symbol 98 GraphicUsed by:99
Symbol 99 MovieClipUses:98Used by:110
Symbol 100 GraphicUsed by:101
Symbol 101 MovieClipUses:100Used by:110
Symbol 102 GraphicUsed by:103
Symbol 103 MovieClipUses:102Used by:110
Symbol 104 GraphicUsed by:105
Symbol 105 MovieClipUses:104Used by:110
Symbol 106 GraphicUsed by:107
Symbol 107 MovieClipUses:106Used by:110
Symbol 108 GraphicUsed by:109
Symbol 109 MovieClipUses:108Used by:110
Symbol 110 MovieClipUses:97 99 101 103 105 107 109Used by:Timeline
Symbol 111 TextUses:18Used by:112
Symbol 112 MovieClipUses:90 111Used by:Timeline
Symbol 113 BitmapUsed by:114 115 116 117 118 119 120 121 122
Symbol 114 GraphicUses:113Used by:195
Symbol 115 GraphicUses:113Used by:195
Symbol 116 GraphicUses:113Used by:195
Symbol 117 GraphicUses:113Used by:195
Symbol 118 GraphicUses:113Used by:195
Symbol 119 GraphicUses:113Used by:195
Symbol 120 GraphicUses:113Used by:195
Symbol 121 GraphicUses:113Used by:195
Symbol 122 GraphicUses:113Used by:195
Symbol 123 BitmapUsed by:124 125 126 127 128 129
Symbol 124 GraphicUses:123Used by:195
Symbol 125 GraphicUses:123Used by:195
Symbol 126 GraphicUses:123Used by:195
Symbol 127 GraphicUses:123Used by:195
Symbol 128 GraphicUses:123Used by:195
Symbol 129 GraphicUses:123Used by:195
Symbol 130 BitmapUsed by:131
Symbol 131 GraphicUses:130Used by:195
Symbol 132 GraphicUsed by:195 733
Symbol 133 BitmapUsed by:134
Symbol 134 GraphicUses:133Used by:195
Symbol 135 GraphicUsed by:195 733
Symbol 136 GraphicUsed by:195 733
Symbol 137 BitmapUsed by:138
Symbol 138 GraphicUses:137Used by:195
Symbol 139 BitmapUsed by:140
Symbol 140 GraphicUses:139Used by:195
Symbol 141 BitmapUsed by:142 143 144 145 146
Symbol 142 GraphicUses:141Used by:195
Symbol 143 GraphicUses:141Used by:195
Symbol 144 GraphicUses:141Used by:195
Symbol 145 GraphicUses:141Used by:195
Symbol 146 GraphicUses:141Used by:195
Symbol 147 BitmapUsed by:148
Symbol 148 GraphicUses:147Used by:195
Symbol 149 BitmapUsed by:150 151 152 153 154 155 156 157 158 159 160 161 162
Symbol 150 GraphicUses:149Used by:195
Symbol 151 GraphicUses:149Used by:195
Symbol 152 GraphicUses:149Used by:195
Symbol 153 GraphicUses:149Used by:195
Symbol 154 GraphicUses:149Used by:195
Symbol 155 GraphicUses:149Used by:195
Symbol 156 GraphicUses:149Used by:195
Symbol 157 GraphicUses:149Used by:195
Symbol 158 GraphicUses:149Used by:195
Symbol 159 GraphicUses:149Used by:195
Symbol 160 GraphicUses:149Used by:195
Symbol 161 GraphicUses:149Used by:195
Symbol 162 GraphicUses:149Used by:195
Symbol 163 BitmapUsed by:164
Symbol 164 GraphicUses:163Used by:195
Symbol 165 BitmapUsed by:166
Symbol 166 GraphicUses:165Used by:195
Symbol 167 BitmapUsed by:168
Symbol 168 GraphicUses:167Used by:195
Symbol 169 BitmapUsed by:170
Symbol 170 GraphicUses:169Used by:195
Symbol 171 BitmapUsed by:172
Symbol 172 GraphicUses:171Used by:195
Symbol 173 BitmapUsed by:174
Symbol 174 GraphicUses:173Used by:195
Symbol 175 BitmapUsed by:176
Symbol 176 GraphicUses:175Used by:195
Symbol 177 BitmapUsed by:178
Symbol 178 GraphicUses:177Used by:195
Symbol 179 BitmapUsed by:180
Symbol 180 GraphicUses:179Used by:195
Symbol 181 BitmapUsed by:182
Symbol 182 GraphicUses:181Used by:195
Symbol 183 BitmapUsed by:184
Symbol 184 GraphicUses:183Used by:195
Symbol 185 FontUsed by:186 188
Symbol 186 TextUses:185Used by:195
Symbol 187 GraphicUsed by:195
Symbol 188 TextUses:185Used by:195
Symbol 189 FontUsed by:190 191
Symbol 190 TextUses:189Used by:195
Symbol 191 TextUses:189Used by:195
Symbol 192 BitmapUsed by:193
Symbol 193 GraphicUses:192Used by:194
Symbol 194 MovieClipUses:193Used by:195
Symbol 195 MovieClipUses:114 115 116 117 118 119 120 121 122 124 125 126 127 128 129 131 132 134 135 136 138 140 142 143 144 145 146 148 150 151 152 153 154 155 156 157 158 159 160 161 162 164 166 168 170 172 174 176 178 180 182 184 186 187 188 190 191 194Used by:Timeline
Symbol 196 GraphicUsed by:198
Symbol 197 GraphicUsed by:198
Symbol 198 ButtonUses:196 197Used by:Timeline
Symbol 199 TextUses:18Used by:203
Symbol 200 TextUses:18Used by:203
Symbol 201 TextUses:18Used by:203
Symbol 202 TextUses:18Used by:203
Symbol 203 MovieClipUses:199 200 201 202Used by:Timeline
Symbol 204 BitmapUsed by:205
Symbol 205 GraphicUses:204Used by:Timeline
Symbol 206 GraphicUsed by:207
Symbol 207 MovieClipUses:206Used by:Timeline
Symbol 208 ButtonUses:17Used by:484 508 530 558 574 594 612 642 685  Timeline
Symbol 209 GraphicUsed by:240
Symbol 210 FontUsed by:211 212 213 751 754 758 760 762 769 771 773 775 777 780
Symbol 211 TextUses:210Used by:240
Symbol 212 TextUses:210Used by:217
Symbol 213 TextUses:210Used by:217
Symbol 214 GraphicUsed by:217
Symbol 215 FontUsed by:216
Symbol 216 TextUses:215Used by:217
Symbol 217 ButtonUses:212 213 214 216Used by:240
Symbol 218 GraphicUsed by:220
Symbol 219 GraphicUsed by:220
Symbol 220 MovieClipUses:218 219Used by:239
Symbol 221 GraphicUsed by:239
Symbol 222 ButtonUses:17Used by:239
Symbol 223 GraphicUsed by:225
Symbol 224 TextUses:18Used by:225
Symbol 225 MovieClipUses:223 224Used by:239
Symbol 226 GraphicUsed by:239
Symbol 227 GraphicUsed by:239
Symbol 228 GraphicUsed by:239
Symbol 229 FontUsed by:230
Symbol 230 TextUses:229Used by:239
Symbol 231 GraphicUsed by:239
Symbol 232 GraphicUsed by:239
Symbol 233 GraphicUsed by:239
Symbol 234 GraphicUsed by:239
Symbol 235 GraphicUsed by:239
Symbol 236 GraphicUsed by:239
Symbol 237 GraphicUsed by:239
Symbol 238 GraphicUsed by:239
Symbol 239 MovieClipUses:220 221 222 225 226 227 228 230 231 232 233 234 235 236 237 238Used by:240
Symbol 240 MovieClipUses:209 211 217 239Used by:Timeline
Symbol 241 BitmapUsed by:242
Symbol 242 GraphicUses:241Used by:Timeline
Symbol 243 BitmapUsed by:244
Symbol 244 GraphicUses:243Used by:Timeline
Symbol 245 BitmapUsed by:246
Symbol 246 GraphicUses:245Used by:Timeline
Symbol 247 BitmapUsed by:248
Symbol 248 GraphicUses:247Used by:Timeline
Symbol 249 BitmapUsed by:250
Symbol 250 GraphicUses:249Used by:Timeline
Symbol 251 BitmapUsed by:252
Symbol 252 GraphicUses:251Used by:Timeline
Symbol 253 BitmapUsed by:254
Symbol 254 GraphicUses:253Used by:Timeline
Symbol 255 BitmapUsed by:256
Symbol 256 GraphicUses:255Used by:Timeline
Symbol 257 BitmapUsed by:258
Symbol 258 GraphicUses:257Used by:Timeline
Symbol 259 BitmapUsed by:260
Symbol 260 GraphicUses:259Used by:Timeline
Symbol 261 BitmapUsed by:262
Symbol 262 GraphicUses:261Used by:Timeline
Symbol 263 BitmapUsed by:264
Symbol 264 GraphicUses:263Used by:Timeline
Symbol 265 BitmapUsed by:266
Symbol 266 GraphicUses:265Used by:Timeline
Symbol 267 BitmapUsed by:268
Symbol 268 GraphicUses:267Used by:Timeline
Symbol 269 BitmapUsed by:270
Symbol 270 GraphicUses:269Used by:Timeline
Symbol 271 BitmapUsed by:272
Symbol 272 GraphicUses:271Used by:Timeline
Symbol 273 BitmapUsed by:274
Symbol 274 GraphicUses:273Used by:Timeline
Symbol 275 BitmapUsed by:276
Symbol 276 GraphicUses:275Used by:Timeline
Symbol 277 BitmapUsed by:278
Symbol 278 GraphicUses:277Used by:Timeline
Symbol 279 BitmapUsed by:280
Symbol 280 GraphicUses:279Used by:Timeline
Symbol 281 BitmapUsed by:282
Symbol 282 GraphicUses:281Used by:Timeline
Symbol 283 BitmapUsed by:284
Symbol 284 GraphicUses:283Used by:Timeline
Symbol 285 BitmapUsed by:286
Symbol 286 GraphicUses:285Used by:Timeline
Symbol 287 BitmapUsed by:288
Symbol 288 GraphicUses:287Used by:Timeline
Symbol 289 BitmapUsed by:290
Symbol 290 GraphicUses:289Used by:Timeline
Symbol 291 BitmapUsed by:292
Symbol 292 GraphicUses:291Used by:Timeline
Symbol 293 BitmapUsed by:294
Symbol 294 GraphicUses:293Used by:Timeline
Symbol 295 BitmapUsed by:296
Symbol 296 GraphicUses:295Used by:Timeline
Symbol 297 BitmapUsed by:298
Symbol 298 GraphicUses:297Used by:Timeline
Symbol 299 BitmapUsed by:300
Symbol 300 GraphicUses:299Used by:Timeline
Symbol 301 BitmapUsed by:302
Symbol 302 GraphicUses:301Used by:Timeline
Symbol 303 BitmapUsed by:304
Symbol 304 GraphicUses:303Used by:Timeline
Symbol 305 BitmapUsed by:306
Symbol 306 GraphicUses:305Used by:Timeline
Symbol 307 BitmapUsed by:308
Symbol 308 GraphicUses:307Used by:Timeline
Symbol 309 BitmapUsed by:310
Symbol 310 GraphicUses:309Used by:Timeline
Symbol 311 BitmapUsed by:312
Symbol 312 GraphicUses:311Used by:Timeline
Symbol 313 BitmapUsed by:314
Symbol 314 GraphicUses:313Used by:Timeline
Symbol 315 BitmapUsed by:316
Symbol 316 GraphicUses:315Used by:Timeline
Symbol 317 BitmapUsed by:318
Symbol 318 GraphicUses:317Used by:Timeline
Symbol 319 BitmapUsed by:320
Symbol 320 GraphicUses:319Used by:Timeline
Symbol 321 BitmapUsed by:322
Symbol 322 GraphicUses:321Used by:Timeline
Symbol 323 BitmapUsed by:324
Symbol 324 GraphicUses:323Used by:Timeline
Symbol 325 BitmapUsed by:326
Symbol 326 GraphicUses:325Used by:Timeline
Symbol 327 BitmapUsed by:328
Symbol 328 GraphicUses:327Used by:Timeline
Symbol 329 BitmapUsed by:330
Symbol 330 GraphicUses:329Used by:Timeline
Symbol 331 BitmapUsed by:332
Symbol 332 GraphicUses:331Used by:Timeline
Symbol 333 BitmapUsed by:334
Symbol 334 GraphicUses:333Used by:Timeline
Symbol 335 BitmapUsed by:336
Symbol 336 GraphicUses:335Used by:Timeline
Symbol 337 BitmapUsed by:338
Symbol 338 GraphicUses:337Used by:Timeline
Symbol 339 BitmapUsed by:340
Symbol 340 GraphicUses:339Used by:Timeline
Symbol 341 BitmapUsed by:342
Symbol 342 GraphicUses:341Used by:Timeline
Symbol 343 BitmapUsed by:344
Symbol 344 GraphicUses:343Used by:Timeline
Symbol 345 BitmapUsed by:346
Symbol 346 GraphicUses:345Used by:Timeline
Symbol 347 BitmapUsed by:348
Symbol 348 GraphicUses:347Used by:Timeline
Symbol 349 BitmapUsed by:350
Symbol 350 GraphicUses:349Used by:Timeline
Symbol 351 BitmapUsed by:352
Symbol 352 GraphicUses:351Used by:Timeline
Symbol 353 BitmapUsed by:354
Symbol 354 GraphicUses:353Used by:Timeline
Symbol 355 BitmapUsed by:356
Symbol 356 GraphicUses:355Used by:Timeline
Symbol 357 BitmapUsed by:358
Symbol 358 GraphicUses:357Used by:Timeline
Symbol 359 BitmapUsed by:360
Symbol 360 GraphicUses:359Used by:Timeline
Symbol 361 BitmapUsed by:362
Symbol 362 GraphicUses:361Used by:Timeline
Symbol 363 BitmapUsed by:364
Symbol 364 GraphicUses:363Used by:Timeline
Symbol 365 BitmapUsed by:366
Symbol 366 GraphicUses:365Used by:Timeline
Symbol 367 BitmapUsed by:368
Symbol 368 GraphicUses:367Used by:Timeline
Symbol 369 BitmapUsed by:370
Symbol 370 GraphicUses:369Used by:Timeline
Symbol 371 BitmapUsed by:372
Symbol 372 GraphicUses:371Used by:Timeline
Symbol 373 BitmapUsed by:374
Symbol 374 GraphicUses:373Used by:375
Symbol 375 MovieClipUses:374Used by:Timeline
Symbol 376 BitmapUsed by:377
Symbol 377 GraphicUses:376Used by:378
Symbol 378 MovieClipUses:377Used by:Timeline
Symbol 379 BitmapUsed by:380
Symbol 380 GraphicUses:379Used by:Timeline
Symbol 381 BitmapUsed by:382
Symbol 382 GraphicUses:381Used by:Timeline
Symbol 383 BitmapUsed by:384
Symbol 384 GraphicUses:383Used by:Timeline
Symbol 385 BitmapUsed by:386
Symbol 386 GraphicUses:385Used by:Timeline
Symbol 387 BitmapUsed by:388
Symbol 388 GraphicUses:387Used by:Timeline
Symbol 389 BitmapUsed by:390
Symbol 390 GraphicUses:389Used by:Timeline
Symbol 391 BitmapUsed by:392
Symbol 392 GraphicUses:391Used by:Timeline
Symbol 393 BitmapUsed by:394
Symbol 394 GraphicUses:393Used by:Timeline
Symbol 395 BitmapUsed by:396
Symbol 396 GraphicUses:395Used by:Timeline
Symbol 397 BitmapUsed by:398
Symbol 398 GraphicUses:397Used by:Timeline
Symbol 399 BitmapUsed by:400
Symbol 400 GraphicUses:399Used by:Timeline
Symbol 401 BitmapUsed by:402
Symbol 402 GraphicUses:401Used by:Timeline
Symbol 403 BitmapUsed by:404
Symbol 404 GraphicUses:403Used by:Timeline
Symbol 405 BitmapUsed by:406
Symbol 406 GraphicUses:405Used by:Timeline
Symbol 407 BitmapUsed by:408
Symbol 408 GraphicUses:407Used by:Timeline
Symbol 409 BitmapUsed by:410
Symbol 410 GraphicUses:409Used by:Timeline
Symbol 411 BitmapUsed by:412
Symbol 412 GraphicUses:411Used by:Timeline
Symbol 413 BitmapUsed by:414
Symbol 414 GraphicUses:413Used by:Timeline
Symbol 415 BitmapUsed by:416
Symbol 416 GraphicUses:415Used by:Timeline
Symbol 417 BitmapUsed by:418
Symbol 418 GraphicUses:417Used by:Timeline
Symbol 419 BitmapUsed by:420
Symbol 420 GraphicUses:419Used by:Timeline
Symbol 421 BitmapUsed by:422
Symbol 422 GraphicUses:421Used by:Timeline
Symbol 423 BitmapUsed by:424
Symbol 424 GraphicUses:423Used by:Timeline
Symbol 425 BitmapUsed by:426
Symbol 426 GraphicUses:425Used by:Timeline
Symbol 427 BitmapUsed by:428
Symbol 428 GraphicUses:427Used by:Timeline
Symbol 429 BitmapUsed by:430
Symbol 430 GraphicUses:429Used by:Timeline
Symbol 431 BitmapUsed by:432
Symbol 432 GraphicUses:431Used by:Timeline
Symbol 433 BitmapUsed by:434
Symbol 434 GraphicUses:433Used by:Timeline
Symbol 435 BitmapUsed by:436
Symbol 436 GraphicUses:435Used by:Timeline
Symbol 437 BitmapUsed by:438
Symbol 438 GraphicUses:437Used by:Timeline
Symbol 439 BitmapUsed by:440
Symbol 440 GraphicUses:439Used by:Timeline
Symbol 441 BitmapUsed by:442
Symbol 442 GraphicUses:441Used by:Timeline
Symbol 443 BitmapUsed by:444
Symbol 444 GraphicUses:443Used by:Timeline
Symbol 445 BitmapUsed by:446
Symbol 446 GraphicUses:445Used by:Timeline
Symbol 447 BitmapUsed by:448
Symbol 448 GraphicUses:447Used by:Timeline
Symbol 449 BitmapUsed by:450
Symbol 450 GraphicUses:449Used by:Timeline
Symbol 451 BitmapUsed by:452
Symbol 452 GraphicUses:451Used by:Timeline
Symbol 453 BitmapUsed by:454
Symbol 454 GraphicUses:453Used by:Timeline
Symbol 455 BitmapUsed by:456
Symbol 456 GraphicUses:455Used by:Timeline
Symbol 457 BitmapUsed by:458
Symbol 458 GraphicUses:457Used by:Timeline
Symbol 459 BitmapUsed by:460
Symbol 460 GraphicUses:459Used by:Timeline
Symbol 461 BitmapUsed by:462
Symbol 462 GraphicUses:461Used by:Timeline
Symbol 463 BitmapUsed by:464
Symbol 464 GraphicUses:463Used by:Timeline
Symbol 465 BitmapUsed by:466
Symbol 466 GraphicUses:465Used by:Timeline
Symbol 467 BitmapUsed by:468
Symbol 468 GraphicUses:467Used by:Timeline
Symbol 469 BitmapUsed by:470
Symbol 470 GraphicUses:469Used by:Timeline
Symbol 471 BitmapUsed by:472
Symbol 472 GraphicUses:471Used by:Timeline
Symbol 473 BitmapUsed by:474
Symbol 474 GraphicUses:473Used by:Timeline
Symbol 475 BitmapUsed by:476
Symbol 476 GraphicUses:475Used by:Timeline
Symbol 477 BitmapUsed by:478
Symbol 478 GraphicUses:477Used by:Timeline
Symbol 479 BitmapUsed by:480
Symbol 480 GraphicUses:479Used by:Timeline
Symbol 481 BitmapUsed by:482
Symbol 482 GraphicUses:481Used by:Timeline
Symbol 483 EditableTextUses:18Used by:484
Symbol 484 MovieClipUses:41 208 483Used by:Timeline
Symbol 485 BitmapUsed by:486
Symbol 486 GraphicUses:485Used by:Timeline
Symbol 487 BitmapUsed by:488
Symbol 488 GraphicUses:487Used by:Timeline
Symbol 489 BitmapUsed by:490
Symbol 490 GraphicUses:489Used by:Timeline
Symbol 491 BitmapUsed by:492
Symbol 492 GraphicUses:491Used by:Timeline
Symbol 493 BitmapUsed by:494
Symbol 494 GraphicUses:493Used by:Timeline
Symbol 495 BitmapUsed by:496
Symbol 496 GraphicUses:495Used by:Timeline
Symbol 497 BitmapUsed by:498
Symbol 498 GraphicUses:497Used by:Timeline
Symbol 499 BitmapUsed by:500
Symbol 500 GraphicUses:499Used by:Timeline
Symbol 501 BitmapUsed by:502
Symbol 502 GraphicUses:501Used by:Timeline
Symbol 503 BitmapUsed by:504
Symbol 504 GraphicUses:503Used by:Timeline
Symbol 505 BitmapUsed by:506
Symbol 506 GraphicUses:505Used by:Timeline
Symbol 507 EditableTextUses:18Used by:508
Symbol 508 MovieClipUses:57 208 507Used by:Timeline
Symbol 509 BitmapUsed by:510
Symbol 510 GraphicUses:509Used by:Timeline
Symbol 511 BitmapUsed by:512
Symbol 512 GraphicUses:511Used by:Timeline
Symbol 513 BitmapUsed by:514
Symbol 514 GraphicUses:513Used by:Timeline
Symbol 515 BitmapUsed by:516
Symbol 516 GraphicUses:515Used by:Timeline
Symbol 517 BitmapUsed by:518
Symbol 518 GraphicUses:517Used by:Timeline
Symbol 519 BitmapUsed by:520
Symbol 520 GraphicUses:519Used by:Timeline
Symbol 521 BitmapUsed by:522
Symbol 522 GraphicUses:521Used by:Timeline
Symbol 523 BitmapUsed by:524
Symbol 524 GraphicUses:523Used by:Timeline
Symbol 525 BitmapUsed by:526
Symbol 526 GraphicUses:525Used by:Timeline
Symbol 527 BitmapUsed by:528
Symbol 528 GraphicUses:527Used by:Timeline
Symbol 529 EditableTextUses:18Used by:530
Symbol 530 MovieClipUses:39 208 529Used by:Timeline
Symbol 531 BitmapUsed by:532
Symbol 532 GraphicUses:531Used by:Timeline
Symbol 533 BitmapUsed by:534
Symbol 534 GraphicUses:533Used by:Timeline
Symbol 535 BitmapUsed by:536
Symbol 536 GraphicUses:535Used by:Timeline
Symbol 537 BitmapUsed by:538
Symbol 538 GraphicUses:537Used by:Timeline
Symbol 539 BitmapUsed by:540
Symbol 540 GraphicUses:539Used by:Timeline
Symbol 541 BitmapUsed by:542
Symbol 542 GraphicUses:541Used by:Timeline
Symbol 543 BitmapUsed by:544
Symbol 544 GraphicUses:543Used by:Timeline
Symbol 545 BitmapUsed by:546
Symbol 546 GraphicUses:545Used by:Timeline
Symbol 547 BitmapUsed by:548
Symbol 548 GraphicUses:547Used by:Timeline
Symbol 549 BitmapUsed by:550
Symbol 550 GraphicUses:549Used by:Timeline
Symbol 551 BitmapUsed by:552
Symbol 552 GraphicUses:551Used by:Timeline
Symbol 553 BitmapUsed by:554
Symbol 554 GraphicUses:553Used by:Timeline
Symbol 555 BitmapUsed by:556
Symbol 556 GraphicUses:555Used by:Timeline
Symbol 557 EditableTextUses:18Used by:558
Symbol 558 MovieClipUses:50 208 557Used by:Timeline
Symbol 559 BitmapUsed by:560
Symbol 560 GraphicUses:559Used by:Timeline
Symbol 561 BitmapUsed by:562
Symbol 562 GraphicUses:561Used by:Timeline
Symbol 563 BitmapUsed by:564
Symbol 564 GraphicUses:563Used by:Timeline
Symbol 565 BitmapUsed by:566
Symbol 566 GraphicUses:565Used by:Timeline
Symbol 567 BitmapUsed by:568
Symbol 568 GraphicUses:567Used by:Timeline
Symbol 569 BitmapUsed by:570
Symbol 570 GraphicUses:569Used by:Timeline
Symbol 571 BitmapUsed by:572
Symbol 572 GraphicUses:571Used by:Timeline
Symbol 573 EditableTextUses:18Used by:574
Symbol 574 MovieClipUses:66 208 573Used by:Timeline
Symbol 575 BitmapUsed by:576
Symbol 576 GraphicUses:575Used by:Timeline
Symbol 577 BitmapUsed by:578
Symbol 578 GraphicUses:577Used by:Timeline
Symbol 579 BitmapUsed by:580
Symbol 580 GraphicUses:579Used by:Timeline
Symbol 581 BitmapUsed by:582
Symbol 582 GraphicUses:581Used by:Timeline
Symbol 583 BitmapUsed by:584
Symbol 584 GraphicUses:583Used by:Timeline
Symbol 585 BitmapUsed by:586
Symbol 586 GraphicUses:585Used by:Timeline
Symbol 587 BitmapUsed by:588
Symbol 588 GraphicUses:587Used by:Timeline
Symbol 589 BitmapUsed by:590
Symbol 590 GraphicUses:589Used by:Timeline
Symbol 591 BitmapUsed by:592
Symbol 592 GraphicUses:591Used by:Timeline
Symbol 593 EditableTextUses:18Used by:594
Symbol 594 MovieClipUses:57 208 593Used by:Timeline
Symbol 595 BitmapUsed by:596
Symbol 596 GraphicUses:595Used by:Timeline
Symbol 597 BitmapUsed by:598
Symbol 598 GraphicUses:597Used by:Timeline
Symbol 599 BitmapUsed by:600
Symbol 600 GraphicUses:599Used by:Timeline
Symbol 601 BitmapUsed by:602
Symbol 602 GraphicUses:601Used by:Timeline
Symbol 603 BitmapUsed by:604
Symbol 604 GraphicUses:603Used by:Timeline
Symbol 605 BitmapUsed by:606
Symbol 606 GraphicUses:605Used by:Timeline
Symbol 607 BitmapUsed by:608
Symbol 608 GraphicUses:607Used by:Timeline
Symbol 609 BitmapUsed by:610
Symbol 610 GraphicUses:609Used by:Timeline
Symbol 611 EditableTextUses:18Used by:612
Symbol 612 MovieClipUses:52 208 611Used by:Timeline
Symbol 613 BitmapUsed by:614
Symbol 614 GraphicUses:613Used by:Timeline
Symbol 615 BitmapUsed by:616
Symbol 616 GraphicUses:615Used by:Timeline
Symbol 617 BitmapUsed by:618
Symbol 618 GraphicUses:617Used by:Timeline
Symbol 619 BitmapUsed by:620
Symbol 620 GraphicUses:619Used by:Timeline
Symbol 621 BitmapUsed by:622
Symbol 622 GraphicUses:621Used by:Timeline
Symbol 623 BitmapUsed by:624
Symbol 624 GraphicUses:623Used by:Timeline
Symbol 625 BitmapUsed by:626
Symbol 626 GraphicUses:625Used by:Timeline
Symbol 627 BitmapUsed by:628
Symbol 628 GraphicUses:627Used by:Timeline
Symbol 629 BitmapUsed by:630
Symbol 630 GraphicUses:629Used by:Timeline
Symbol 631 BitmapUsed by:632
Symbol 632 GraphicUses:631Used by:Timeline
Symbol 633 BitmapUsed by:634
Symbol 634 GraphicUses:633Used by:Timeline
Symbol 635 BitmapUsed by:636
Symbol 636 GraphicUses:635Used by:Timeline
Symbol 637 BitmapUsed by:638
Symbol 638 GraphicUses:637Used by:Timeline
Symbol 639 BitmapUsed by:640
Symbol 640 GraphicUses:639Used by:Timeline
Symbol 641 EditableTextUses:18Used by:642
Symbol 642 MovieClipUses:59 208 641Used by:Timeline
Symbol 643 BitmapUsed by:644
Symbol 644 GraphicUses:643Used by:Timeline
Symbol 645 BitmapUsed by:646
Symbol 646 GraphicUses:645Used by:Timeline
Symbol 647 BitmapUsed by:648
Symbol 648 GraphicUses:647Used by:Timeline
Symbol 649 BitmapUsed by:650
Symbol 650 GraphicUses:649Used by:Timeline
Symbol 651 BitmapUsed by:652
Symbol 652 GraphicUses:651Used by:Timeline
Symbol 653 BitmapUsed by:654
Symbol 654 GraphicUses:653Used by:Timeline
Symbol 655 BitmapUsed by:656
Symbol 656 GraphicUses:655Used by:Timeline
Symbol 657 BitmapUsed by:658
Symbol 658 GraphicUses:657Used by:Timeline
Symbol 659 BitmapUsed by:660
Symbol 660 GraphicUses:659Used by:Timeline
Symbol 661 BitmapUsed by:662
Symbol 662 GraphicUses:661Used by:Timeline
Symbol 663 BitmapUsed by:664
Symbol 664 GraphicUses:663Used by:Timeline
Symbol 665 BitmapUsed by:666
Symbol 666 GraphicUses:665Used by:Timeline
Symbol 667 EditableTextUses:31Used by:Timeline
Symbol 668 EditableTextUses:31Used by:Timeline
Symbol 669 EditableTextUses:31Used by:Timeline
Symbol 670 EditableTextUses:31Used by:Timeline
Symbol 671 EditableTextUses:31Used by:Timeline
Symbol 672 BitmapUsed by:673
Symbol 673 GraphicUses:672Used by:Timeline
Symbol 674 BitmapUsed by:675
Symbol 675 GraphicUses:674Used by:Timeline
Symbol 676 BitmapUsed by:677
Symbol 677 GraphicUses:676Used by:Timeline
Symbol 678 BitmapUsed by:679
Symbol 679 GraphicUses:678Used by:Timeline
Symbol 680 BitmapUsed by:681
Symbol 681 GraphicUses:680Used by:Timeline
Symbol 682 BitmapUsed by:683
Symbol 683 GraphicUses:682Used by:Timeline
Symbol 684 EditableTextUses:18Used by:685
Symbol 685 MovieClipUses:64 208 684Used by:Timeline
Symbol 686 BitmapUsed by:687
Symbol 687 GraphicUses:686Used by:Timeline
Symbol 688 GraphicUsed by:Timeline
Symbol 689 BitmapUsed by:690
Symbol 690 GraphicUses:689Used by:733
Symbol 691 BitmapUsed by:692
Symbol 692 GraphicUses:691Used by:733
Symbol 693 BitmapUsed by:694
Symbol 694 GraphicUses:693Used by:733
Symbol 695 BitmapUsed by:696
Symbol 696 GraphicUses:695Used by:733
Symbol 697 BitmapUsed by:698
Symbol 698 GraphicUses:697Used by:733
Symbol 699 BitmapUsed by:700
Symbol 700 GraphicUses:699Used by:733
Symbol 701 BitmapUsed by:702
Symbol 702 GraphicUses:701Used by:733
Symbol 703 BitmapUsed by:704
Symbol 704 GraphicUses:703Used by:733
Symbol 705 BitmapUsed by:706 713 714 715 716 717
Symbol 706 GraphicUses:705Used by:733
Symbol 707 BitmapUsed by:708
Symbol 708 GraphicUses:707Used by:733
Symbol 709 BitmapUsed by:710
Symbol 710 GraphicUses:709Used by:733
Symbol 711 BitmapUsed by:712
Symbol 712 GraphicUses:711Used by:733
Symbol 713 GraphicUses:705Used by:733
Symbol 714 GraphicUses:705Used by:733
Symbol 715 GraphicUses:705Used by:733
Symbol 716 GraphicUses:705Used by:733
Symbol 717 GraphicUses:705Used by:733
Symbol 718 BitmapUsed by:719
Symbol 719 GraphicUses:718Used by:733
Symbol 720 BitmapUsed by:721
Symbol 721 GraphicUses:720Used by:733
Symbol 722 BitmapUsed by:723
Symbol 723 GraphicUses:722Used by:733
Symbol 724 BitmapUsed by:725
Symbol 725 GraphicUses:724Used by:733
Symbol 726 BitmapUsed by:727
Symbol 727 GraphicUses:726Used by:733
Symbol 728 BitmapUsed by:729
Symbol 729 GraphicUses:728Used by:733
Symbol 730 BitmapUsed by:731
Symbol 731 GraphicUses:730Used by:733
Symbol 732 TextUses:18Used by:733
Symbol 733 MovieClipUses:690 692 694 696 698 700 702 704 706 708 710 712 713 714 715 716 717 719 132 135 721 136 723 725 727 729 731 732Used by:Timeline
Symbol 734 GraphicUsed by:Timeline
Symbol 735 GraphicUsed by:745  Timeline
Symbol 736 FontUsed by:737 738 739 746 753 755 763 770 774 776 778
Symbol 737 TextUses:736Used by:Timeline
Symbol 738 TextUses:736Used by:Timeline
Symbol 739 TextUses:736Used by:Timeline
Symbol 740 EditableTextUses:27Used by:Timeline
Symbol 741 EditableTextUses:27Used by:Timeline
Symbol 742 GraphicUsed by:745
Symbol 743 TextUses:27Used by:744
Symbol 744 MovieClipUses:743Used by:745
Symbol 745 MovieClipUses:742 735 744Used by:Timeline
Symbol 746 TextUses:736Used by:Timeline
Symbol 747 GraphicUsed by:749
Symbol 748 GraphicUsed by:749
Symbol 749 MovieClipUses:747 748Used by:Timeline
Symbol 750 GraphicUsed by:752 772
Symbol 751 TextUses:210Used by:752
Symbol 752 MovieClipUses:750 751Used by:Timeline
Symbol 753 TextUses:736Used by:Timeline
Symbol 754 TextUses:210Used by:Timeline
Symbol 755 TextUses:736Used by:Timeline
Symbol 756 EditableTextUses:31Used by:Timeline
Symbol 757 GraphicUsed by:759 761
Symbol 758 TextUses:210Used by:759
Symbol 759 MovieClipUses:757 758Used by:Timeline
Symbol 760 TextUses:210Used by:761
Symbol 761 MovieClipUses:757 760Used by:Timeline
Symbol 762 TextUses:210Used by:Timeline
Symbol 763 TextUses:736Used by:Timeline
Symbol 764 FontUsed by:765 766
Symbol 765 TextUses:764Used by:Timeline
Symbol 766 TextUses:764Used by:Timeline
Symbol 767 EditableTextUses:27Used by:Timeline
Symbol 768 EditableTextUses:27Used by:Timeline
Symbol 769 TextUses:210Used by:Timeline
Symbol 770 TextUses:736Used by:Timeline
Symbol 771 TextUses:210Used by:772
Symbol 772 MovieClipUses:750 771Used by:Timeline
Symbol 773 TextUses:210Used by:Timeline
Symbol 774 TextUses:736Used by:Timeline
Symbol 775 TextUses:210Used by:Timeline
Symbol 776 TextUses:736Used by:Timeline
Symbol 777 TextUses:210Used by:Timeline
Symbol 778 TextUses:736Used by:Timeline
Symbol 779 GraphicUsed by:781
Symbol 780 TextUses:210Used by:781
Symbol 781 MovieClipUses:779 780Used by:Timeline

Instance Names

"loadingMsg"Frame 1Symbol 110 MovieClip
"btnHelp"Frame 6Symbol 112 MovieClip
"btnSkipIntro"Frame 6Symbol 92 MovieClip [btnSkipIntro]
"btnMute"Frame 6Symbol 198 Button
"upArrow"Frame 21Symbol 207 MovieClip
"rightArrow"Frame 21Symbol 207 MovieClip
"downArrow"Frame 21Symbol 207 MovieClip
"leftArrow"Frame 21Symbol 207 MovieClip
"btnRightArrow"Frame 21Symbol 208 Button
"btnLeftArrow"Frame 21Symbol 208 Button
"collectionpanel"Frame 21Symbol 240 MovieClip
"btnRightArrow"Frame 35Symbol 208 Button
"btnLeftArrow"Frame 35Symbol 208 Button
"btnRightArrow"Frame 46Symbol 208 Button
"btnLeftArrow"Frame 46Symbol 208 Button
"btnRightArrow"Frame 61Symbol 208 Button
"btnLeftArrow"Frame 61Symbol 208 Button
"btnRightArrow"Frame 75Symbol 208 Button
"btnLeftArrow"Frame 75Symbol 208 Button
"btnRightArrow"Frame 86Symbol 208 Button
"btnLeftArrow"Frame 86Symbol 208 Button
"btnLight"Frame 86Symbol 208 Button
"btnDownArrow"Frame 105Symbol 208 Button
"btnLightSwitch"Frame 105Symbol 208 Button
"btnRightArrow"Frame 128Symbol 208 Button
"btnLeftArrow"Frame 128Symbol 208 Button
"btnUpArrow"Frame 128Symbol 208 Button
"btnDoor"Frame 128Symbol 208 Button
"btnRightArrow"Frame 144Symbol 208 Button
"btnLeftArrow"Frame 144Symbol 208 Button
"btnPolaroid"Frame 144Symbol 208 Button
"btnDrawers"Frame 144Symbol 208 Button
"btnSideShelf"Frame 144Symbol 208 Button
"btnRightArrow"Frame 155Symbol 208 Button
"btnLeftArrow"Frame 155Symbol 208 Button
"btnShelves"Frame 155Symbol 208 Button
"ghostClip1"Frame 170Symbol 375 MovieClip
"ghostClip2"Frame 170Symbol 378 MovieClip
"btnRightArrow"Frame 170Symbol 208 Button
"btnLeftArrow"Frame 170Symbol 208 Button
"btnUpArrow"Frame 170Symbol 208 Button
"btnDownArrow"Frame 170Symbol 208 Button
"btnMirror"Frame 170Symbol 208 Button
"btnRightArrow"Frame 184Symbol 208 Button
"btnLeftArrow"Frame 184Symbol 208 Button
"btnSink"Frame 184Symbol 208 Button
"btnTrays"Frame 184Symbol 208 Button
"btnLargeDrawers"Frame 184Symbol 208 Button
"btnRightArrow"Frame 195Symbol 208 Button
"btnLeftArrow"Frame 195Symbol 208 Button
"btnLight"Frame 195Symbol 208 Button
"btnBin"Frame 195Symbol 208 Button
"btnPinBoard"Frame 195Symbol 208 Button
"btnDownArrow"Frame 217Symbol 208 Button
"btnUpArrow"Frame 230Symbol 208 Button
"btnDownArrow"Frame 242Symbol 208 Button
"btnUpArrow"Frame 255Symbol 208 Button
"btnCorner"Frame 255Symbol 208 Button
"btnDownArrow"Frame 267Symbol 208 Button
"btnLock"Frame 267Symbol 208 Button
"btnHandle"Frame 267Symbol 208 Button
"btnBin"Frame 277Symbol 208 Button
"btnDownArrow"Frame 277Symbol 208 Button
"btnObj"Frame 289Symbol 208 Button
"btnDownArrow"Frame 289Symbol 208 Button
"objClose"Frame 289Symbol 484 MovieClip
"btnDownArrow"Frame 318Symbol 208 Button
"btnDownArrow"Frame 330Symbol 208 Button
"btnTray1"Frame 330Symbol 208 Button
"btnTray2"Frame 330Symbol 208 Button
"btnTray3"Frame 330Symbol 208 Button
"btnTray"Frame 338Symbol 208 Button
"btnObj"Frame 344Symbol 208 Button
"objClose"Frame 344Symbol 508 MovieClip
"btnDownArrow"Frame 374Symbol 208 Button
"btnCorner"Frame 374Symbol 208 Button
"btnDownArrow"Frame 395Symbol 208 Button
"btnObj"Frame 395Symbol 208 Button
"objClose"Frame 395Symbol 530 MovieClip
"btnDrawers"Frame 414Symbol 208 Button
"btnDownArrow"Frame 414Symbol 208 Button
"btnDownArrow"Frame 429Symbol 208 Button
"btnTopOpen"Frame 429Symbol 208 Button
"btnBotOpen"Frame 429Symbol 208 Button
"btnOpen"Frame 438Symbol 208 Button
"btnObj"Frame 450Symbol 208 Button
"objClose"Frame 450Symbol 558 MovieClip
"btnTopDraw"Frame 482Symbol 208 Button
"btnBotDraw"Frame 482Symbol 208 Button
"btnDownArrow"Frame 482Symbol 208 Button
"btnBotDraw"Frame 509Symbol 208 Button
"btnObj"Frame 509Symbol 208 Button
"objClose"Frame 509Symbol 574 MovieClip
"btnDownArrow"Frame 555Symbol 208 Button
"btnObj"Frame 569Symbol 208 Button
"objClose"Frame 569Symbol 594 MovieClip
"btnBattery"Frame 587Symbol 208 Button
"btnDownArrow"Frame 587Symbol 208 Button
"btnDownArrow"Frame 600Symbol 208 Button
"btnObj"Frame 600Symbol 208 Button
"objClose"Frame 600Symbol 612 MovieClip
"btnShelves"Frame 649Symbol 208 Button
"btnDownArrow"Frame 649Symbol 208 Button
"btnObj"Frame 663Symbol 208 Button
"btnDownArrow"Frame 663Symbol 208 Button
"btnObj"Frame 678Symbol 208 Button
"btnDownArrow"Frame 678Symbol 208 Button
"objClose"Frame 678Symbol 642 MovieClip
"btnPanel1"Frame 709Symbol 208 Button
"btnPanel2"Frame 709Symbol 208 Button
"btnPanel3"Frame 709Symbol 208 Button
"btnPanel4"Frame 709Symbol 208 Button
"btnPanel5"Frame 709Symbol 208 Button
"btnPanel6"Frame 709Symbol 208 Button
"btnPanel7"Frame 709Symbol 208 Button
"btnPanel8"Frame 709Symbol 208 Button
"btnPanel9"Frame 709Symbol 208 Button
"btnDownArrow"Frame 709Symbol 208 Button
"btnSafeDoor"Frame 722Symbol 208 Button
"btnObj"Frame 722Symbol 208 Button
"objClose"Frame 722Symbol 685 MovieClip
"_root.sender.name_var"Frame 761Symbol 740 EditableText
"_root.sender.email_var"Frame 761Symbol 741 EditableText
"check_terms"Frame 761Symbol 745 MovieClip
"newsletter_but"Frame 761Symbol 745 MovieClip
"terms_but"Frame 761Symbol 749 MovieClip
"subBtn"Frame 761Symbol 752 MovieClip
"shutter_newsletter_but"Frame 761Symbol 745 MovieClip
"btn_leaderboard"Frame 770Symbol 759 MovieClip
"btn_refer"Frame 770Symbol 761 MovieClip
"f_txt"Frame 776Symbol 767 EditableText
"e_txt"Frame 776Symbol 768 EditableText
"referSubmit"Frame 776Symbol 752 MovieClip
"endSubmit"Frame 776Symbol 772 MovieClip
"btn_leaderboard"Frame 781Symbol 759 MovieClip
"btn_refer"Frame 781Symbol 761 MovieClip
"btnPlayAgain"Frame 794Symbol 781 MovieClip
"close"Symbol 24 MovieClip [instructionClip] Frame 1Symbol 23 MovieClip
"ok_button"Symbol 34 MovieClip [error_msg] Frame 1Symbol 30 MovieClip
"item"Symbol 79 MovieClip Frame 3Symbol 48 MovieClip
"item"Symbol 79 MovieClip Frame 5Symbol 55 MovieClip
"item"Symbol 79 MovieClip Frame 8Symbol 62 MovieClip
"itemReview"Symbol 80 MovieClip [itemCloseUp] Frame 1Symbol 79 MovieClip
"close"Symbol 80 MovieClip [itemCloseUp] Frame 1Symbol 23 MovieClip
"1"Symbol 110 MovieClip Frame 1Symbol 97 MovieClip
"2"Symbol 110 MovieClip Frame 1Symbol 99 MovieClip
"3"Symbol 110 MovieClip Frame 1Symbol 101 MovieClip
"4"Symbol 110 MovieClip Frame 1Symbol 103 MovieClip
"5"Symbol 110 MovieClip Frame 1Symbol 105 MovieClip
"6"Symbol 110 MovieClip Frame 1Symbol 107 MovieClip
"7"Symbol 110 MovieClip Frame 1Symbol 109 MovieClip
"btnPlay"Symbol 195 MovieClip Frame 110Symbol 194 MovieClip
"hilite"Symbol 239 MovieClip Frame 1Symbol 220 MovieClip
"shader"Symbol 239 MovieClip Frame 2Symbol 225 MovieClip
"1"Symbol 240 MovieClip Frame 1Symbol 239 MovieClip
"2"Symbol 240 MovieClip Frame 1Symbol 239 MovieClip
"3"Symbol 240 MovieClip Frame 1Symbol 239 MovieClip
"4"Symbol 240 MovieClip Frame 1Symbol 239 MovieClip
"5"Symbol 240 MovieClip Frame 1Symbol 239 MovieClip
"6"Symbol 240 MovieClip Frame 1Symbol 239 MovieClip
"7"Symbol 240 MovieClip Frame 1Symbol 239 MovieClip
"8"Symbol 240 MovieClip Frame 1Symbol 239 MovieClip
"9"Symbol 240 MovieClip Frame 1Symbol 239 MovieClip
"10"Symbol 240 MovieClip Frame 1Symbol 239 MovieClip
"11"Symbol 240 MovieClip Frame 1Symbol 239 MovieClip
"12"Symbol 240 MovieClip Frame 1Symbol 239 MovieClip
"objCollect"Symbol 484 MovieClip Frame 2Symbol 208 Button
"objCollect"Symbol 508 MovieClip Frame 2Symbol 208 Button
"objCollect"Symbol 530 MovieClip Frame 2Symbol 208 Button
"objCollect"Symbol 558 MovieClip Frame 2Symbol 208 Button
"objCollect"Symbol 574 MovieClip Frame 2Symbol 208 Button
"objCollect"Symbol 594 MovieClip Frame 2Symbol 208 Button
"objCollect"Symbol 612 MovieClip Frame 2Symbol 208 Button
"objCollect"Symbol 642 MovieClip Frame 2Symbol 208 Button
"objCollect"Symbol 685 MovieClip Frame 2Symbol 208 Button
"symbol"Symbol 745 MovieClip Frame 1Symbol 744 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "sink"
ExportAssets (56)Timeline Frame 1Symbol 2 as "spooky"
ExportAssets (56)Timeline Frame 1Symbol 3 as "siren"
ExportAssets (56)Timeline Frame 1Symbol 4 as "cameraSnap"
ExportAssets (56)Timeline Frame 1Symbol 5 as "scream2"
ExportAssets (56)Timeline Frame 1Symbol 6 as "scream1"
ExportAssets (56)Timeline Frame 1Symbol 7 as "reveal"
ExportAssets (56)Timeline Frame 1Symbol 8 as "rattle"
ExportAssets (56)Timeline Frame 1Symbol 9 as "metal"
ExportAssets (56)Timeline Frame 1Symbol 10 as "heartbeat"
ExportAssets (56)Timeline Frame 1Symbol 11 as "footsteps"
ExportAssets (56)Timeline Frame 1Symbol 12 as "drawer"
ExportAssets (56)Timeline Frame 1Symbol 13 as "creak"
ExportAssets (56)Timeline Frame 1Symbol 14 as "cameraCharge"
ExportAssets (56)Timeline Frame 1Symbol 15 as "click"
ExportAssets (56)Timeline Frame 1Symbol 16 as "ambient_loop"
ExportAssets (56)Timeline Frame 1Symbol 24 as "instructionClip"
ExportAssets (56)Timeline Frame 1Symbol 34 as "error_msg"
ExportAssets (56)Timeline Frame 1Symbol 36 as "narrativetext"
ExportAssets (56)Timeline Frame 1Symbol 80 as "itemCloseUp"
ExportAssets (56)Timeline Frame 1Symbol 83 as "btnCheat"
ExportAssets (56)Timeline Frame 1Symbol 89 as "btnTakePhoto"
ExportAssets (56)Timeline Frame 1Symbol 92 as "btnSkipIntro"
ExportAssets (56)Timeline Frame 6Symbol 92 as "btnSkipIntro"
ExportAssets (56)Timeline Frame 7Symbol 92 as "btnSkipIntro"
ExportAssets (56)Timeline Frame 8Symbol 92 as "btnSkipIntro"
ExportAssets (56)Timeline Frame 9Symbol 92 as "btnSkipIntro"
ExportAssets (56)Timeline Frame 10Symbol 92 as "btnSkipIntro"

Labels

"loader"Frame 1
"intro"Frame 6
"narrativeIntro"Frame 11
"wall1Dark"Frame 21
"moveW1W2Dark"Frame 28
"wall2aDark"Frame 35
"moveW2aW2bDark"Frame 43
"wall2bDark"Frame 46
"moveW2bW3Dark"Frame 54
"wall3Dark"Frame 61
"moveW3W4aDark"Frame 68
"wall4aDark"Frame 75
"moveW4aW4bDark"Frame 83
"wall4BDark"Frame 86
"moveW4bW1Dark"Frame 94
"moveW4bLightSwitchDark"Frame 101
"lightSwitchDark"Frame 105
"lightSwitchLight"Frame 116
"wall1Light"Frame 128
"moveW1W2Light"Frame 137
"wall2aLight"Frame 144
"moveW2aW2bLight"Frame 152
"wall2bLight"Frame 155
"moveW2bW3Light"Frame 163
"wall3Light"Frame 170
"moveW3W4aLight"Frame 177
"wall4aLight"Frame 184
"moveW4aW4bLight"Frame 192
"wall4BLight"Frame 195
"moveW4bW1Light"Frame 203
"moveW4bLightSwitchLight"Frame 210
"moveW1CeilingLight"Frame 214
"ceilingW1Light"Frame 217
"moveW1FloorLight"Frame 227
"floorW1Light"Frame 230
"moveW3CeilingLight"Frame 239
"ceilingW3Light"Frame 242
"moveW3FloorLight"Frame 252
"floorW3Light"Frame 255
"zoomDoor"Frame 264
"faceDoor"Frame 267
"zoomBin"Frame 274
"faceBin"Frame 277
"zoomBinCloseWithObj"Frame 283
"zoomBinCloseNoObj"Frame 286
"binCloseupWithObj"Frame 289
"binCloseupNoObj"Frame 302
"moveW4aSinkLight"Frame 315
"sinkCloseUp"Frame 318
"zoomTrays"Frame 327
"faceTrays"Frame 330
"leftTray"Frame 338
"midTrayObj"Frame 344
"midTrayNoObj"Frame 353
"rightTray"Frame 363
"moveW3FloorShelves"Frame 371
"faceW3CornerShelvesLight"Frame 374
"zoomCornerWall"Frame 392
"faceW3WallCornerLightObj"Frame 395
"zoomPolaroid"Frame 411
"facePolaroid"Frame 414
"movePolaroidDrawers"Frame 423
"zoomDrawers"Frame 426
"faceDrawers"Frame 429
"topDrawerOpen"Frame 438
"botDrawerOpenObj"Frame 450
"botDrawerOpenNoObj"Frame 463
"moveW4aShelves"Frame 479
"faceLargeDrawers"Frame 482
"topLargeDrawerOpen"Frame 494
"bottomLargeDrawerOpenObj"Frame 509
"bottomLargeDrawerOpenNoObj"Frame 528
"zoomNoticeBoardNoObj"Frame 549
"zoomNoticeBoardObj"Frame 552
"faceTopBoardNoObj"Frame 555
"faceTopBoardObj"Frame 569
"zoomPinBoard"Frame 584
"facePinBoard"Frame 587
"zoomSideShelf"Frame 597
"faceSideShelfObj"Frame 600
"faceSideShelfNoObj"Frame 612
"faceW3WallCornerLightNoObj"Frame 626
"zoom1Shelves"Frame 646
"faceShelvesFar"Frame 649
"zoom2Shelves"Frame 660
"faceShelvesNear"Frame 663
"zoomShelf"Frame 675
"faceShelfObj"Frame 678
"faceShelfNoObj"Frame 688
"zoomSafe"Frame 699
"faceSafe"Frame 709
"zoomSafeOpenObj"Frame 716
"zoomSafeOpenNoObj"Frame 719
"faceSafeOpenObj"Frame 722
"faceSafeOpenNoObj"Frame 735
"escape"Frame 750
"submitScore"Frame 761
"score"Frame 770
"refer"Frame 776
"endframe"Frame 781
"cheat"Frame 788
"standAloneScreen"Frame 794
"_up"Symbol 23 MovieClip Frame 1
"_over"Symbol 23 MovieClip Frame 2
"_down"Symbol 23 MovieClip Frame 3
"_up"Symbol 30 MovieClip Frame 1
"_over"Symbol 30 MovieClip Frame 2
"_down"Symbol 30 MovieClip Frame 3

Dynamic Text Variables

_root.error_copySymbol 33 EditableText"you have errored"
_root.narrativecopySymbol 35 EditableText"narrative text"
_root.reviewTextSymbol 37 EditableText""
_root.theDescSymbol 483 EditableText" "
_root.theDescSymbol 507 EditableText" "
_root.theDescSymbol 529 EditableText" "
_root.theDescSymbol 557 EditableText" "
_root.theDescSymbol 573 EditableText" "
_root.theDescSymbol 593 EditableText" "
_root.theDescSymbol 611 EditableText" "
_root.theDescSymbol 641 EditableText" "
_root.code1Symbol 667 EditableText"4"
_root.code2Symbol 668 EditableText"4"
_root.code3Symbol 669 EditableText"4"
_root.code4Symbol 670 EditableText"4"
_root.code5Symbol 671 EditableText"4"
_root.theDescSymbol 684 EditableText" "
_root.sender.name_varSymbol 740 EditableText""
_root.sender.email_varSymbol 741 EditableText""
_root.winmsgSymbol 756 EditableText""
_root.sender.friendname_varSymbol 767 EditableText""
_root.sender.friendemail_varSymbol 768 EditableText""




http://swfchan.com/5/22484/info.shtml
Created: 26/5 -2019 21:53:25 Last modified: 26/5 -2019 21:53:25 Server time: 15/05 -2024 10:42:22