STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229494 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2575 · P5149 |
This is the info page for Flash #12908 |
100% |
Welcome to Operation Youth Club! This is your chance to set up and run your very own youth club, but you must keep everyone happy! In order to be successful, you have to keep your membership up and your finances healthy. You have 100 days to run your youth club and to see how well you do. |
next |
Your youth club has four zones: the Lounge, the Balcony, the Cafe and the Hall. Each zone has staff, furniture, decor and equipment, and most zones have events which will earn money for the club once you've bought the things needed to hold the event. You begin the game with a budget of 100 pounds. Out of this, furnish and decorate your youth club and choose equipment and events to keep your members entertained. You'll also need to employ staff to oversee everything. You can remove items by clicking on them again, but you won't get your money back - so choose wisely! |
previous |
Your members will let you know how happy they are with the way you're running the show. To see what they have to say, run your mouse over the characters. The message box in the left hand corner will also help you work out what's going well and what you're not doing so well. Positive messages appear in green, but messages in red mean that you might find you have to make changes to your club if you want to keep it running successfully. Play on to find out if you will succeed or fail in running your own youth club!... |
Event: Money Earned: Days Left: |
About To Start |
Close Window |
Hall Items |
Furniture Wall/Floor covering Entertainment Special Items Staff Events |
Drag Here |
back |
Battle of the Bands Competition |
Dance Competition |
DJ Competition |
*Events require certain items. |
Canteen Items |
Furniture Wall/Floor covering Entertainment Special Items Staff |
Balcony Items |
Furniture Wall/Floor covering Special Items Staff Events |
Basketball Competition |
BBQ Party |
Football Competition |
Pool Party |
Trampoline Competition |
*Events require certain items. |
Lounge Items |
Game Championship |
Film Festival |
Day 100 |
Members 100 |
£5000.00 |
Test |
No. |
Name |
Score |
Play Again? |
£5000.00 |
ActionScript [AS1/AS2]
Frame 1totalbytes = _root.getBytesTotal(); bytesloaded = _root.getBytesLoaded(); percent = int((bytesloaded / totalbytes) * 100); if (percent < 0) { percent = 0; } percentshow = percent + "%"; _root.loader.gotoAndStop(percent); fscommand ("allowscale", false);Frame 2if (bytesloaded >= totalbytes) { _root.gotoAndstop("enter", 1); } else { gotoAndPlay (1); }Frame 3stop(); win = new Sound(); win.attachSound("win"); lose = new Sound(); lose.attachSound("lose"); losemember = new Sound(); losemember.attachSound("item"); item = new Sound(); item.attachSound("staff"); addmember1 = new Sound(); addmember1.attachSound("kidAdd"); removeItem = new Sound(); removeItem.attachSound("remove"); addingItem = new Sound(); addingItem.attachSound("coins");Instance of Symbol 43 MovieClip "instruct" in Frame 3onClipEvent (load) { setProperty(this, _visible , false); }Frame 4function init() { money = 100; moneyDisplay = "\u00A3 " + money; members = 0; maintenance = 5; memberDisplay = "Members " + members; messages = ""; day = 1; dayDisplay = "Day " + day; subscription = 3; staff = 0; wages = 0; timer = 500; clubPoints = 0; checkNum = 100; spItemPoints = 0; decorPoints = 0; compliantPoints = 0; _root.windowOpen = false; setProperty(_root.room2, _visible , false); setProperty(_root.room3, _visible , false); setProperty(_root.room4, _visible , false); } function clubPointsAdd() { clubPoints = ((spItemPoints + decorPoints) + staff) - complaintPoints; } function memberAdd() { if (random(checkNum) <= clubpoints) { members++; randomChild = random(1) + 1; _root.addmember1.start(); checkNum = members * 50; memberDisplay = "Members " + members; if (messages == messageList["2"]) { messages = ""; } if ((members < 90) && (members >= 10)) { _root.room1.kids.gotoAndStop((members / 10) + 1); _root.room2.kids.gotoAndStop((members / 10) + 1); _root.room3.kids.gotoAndStop((members / 10) + 1); _root.room4.kids.gotoAndStop((members / 10) + 1); } else if ((members < 10) && (members > 0)) { _root.room1.kids.gotoAndStop("2"); _root.room2.kids.gotoAndStop("2"); _root.room3.kids.gotoAndStop("2"); _root.room4.kids.gotoAndStop("2"); } } } function memberRemove() { if (members > 2) { members--; _root.losemember.start(); memberDisplay = "Members " + members; messageWindow.textColor = 16711680 /* 0xFF0000 */; messages = messageList["2"]; if (members < 90) { _root.room1.kids.gotoAndStop((members / 10) + 1); _root.room2.kids.gotoAndStop((members / 10) + 1); _root.room3.kids.gotoAndStop((members / 10) + 1); _root.room4.kids.gotoAndStop((members / 10) + 1); } } } function addDecor(itemValue, itemCost) { addingItem.start(); money = money - itemCost; decorPoints = decorPoints + itemValue; clubPointsAdd(); memberAdd(); moneyDisplay = "\u00A3 " + money; } function removeDecor(itemValue, itemCost) { decorPoints = decorPoints - itemValue; clubPointsAdd(); _root.removeItem.start(); } function addSpItem(spItemValue, spItemCost) { addingItem.start(); money = money - spItemCost; spItemPoints = spItemPoints + spItemValue; clubPointsAdd(); memberAdd(); moneyDisplay = "\u00A3 " + money; } function removeSpItem(spItemValue, spItemCost) { spItemPoints = spItemPoints - spItemValue; clubPointsAdd(); _root.removeItem.start(); } function addStaff(staffValue, staffWage) { messageWindow.textColor = 3381504 /* 0x339900 */; messages = messageList["1"]; wages = wages + staffWage; staff = staff + staffValue; clubPointsAdd(); memberAdd(); } function removeStaff(staffValue, staffWage) { wages = wages - staffWage; staff = staff - staffValue; clubPointsAdd(); _root.removeItem.start(); } function monthlyAccounts() { if (maintenance > 3) { maintenance = members; } money = money - wages; money = money - maintenance; money = money + (members * subscription); clubPointsAdd(); memberAdd(); moneyDisplay = "\u00A3 " + money; if (money < 20) { messageWindow.textColor = 16711680 /* 0xFF0000 */; messages = messageList["3"]; } if (money < 0) { gotoAndStop (6); } } function timeTrigger() { complaintEvent(); if (pointsCheck == clubPoints) { memberRemove(); } pointsCheck = clubPoints; monthlyAccounts(); day++; if (day == 100) { gotoAndStop (5); finalScore = money * members; trace(finalScore); } if ((day == 20) && (members < 10)) { messageWindow.textColor = 16711680 /* 0xFF0000 */; messages = messageList["4"]; } dayDisplay = "Day " + day; if (eventActive == true) { addEvent(evVal, evCost, evName, evStart); } } function addEvent(itemValue, itemCost, itemName, startDay) { if ((day - startDay) <= 7) { eventActive = true; cash = cash + ((itemValue * members) - itemCost); moneyDisplay = "\u00A3 " + money; _root.eventDisplay.eventName.text = itemName; _root.eventDisplay.eventTimer.text = 8 - (day - startDay); _root.eventDisplay.eventValue.text = "\u00A3" + cash; money = money + ((itemValue * members) - itemCost); clubPoints++; } else { eventActive = false; setProperty("_root.eventDisplay", _visible , false); _root.eventDisplay.eventName.text = "About To Start"; _root.eventDisplay.eventValue.text = ""; _root.eventDisplay.eventTimer.text = ""; } } init(); stop(); messageList = ["A new member has joined.", "You have employed new staff.", "Your members are bored and some are leaving! They want some more activities. Buy more items to keep them quiet.", "Careful you're running out of money!", "You need to try harder than that, add more items.", "The neighbours are pleased that you've removed the stereo.", "The neighbours are pleased that you've removed the barbeque.", "The neighbours are sleeping better now that the band has left.", "The neighbours are sleeping better now that the DJ has left.", "The neighbours are pleased you got rid of that!"]; speechList = ["I'm hungry.", "I'm thirsty.", "I'm bored.", "This band is rubbish.", "This band rocks.", "The strobe is making me ill.", "The DJ is rubbish.", "Love the DJ.", "I don't like this music. It's too loud.", "There's rubbish everywhere, it's disgusting in here.", "You need more staff serving food in here!", "I love this music!", "This chair is so uncomfortable.", "That's better, I'm comfortable now.", "I'm happy enough.", "I can't wait for the next event!", "The event is a great success!", "The bright wallpaper is giving me a headache!", "It's so tatty in here, I wish they'd redecorate!", "The TV screen's too small, I can't see it from here.", "Mmm the food is delicious!", "I don't like the food they serve here.", "You've run out of food. Employ a kitchen manager.", "The grass needs cutting.", "The smoke from the barbeque is getting in my eyes!"]; var doSomething = function () { _root.timeTrigger(); }; var intervalID = setInterval(doSomething, 10000); function displayZone() { zone = new Array(); zone = ["1", "2", "3", "4"]; zoneName = ["Lounge Zone", "Balcony Zone", "Canteen Zone", "Hall Zone"]; startZone = zone[currentZone]; display = zoneName[currentZone]; if (currentZone < (zone.length - 1)) { currentZone++; } else { currentZone = 0; } } function complaintAdd(itemComplaint) { complaintPoints = complaintPoints + itemComplaint; } function complaintEvent() { if ((complaintPoints > 40) && (complaintPoints <= 50)) { messageWindow.textColor = 16711680 /* 0xFF0000 */; _root.messages = complaintList["0"]; if (members > 1) { memberRemove(); } money = money - 30; } else if (complaintPoints > 50) { messageWindow.textColor = 16711680 /* 0xFF0000 */; _root.messages = complaintList["1"]; } } currentZone = 0; displayZone(); complaintList = ["You're getting complaints that the music's too loud. The council are fining you \u00A330.", "Your still getting complaints!", "The stereo you have bought is quite loud.", "The stereo you have bought is very loud!", "The PA system you have bought is extremely loud!", "The DJ likes playing music loud. Be careful you don't upset the neighbours.", "The band like playing loud music. Be careful you don't upset the neighbours.", "The barbeque can be smoky. Be careful you don't upset the neighbours.", "Decks mean the music never stops! Be careful you don't upset the neighbours.", "The strobe light is very bright.", "The laser is very bright."];Instance of Symbol 626 MovieClip "eventDisplay" in Frame 4onClipEvent (load) { setProperty(this, _visible , false); }Instance of Symbol 730 MovieClip "window4" in Frame 4onClipEvent (load) { setProperty(this, _visible , false); }Instance of Symbol 789 MovieClip "window3" in Frame 4onClipEvent (load) { setProperty(this, _visible , false); }Instance of Symbol 856 MovieClip "window2" in Frame 4onClipEvent (load) { setProperty(this, _visible , false); }Instance of Symbol 942 MovieClip "window1" in Frame 4onClipEvent (load) { setProperty(this, _visible , false); }Instance of Symbol 951 MovieClip "happySad" in Frame 4onClipEvent (enterFrame) { if (_root.complaintPoints < 20) { this.gotoAndStop(1); } else if ((_root.complaintPoints > 20) && (_root.complaintPoints < 40)) { this.gotoAndStop(2); } else if ((_root.complaintPoints > 40) && (_root.complaintPoints < 60)) { this.gotoAndStop(3); } else if ((_root.complaintPoints > 60) && (_root.complaintPoints < 80)) { this.gotoAndStop(4); } else if (_root.complaintPoints > 80) { this.gotoAndStop(5); } }Instance of Symbol 968 MovieClip "speech" in Frame 4onClipEvent (load) { setProperty(this, _visible , false); }Frame 5stop(); _root.win.start(); clearInterval(intervalID);Frame 6stop(); _root.lose.start(); clearInterval(intervalID);Frame 7function encrypt(mystring) { var output = ""; var i = 0; while (i < mystring.length) { output = output + String.fromCharCode(mystring.charCodeAt(i) ^ 21); i++; } return(output); } stop();Frame 8stop();Symbol 25 MovieClip Frame 1stop();Symbol 30 Buttonon (release) { gotoAndStop (4); init(); }Symbol 31 Buttonon (release) { setProperty("instruct", _visible , true); }Symbol 38 Buttonon (press) { nextFrame(); }Symbol 41 Buttonon (press) { prevFrame(); }Symbol 43 MovieClip Frame 1stop();Symbol 48 Buttonon (press) { _root.removeDecor(25, 20); gotoAndStop (1); }Symbol 51 Buttonon (press) { _root.removeDecor(15, 10); gotoAndStop (1); }Symbol 54 Buttonon (press) { _root.removeDecor(30, 40); gotoAndStop (1); }Symbol 57 Buttonon (press) { _root.removeDecor(30, 40); gotoAndStop (1); }Symbol 60 Buttonon (press) { _root.removeDecor(17, 20); gotoAndStop (1); }Symbol 63 Buttonon (press) { _root.removeDecor(30, 40); gotoAndStop (1); }Symbol 66 Buttonon (press) { _root.removeDecor(17, 20); gotoAndStop (1); }Symbol 69 Buttonon (press) { _root.removeDecor(17, 20); gotoAndStop (1); }Symbol 72 Buttonon (press) { _root.removeDecor(30, 40); gotoAndStop (1); }Symbol 75 Buttonon (press) { _root.removeDecor(30, 40); gotoAndStop (1); }Symbol 78 Buttonon (press) { _root.removeDecor(30, 40); gotoAndStop (1); }Symbol 81 Buttonon (press) { _root.removeDecor(17, 20); gotoAndStop (1); }Symbol 84 Buttonon (press) { _root.removeDecor(20, 60); gotoAndStop (1); }Symbol 85 MovieClip Frame 1stop();Symbol 88 Buttonon (press) { _root.removeDecor(20, 25); gotoAndStop (1); }Symbol 91 Buttonon (press) { _root.removeDecor(20, 25); gotoAndStop (1); }Symbol 94 Buttonon (press) { _root.removeDecor(20, 25); gotoAndStop (1); }Symbol 97 Buttonon (press) { _root.removeDecor(20, 25); gotoAndStop (1); }Symbol 100 Buttonon (press) { _root.removeDecor(20, 25); gotoAndStop (1); }Symbol 103 Buttonon (press) { _root.removeDecor(20, 25); gotoAndStop (1); }Symbol 106 Buttonon (press) { _root.removeDecor(20, 25); gotoAndStop (1); }Symbol 109 Buttonon (press) { _root.removeDecor(20, 25); gotoAndStop (1); }Symbol 112 Buttonon (press) { _root.removeDecor(20, 25); gotoAndStop (1); }Symbol 115 Buttonon (press) { _root.removeDecor(20, 25); gotoAndStop (1); }Symbol 118 Buttonon (press) { _root.removeDecor(30, 40); gotoAndStop (1); }Symbol 121 Buttonon (press) { _root.removeDecor(30, 40); gotoAndStop (1); }Symbol 124 Buttonon (press) { _root.removeDecor(30, 40); gotoAndStop (1); }Symbol 127 Buttonon (press) { _root.removeDecor(20, 25); gotoAndStop (1); }Symbol 128 MovieClip Frame 1stop();Symbol 131 Buttonon (press) { _root.removeDecor(10, 5); gotoAndStop (1); }Symbol 134 Buttonon (press) { _root.removeDecor(15, 10); gotoAndStop (1); }Symbol 137 Buttonon (press) { _root.removeDecor(10, 5); gotoAndStop (1); }Symbol 140 Buttonon (press) { _root.removeDecor(10, 5); gotoAndStop (1); }Symbol 141 MovieClip Frame 1stop();Symbol 144 Buttonon (press) { _root.removeSpItem(30, 50); gotoAndStop (1); }Symbol 145 MovieClip Frame 1stop();Symbol 150 Buttonon (press) { _root.removeSpItem(20, 30); gotoAndStop (1); }Symbol 151 MovieClip Frame 1stop();Symbol 156 Buttonon (press) { _root.removeSpItem(30, 50); gotoAndStop (1); }Symbol 157 MovieClip Frame 1stop();Instance of Symbol 160 MovieClip "staffCleaner" in Symbol 178 MovieClip Frame 1onClipEvent (load) { setProperty(this, _visible , false); } on (press) { _root.removeStaff(10, 2); setProperty(this, _visible , false); _root.complaintAdd(20); }Instance of Symbol 169 MovieClip "staffEventManager" in Symbol 178 MovieClip Frame 1onClipEvent (load) { setProperty(this, _visible , false); } on (press) { _root.removeStaff(17, 3); setProperty(this, _visible , false); _root.complaintAdd(20); }Instance of Symbol 174 MovieClip "staffDj" in Symbol 178 MovieClip Frame 1onClipEvent (load) { setProperty(this, _visible , false); } on (press) { _root.removeStaff(20, 4); setProperty(this, _visible , false); _root.complaintAdd(-10); _root.messageWindow.textColor = 3381504 /* 0x339900 */; _root.messages = _root.messageList["8"]; }Instance of Symbol 177 MovieClip "staffBandLeader" in Symbol 178 MovieClip Frame 1onClipEvent (load) { setProperty(this, _visible , false); } on (press) { _root.removeStaff(18, 3); setProperty(this, _visible , false); _root.complaintAdd(-10); _root.messageWindow.textColor = 3381504 /* 0x339900 */; _root.messages = _root.messageList["7"]; }Symbol 181 Buttonon (press) { _root.removeSpItem(40, 100); _root.complaintAdd(-50); gotoAndStop (1); _root.messageWindow.textColor = 3381504 /* 0x339900 */; _root.messages = _root.messageList["9"]; }Symbol 182 MovieClip Frame 1stop();Symbol 185 Buttonon (press) { _root.removeDecor(25, 20); gotoAndStop (1); }Symbol 188 Buttonon (press) { _root.removeDecor(30, 25); _root.complaintAdd(-10); gotoAndStop (1); _root.messageWindow.textColor = 3381504 /* 0x339900 */; _root.messages = _root.messageList["5"]; }Symbol 191 Buttonon (press) { _root.removeDecor(40, 30); _root.complaintAdd(-20); gotoAndStop (1); _root.messageWindow.textColor = 3381504 /* 0x339900 */; _root.messages = _root.messageList["5"]; }Symbol 192 MovieClip Frame 1stop();Symbol 195 Buttonon (press) { _root.removeSpItem(50, 70); _root.complaintAdd(-20); gotoAndStop (1); _root.messageWindow.textColor = 3381504 /* 0x339900 */; _root.messages = _root.messageList["9"]; }Symbol 196 MovieClip Frame 1stop();Symbol 199 Buttonon (press) { _root.removeSpItem(30, 60); _root.complaintAdd(-20); gotoAndStop (1); _root.messageWindow.textColor = 3381504 /* 0x339900 */; _root.messages = _root.messageList["9"]; }Symbol 200 MovieClip Frame 1stop();Symbol 203 Buttonon (press) { _root.removeSpItem(30, 50); _root.complaintAdd(-20); gotoAndStop (1); _root.messageWindow.textColor = 3381504 /* 0x339900 */; _root.messages = _root.messageList["9"]; }Symbol 204 MovieClip Frame 1stop();Symbol 207 Buttonon (press) { _root.removeSpItem(20, 30); gotoAndStop (1); }Symbol 208 MovieClip Frame 1stop();Symbol 256 MovieClip Frame 1stop();Instance of Symbol 215 MovieClip in Symbol 256 MovieClip Frame 2onClipEvent (load) { goodBadDj = random(2) + 1; goodBadBand = random(2) + 1; } on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room4.stereo._currentframe > 2) { _root.speech.messageWindow.text = _root.speechList["8"]; } else if (_root.room4.staff.staffBandLeader._visible == true) { if (goodBadBand == 1) { _root.speech.messageWindow.text = _root.speechList["3"]; } else { _root.speech.messageWindow.text = _root.speechList["4"]; } } else if (_root.room4.staff.staffDj._visible == true) { if (goodBadDj == 1) { _root.speech.messageWindow.text = _root.speechList["6"]; } else { _root.speech.messageWindow.text = _root.speechList["7"]; } } else if (((_root.room4.walls._currentframe == 2) or (_root.room4.walls._currentframe == 11)) or (_root.room4.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room4.specialStrobe._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["5"]; } else if (_root.room4.chairs._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["12"]; } else if (_root.eventActive != true) { _root.speech.messageWindow.text = _root.speechList["15"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 218 MovieClip in Symbol 256 MovieClip Frame 3onClipEvent (load) { goodBadDj = random(2) + 1; goodBadBand = random(2) + 1; } on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room4.stereo._currentframe > 2) { _root.speech.messageWindow.text = _root.speechList["8"]; } else if (_root.room4.staff.staffBandLeader._visible == true) { if (goodBadBand == 1) { _root.speech.messageWindow.text = _root.speechList["3"]; } else { _root.speech.messageWindow.text = _root.speechList["4"]; } } else if (_root.room4.staff.staffDj._visible == true) { if (goodBadDj == 1) { _root.speech.messageWindow.text = _root.speechList["6"]; } else { _root.speech.messageWindow.text = _root.speechList["7"]; } } else if (((_root.room4.walls._currentframe == 2) or (_root.room4.walls._currentframe == 11)) or (_root.room4.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room4.specialStrobe._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["5"]; } else if (_root.room4.chairs._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["12"]; } else if (_root.eventActive != true) { _root.speech.messageWindow.text = _root.speechList["15"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 224 MovieClip in Symbol 256 MovieClip Frame 4onClipEvent (load) { goodBadDj = random(2) + 1; goodBadBand = random(2) + 1; } on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room4.stereo._currentframe > 2) { _root.speech.messageWindow.text = _root.speechList["8"]; } else if (_root.room4.staff.staffBandLeader._visible == true) { if (goodBadBand == 1) { _root.speech.messageWindow.text = _root.speechList["3"]; } else { _root.speech.messageWindow.text = _root.speechList["4"]; } } else if (_root.room4.staff.staffDj._visible == true) { if (goodBadDj == 1) { _root.speech.messageWindow.text = _root.speechList["6"]; } else { _root.speech.messageWindow.text = _root.speechList["7"]; } } else if (((_root.room4.walls._currentframe == 2) or (_root.room4.walls._currentframe == 11)) or (_root.room4.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room4.specialStrobe._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["5"]; } else if (_root.room4.chairs._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["12"]; } else if (_root.eventActive != true) { _root.speech.messageWindow.text = _root.speechList["15"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 228 MovieClip in Symbol 256 MovieClip Frame 5onClipEvent (load) { goodBadDj = random(2) + 1; goodBadBand = random(2) + 1; } on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room4.stereo._currentframe > 2) { _root.speech.messageWindow.text = _root.speechList["8"]; } else if (_root.room4.staff.staffBandLeader._visible == true) { if (goodBadBand == 1) { _root.speech.messageWindow.text = _root.speechList["3"]; } else { _root.speech.messageWindow.text = _root.speechList["4"]; } } else if (_root.room4.staff.staffDj._visible == true) { if (goodBadDj == 1) { _root.speech.messageWindow.text = _root.speechList["6"]; } else { _root.speech.messageWindow.text = _root.speechList["7"]; } } else if (((_root.room4.walls._currentframe == 2) or (_root.room4.walls._currentframe == 11)) or (_root.room4.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room4.specialStrobe._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["5"]; } else if (_root.room4.chairs._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["12"]; } else if (_root.eventActive != true) { _root.speech.messageWindow.text = _root.speechList["15"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 234 MovieClip in Symbol 256 MovieClip Frame 6onClipEvent (load) { goodBadDj = random(2) + 1; goodBadBand = random(2) + 1; } on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room4.stereo._currentframe > 2) { _root.speech.messageWindow.text = _root.speechList["8"]; } else if (_root.room4.staff.staffBandLeader._visible == true) { if (goodBadBand == 1) { _root.speech.messageWindow.text = _root.speechList["3"]; } else { _root.speech.messageWindow.text = _root.speechList["4"]; } } else if (_root.room4.staff.staffDj._visible == true) { if (goodBadDj == 1) { _root.speech.messageWindow.text = _root.speechList["6"]; } else { _root.speech.messageWindow.text = _root.speechList["7"]; } } else if (((_root.room4.walls._currentframe == 2) or (_root.room4.walls._currentframe == 11)) or (_root.room4.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room4.specialStrobe._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["5"]; } else if (_root.room4.chairs._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["12"]; } else if (_root.eventActive != true) { _root.speech.messageWindow.text = _root.speechList["15"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 238 MovieClip in Symbol 256 MovieClip Frame 7onClipEvent (load) { goodBadDj = random(2) + 1; goodBadBand = random(2) + 1; } on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room4.stereo._currentframe > 2) { _root.speech.messageWindow.text = _root.speechList["8"]; } else if (_root.room4.staff.staffBandLeader._visible == true) { if (goodBadBand == 1) { _root.speech.messageWindow.text = _root.speechList["3"]; } else { _root.speech.messageWindow.text = _root.speechList["4"]; } } else if (_root.room4.staff.staffDj._visible == true) { if (goodBadDj == 1) { _root.speech.messageWindow.text = _root.speechList["6"]; } else { _root.speech.messageWindow.text = _root.speechList["7"]; } } else if (((_root.room4.walls._currentframe == 2) or (_root.room4.walls._currentframe == 11)) or (_root.room4.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room4.specialStrobe._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["5"]; } else if (_root.room4.chairs._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["12"]; } else if (_root.eventActive != true) { _root.speech.messageWindow.text = _root.speechList["15"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 242 MovieClip in Symbol 256 MovieClip Frame 8onClipEvent (load) { goodBadDj = random(2) + 1; goodBadBand = random(2) + 1; } on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room4.stereo._currentframe > 2) { _root.speech.messageWindow.text = _root.speechList["8"]; } else if (_root.room4.staff.staffBandLeader._visible == true) { if (goodBadBand == 1) { _root.speech.messageWindow.text = _root.speechList["3"]; } else { _root.speech.messageWindow.text = _root.speechList["4"]; } } else if (_root.room4.staff.staffDj._visible == true) { if (goodBadDj == 1) { _root.speech.messageWindow.text = _root.speechList["6"]; } else { _root.speech.messageWindow.text = _root.speechList["7"]; } } else if (((_root.room4.walls._currentframe == 2) or (_root.room4.walls._currentframe == 11)) or (_root.room4.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room4.specialStrobe._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["5"]; } else if (_root.room4.chairs._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["12"]; } else if (_root.eventActive != true) { _root.speech.messageWindow.text = _root.speechList["15"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 252 MovieClip in Symbol 256 MovieClip Frame 9onClipEvent (load) { goodBadDj = random(2) + 1; goodBadBand = random(2) + 1; } on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room4.stereo._currentframe > 2) { _root.speech.messageWindow.text = _root.speechList["8"]; } else if (_root.room4.staff.staffBandLeader._visible == true) { if (goodBadBand == 1) { _root.speech.messageWindow.text = _root.speechList["3"]; } else { _root.speech.messageWindow.text = _root.speechList["4"]; } } else if (_root.room4.staff.staffDj._visible == true) { if (goodBadDj == 1) { _root.speech.messageWindow.text = _root.speechList["6"]; } else { _root.speech.messageWindow.text = _root.speechList["7"]; } } else if (((_root.room4.walls._currentframe == 2) or (_root.room4.walls._currentframe == 11)) or (_root.room4.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room4.specialStrobe._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["5"]; } else if (_root.room4.chairs._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["12"]; } else if (_root.eventActive != true) { _root.speech.messageWindow.text = _root.speechList["15"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 255 MovieClip in Symbol 256 MovieClip Frame 10onClipEvent (load) { goodBadDj = random(2) + 1; goodBadBand = random(2) + 1; } on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room4.stereo._currentframe > 2) { _root.speech.messageWindow.text = _root.speechList["8"]; } else if (_root.room4.staff.staffBandLeader._visible == true) { if (goodBadBand == 1) { _root.speech.messageWindow.text = _root.speechList["3"]; } else { _root.speech.messageWindow.text = _root.speechList["4"]; } } else if (_root.room4.staff.staffDj._visible == true) { if (goodBadDj == 1) { _root.speech.messageWindow.text = _root.speechList["6"]; } else { _root.speech.messageWindow.text = _root.speechList["7"]; } } else if (((_root.room4.walls._currentframe == 2) or (_root.room4.walls._currentframe == 11)) or (_root.room4.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room4.specialStrobe._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["5"]; } else if (_root.room4.chairs._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["12"]; } else if (_root.eventActive != true) { _root.speech.messageWindow.text = _root.speechList["15"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Symbol 257 MovieClip Frame 1stop();Instance of Symbol 141 MovieClip "chairs" in Symbol 257 MovieClip Frame 1onClipEvent (load) { gotoAndStop(startFrame); }Symbol 269 Buttonon (press) { _root.removeDecor(10, 5); gotoAndStop (1); }Symbol 272 Buttonon (press) { _root.removeDecor(15, 10); gotoAndStop (1); }Symbol 275 Buttonon (press) { _root.removeDecor(10, 5); gotoAndStop (1); }Symbol 278 Buttonon (press) { _root.removeDecor(10, 5); gotoAndStop (1); }Symbol 279 MovieClip Frame 1stop();Symbol 282 Buttonon (press) { _root.removeDecor(15, 10); gotoAndStop (1); }Symbol 286 Buttonon (press) { _root.removeDecor(20, 15); gotoAndStop (1); }Symbol 289 Buttonon (press) { _root.removeDecor(15, 10); gotoAndStop (1); }Symbol 292 Buttonon (press) { _root.removeDecor(15, 10); gotoAndStop (1); }Symbol 293 MovieClip Frame 1stop();Symbol 296 Buttonon (press) { _root.removeSpItem(30, 50); gotoAndStop (1); }Symbol 297 MovieClip Frame 1stop();Symbol 299 Buttonon (press) { _root.removeSpItem(50, 150); gotoAndStop (1); }Symbol 301 Buttonon (press) { _root.removeSpItem(50, 100); gotoAndStop (1); }Symbol 303 Buttonon (press) { _root.removeSpItem(40, 75); gotoAndStop (1); }Symbol 304 MovieClip Frame 1stop();Symbol 305 Buttonon (press) { _root.removeDecor(25, 20); gotoAndStop (1); }Symbol 306 Buttonon (press) { _root.removeDecor(30, 25); _root.complaintAdd(-10); gotoAndStop (1); _root.messageWindow.textColor = 3381504 /* 0x339900 */; _root.messages = _root.messageList["5"]; }Symbol 307 Buttonon (press) { _root.removeDecor(40, 30); _root.complaintAdd(-20); gotoAndStop (1); _root.messageWindow.textColor = 3381504 /* 0x339900 */; _root.messages = _root.messageList["5"]; }Symbol 308 MovieClip Frame 1stop();Instance of Symbol 160 MovieClip "staffCleaner" in Symbol 324 MovieClip Frame 1onClipEvent (load) { setProperty(this, _visible , false); } on (press) { _root.removeStaff(10, 2); setProperty(this, _visible , false); _root.complaintAdd(20); }Instance of Symbol 311 MovieClip "staffKitchenManager" in Symbol 324 MovieClip Frame 1onClipEvent (load) { setProperty(this, _visible , false); } on (press) { _root.removeStaff(15, 2.5); setProperty(this, _visible , false); _root.complaintAdd(20); }Instance of Symbol 314 MovieClip "staffChef" in Symbol 324 MovieClip Frame 1onClipEvent (load) { setProperty(this, _visible , false); } on (press) { _root.removeStaff(15, 2); setProperty(this, _visible , false); _root.complaintAdd(20); }Instance of Symbol 317 MovieClip "staffWaiter" in Symbol 324 MovieClip Frame 1onClipEvent (load) { setProperty(this, _visible , false); } on (press) { _root.removeStaff(10, 2); setProperty(this, _visible , false); _root.complaintAdd(20); }Instance of Symbol 320 MovieClip "staffShopkeeper" in Symbol 324 MovieClip Frame 1onClipEvent (load) { setProperty(this, _visible , false); } on (press) { _root.removeStaff(15, 2.5); setProperty(this, _visible , false); _root.complaintAdd(20); }Instance of Symbol 323 MovieClip "staffWaitress" in Symbol 324 MovieClip Frame 1onClipEvent (load) { setProperty(this, _visible , false); } on (press) { _root.removeStaff(10, 2); setProperty(this, _visible , false); _root.complaintAdd(20); }Symbol 343 MovieClip Frame 1stop();Instance of Symbol 215 MovieClip in Symbol 343 MovieClip Frame 2onClipEvent (load) { goodBadStereo = random(2) + 1; } on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room3.stereo._currentframe > 2) { if (goodBadStereo == 1) { _root.speech.messageWindow.text = _root.speechList["8"]; } else { _root.speech.messageWindow.text = _root.speechList["11"]; } } else if (_root.room3.sign._currentframe == 1) { _root.speech.messageWindow.text = _root.speechList["0"]; } else if ((_root.room3.staff3.staffWaitress._visible == false) or (_root.room3.staff3.staffWaiter._visible == false)) { _root.speech.messageWindow.text = _root.speechList["10"]; } else if (_root.room3.staff3.staffKitchenManager._visible == false) { _root.speech.messageWindow.text = _root.speechList["22"]; } else if (_root.room3.chairs._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["12"]; } else if (((_root.room3.walls._currentframe == 2) or (_root.room3.walls._currentframe == 11)) or (_root.room3.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room3.staff3.staffCleaner._visible == false) { _root.speech.messageWindow.text = _root.speechList["9"]; } else if ((_root.room3.sign._currentframe == 2) or (_root.room3.sign._currentframe == 3)) { _root.speech.messageWindow.text = _root.speechList["20"]; } else if (_root.room3.sign._currentframe == 4) { _root.speech.messageWindow.text = _root.speechList["21"]; } else if (_root.room3.chairs._currentframe > 2) { _root.speech.messageWindow.text = _root.speechList["13"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 327 MovieClip in Symbol 343 MovieClip Frame 3onClipEvent (load) { goodBadStereo = random(2) + 1; } on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room3.stereo._currentframe > 2) { if (goodBadStereo == 1) { _root.speech.messageWindow.text = _root.speechList["8"]; } else { _root.speech.messageWindow.text = _root.speechList["11"]; } } else if (_root.room3.sign._currentframe == 1) { _root.speech.messageWindow.text = _root.speechList["0"]; } else if ((_root.room3.staff3.staffWaitress._visible == false) or (_root.room3.staff3.staffWaiter._visible == false)) { _root.speech.messageWindow.text = _root.speechList["10"]; } else if (_root.room3.staff3.staffKitchenManager._visible == false) { _root.speech.messageWindow.text = _root.speechList["22"]; } else if (_root.room3.chairs._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["12"]; } else if (((_root.room3.walls._currentframe == 2) or (_root.room3.walls._currentframe == 11)) or (_root.room3.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room3.staff3.staffCleaner._visible == false) { _root.speech.messageWindow.text = _root.speechList["9"]; } else if ((_root.room3.sign._currentframe == 2) or (_root.room3.sign._currentframe == 3)) { _root.speech.messageWindow.text = _root.speechList["20"]; } else if (_root.room3.sign._currentframe == 4) { _root.speech.messageWindow.text = _root.speechList["21"]; } else if (_root.room3.chairs._currentframe > 2) { _root.speech.messageWindow.text = _root.speechList["13"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 330 MovieClip in Symbol 343 MovieClip Frame 4onClipEvent (load) { goodBadStereo = random(2) + 1; } on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room3.stereo._currentframe > 2) { if (goodBadStereo == 1) { _root.speech.messageWindow.text = _root.speechList["8"]; } else { _root.speech.messageWindow.text = _root.speechList["11"]; } } else if (_root.room3.sign._currentframe == 1) { _root.speech.messageWindow.text = _root.speechList["0"]; } else if ((_root.room3.staff3.staffWaitress._visible == false) or (_root.room3.staff3.staffWaiter._visible == false)) { _root.speech.messageWindow.text = _root.speechList["10"]; } else if (_root.room3.staff3.staffKitchenManager._visible == false) { _root.speech.messageWindow.text = _root.speechList["22"]; } else if (_root.room3.chairs._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["12"]; } else if (((_root.room3.walls._currentframe == 2) or (_root.room3.walls._currentframe == 11)) or (_root.room3.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room3.staff3.staffCleaner._visible == false) { _root.speech.messageWindow.text = _root.speechList["9"]; } else if ((_root.room3.sign._currentframe == 2) or (_root.room3.sign._currentframe == 3)) { _root.speech.messageWindow.text = _root.speechList["20"]; } else if (_root.room3.sign._currentframe == 4) { _root.speech.messageWindow.text = _root.speechList["21"]; } else if (_root.room3.chairs._currentframe > 2) { _root.speech.messageWindow.text = _root.speechList["13"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 331 MovieClip in Symbol 343 MovieClip Frame 5onClipEvent (load) { goodBadStereo = random(2) + 1; } on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room3.stereo._currentframe > 2) { if (goodBadStereo == 1) { _root.speech.messageWindow.text = _root.speechList["8"]; } else { _root.speech.messageWindow.text = _root.speechList["11"]; } } else if (_root.room3.sign._currentframe == 1) { _root.speech.messageWindow.text = _root.speechList["0"]; } else if ((_root.room3.staff3.staffWaitress._visible == false) or (_root.room3.staff3.staffWaiter._visible == false)) { _root.speech.messageWindow.text = _root.speechList["10"]; } else if (_root.room3.staff3.staffKitchenManager._visible == false) { _root.speech.messageWindow.text = _root.speechList["22"]; } else if (_root.room3.chairs._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["12"]; } else if (((_root.room3.walls._currentframe == 2) or (_root.room3.walls._currentframe == 11)) or (_root.room3.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room3.staff3.staffCleaner._visible == false) { _root.speech.messageWindow.text = _root.speechList["9"]; } else if ((_root.room3.sign._currentframe == 2) or (_root.room3.sign._currentframe == 3)) { _root.speech.messageWindow.text = _root.speechList["20"]; } else if (_root.room3.sign._currentframe == 4) { _root.speech.messageWindow.text = _root.speechList["21"]; } else if (_root.room3.chairs._currentframe > 2) { _root.speech.messageWindow.text = _root.speechList["13"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 334 MovieClip in Symbol 343 MovieClip Frame 6onClipEvent (load) { goodBadStereo = random(2) + 1; } on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room3.stereo._currentframe > 2) { if (goodBadStereo == 1) { _root.speech.messageWindow.text = _root.speechList["8"]; } else { _root.speech.messageWindow.text = _root.speechList["11"]; } } else if (_root.room3.sign._currentframe == 1) { _root.speech.messageWindow.text = _root.speechList["0"]; } else if ((_root.room3.staff3.staffWaitress._visible == false) or (_root.room3.staff3.staffWaiter._visible == false)) { _root.speech.messageWindow.text = _root.speechList["10"]; } else if (_root.room3.staff3.staffKitchenManager._visible == false) { _root.speech.messageWindow.text = _root.speechList["22"]; } else if (_root.room3.chairs._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["12"]; } else if (((_root.room3.walls._currentframe == 2) or (_root.room3.walls._currentframe == 11)) or (_root.room3.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room3.staff3.staffCleaner._visible == false) { _root.speech.messageWindow.text = _root.speechList["9"]; } else if ((_root.room3.sign._currentframe == 2) or (_root.room3.sign._currentframe == 3)) { _root.speech.messageWindow.text = _root.speechList["20"]; } else if (_root.room3.sign._currentframe == 4) { _root.speech.messageWindow.text = _root.speechList["21"]; } else if (_root.room3.chairs._currentframe > 2) { _root.speech.messageWindow.text = _root.speechList["13"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 335 MovieClip in Symbol 343 MovieClip Frame 7onClipEvent (load) { goodBadStereo = random(2) + 1; } on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room3.stereo._currentframe > 2) { if (goodBadStereo == 1) { _root.speech.messageWindow.text = _root.speechList["8"]; } else { _root.speech.messageWindow.text = _root.speechList["11"]; } } else if (_root.room3.sign._currentframe == 1) { _root.speech.messageWindow.text = _root.speechList["0"]; } else if ((_root.room3.staff3.staffWaitress._visible == false) or (_root.room3.staff3.staffWaiter._visible == false)) { _root.speech.messageWindow.text = _root.speechList["10"]; } else if (_root.room3.staff3.staffKitchenManager._visible == false) { _root.speech.messageWindow.text = _root.speechList["22"]; } else if (_root.room3.chairs._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["12"]; } else if (((_root.room3.walls._currentframe == 2) or (_root.room3.walls._currentframe == 11)) or (_root.room3.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room3.staff3.staffCleaner._visible == false) { _root.speech.messageWindow.text = _root.speechList["9"]; } else if ((_root.room3.sign._currentframe == 2) or (_root.room3.sign._currentframe == 3)) { _root.speech.messageWindow.text = _root.speechList["20"]; } else if (_root.room3.sign._currentframe == 4) { _root.speech.messageWindow.text = _root.speechList["21"]; } else if (_root.room3.chairs._currentframe > 2) { _root.speech.messageWindow.text = _root.speechList["13"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 338 MovieClip in Symbol 343 MovieClip Frame 8onClipEvent (load) { goodBadStereo = random(2) + 1; } on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room3.stereo._currentframe > 2) { if (goodBadStereo == 1) { _root.speech.messageWindow.text = _root.speechList["8"]; } else { _root.speech.messageWindow.text = _root.speechList["11"]; } } else if (_root.room3.sign._currentframe == 1) { _root.speech.messageWindow.text = _root.speechList["0"]; } else if ((_root.room3.staff3.staffWaitress._visible == false) or (_root.room3.staff3.staffWaiter._visible == false)) { _root.speech.messageWindow.text = _root.speechList["10"]; } else if (_root.room3.staff3.staffKitchenManager._visible == false) { _root.speech.messageWindow.text = _root.speechList["22"]; } else if (_root.room3.chairs._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["12"]; } else if (((_root.room3.walls._currentframe == 2) or (_root.room3.walls._currentframe == 11)) or (_root.room3.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room3.staff3.staffCleaner._visible == false) { _root.speech.messageWindow.text = _root.speechList["9"]; } else if ((_root.room3.sign._currentframe == 2) or (_root.room3.sign._currentframe == 3)) { _root.speech.messageWindow.text = _root.speechList["20"]; } else if (_root.room3.sign._currentframe == 4) { _root.speech.messageWindow.text = _root.speechList["21"]; } else if (_root.room3.chairs._currentframe > 2) { _root.speech.messageWindow.text = _root.speechList["13"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 341 MovieClip in Symbol 343 MovieClip Frame 9onClipEvent (load) { goodBadStereo = random(2) + 1; } on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room3.stereo._currentframe > 2) { if (goodBadStereo == 1) { _root.speech.messageWindow.text = _root.speechList["8"]; } else { _root.speech.messageWindow.text = _root.speechList["11"]; } } else if (_root.room3.sign._currentframe == 1) { _root.speech.messageWindow.text = _root.speechList["0"]; } else if ((_root.room3.staff3.staffWaitress._visible == false) or (_root.room3.staff3.staffWaiter._visible == false)) { _root.speech.messageWindow.text = _root.speechList["10"]; } else if (_root.room3.staff3.staffKitchenManager._visible == false) { _root.speech.messageWindow.text = _root.speechList["22"]; } else if (_root.room3.chairs._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["12"]; } else if (((_root.room3.walls._currentframe == 2) or (_root.room3.walls._currentframe == 11)) or (_root.room3.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room3.staff3.staffCleaner._visible == false) { _root.speech.messageWindow.text = _root.speechList["9"]; } else if ((_root.room3.sign._currentframe == 2) or (_root.room3.sign._currentframe == 3)) { _root.speech.messageWindow.text = _root.speechList["20"]; } else if (_root.room3.sign._currentframe == 4) { _root.speech.messageWindow.text = _root.speechList["21"]; } else if (_root.room3.chairs._currentframe > 2) { _root.speech.messageWindow.text = _root.speechList["13"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 342 MovieClip in Symbol 343 MovieClip Frame 10onClipEvent (load) { goodBadStereo = random(2) + 1; } on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room3.stereo._currentframe > 2) { if (goodBadStereo == 1) { _root.speech.messageWindow.text = _root.speechList["8"]; } else { _root.speech.messageWindow.text = _root.speechList["11"]; } } else if (_root.room3.sign._currentframe == 1) { _root.speech.messageWindow.text = _root.speechList["0"]; } else if ((_root.room3.staff3.staffWaitress._visible == false) or (_root.room3.staff3.staffWaiter._visible == false)) { _root.speech.messageWindow.text = _root.speechList["10"]; } else if (_root.room3.staff3.staffKitchenManager._visible == false) { _root.speech.messageWindow.text = _root.speechList["22"]; } else if (_root.room3.chairs._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["12"]; } else if (((_root.room3.walls._currentframe == 2) or (_root.room3.walls._currentframe == 11)) or (_root.room3.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room3.staff3.staffCleaner._visible == false) { _root.speech.messageWindow.text = _root.speechList["9"]; } else if ((_root.room3.sign._currentframe == 2) or (_root.room3.sign._currentframe == 3)) { _root.speech.messageWindow.text = _root.speechList["20"]; } else if (_root.room3.sign._currentframe == 4) { _root.speech.messageWindow.text = _root.speechList["21"]; } else if (_root.room3.chairs._currentframe > 2) { _root.speech.messageWindow.text = _root.speechList["13"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Symbol 344 MovieClip Frame 1stop();Instance of Symbol 279 MovieClip "chairs" in Symbol 344 MovieClip Frame 1onClipEvent (load) { gotoAndStop(startFrame); }Symbol 347 Buttonon (press) { _root.removeSpItem(30, 70); gotoAndStop (1); }Symbol 350 Buttonon (press) { _root.removeSpItem(50, 100); gotoAndStop (1); }Symbol 351 MovieClip Frame 1stop();Symbol 356 Buttonon (press) { _root.removeSpItem(20, 40); gotoAndStop (1); }Symbol 359 Buttonon (press) { _root.removeSpItem(10, 30); gotoAndStop (1); }Symbol 360 MovieClip Frame 1stop();Symbol 369 Buttonon (press) { _root.removeDecor(20, 25); gotoAndStop (1); }Symbol 371 Buttonon (press) { _root.removeDecor(20, 25); gotoAndStop (1); }Symbol 373 Buttonon (press) { _root.removeDecor(20, 25); gotoAndStop (1); }Symbol 375 Buttonon (press) { _root.removeDecor(20, 25); gotoAndStop (1); }Symbol 377 Buttonon (press) { _root.removeDecor(20, 25); gotoAndStop (1); }Symbol 379 Buttonon (press) { _root.removeDecor(20, 25); gotoAndStop (1); }Symbol 381 Buttonon (press) { _root.removeDecor(20, 25); gotoAndStop (1); }Symbol 383 Buttonon (press) { _root.removeDecor(20, 25); gotoAndStop (1); }Symbol 385 Buttonon (press) { _root.removeDecor(20, 25); gotoAndStop (1); }Symbol 387 Buttonon (press) { _root.removeDecor(20, 25); gotoAndStop (1); }Symbol 389 Buttonon (press) { _root.removeDecor(30, 40); gotoAndStop (1); }Symbol 391 Buttonon (press) { _root.removeDecor(20, 25); gotoAndStop (1); }Symbol 393 Buttonon (press) { _root.removeDecor(30, 40); gotoAndStop (1); }Symbol 395 Buttonon (press) { _root.removeDecor(20, 25); gotoAndStop (1); }Symbol 396 MovieClip Frame 1stop();Symbol 409 Buttonon (press) { _root.removeSpItem(20, 30); _root.complaintAdd(-10); gotoAndStop (1); _root.messageWindow.textColor = 3381504 /* 0x339900 */; _root.messages = _root.messageList["6"]; }Symbol 410 MovieClip Frame 1stop();Symbol 420 Buttonon (press) { _root.removeSpItem(30, 50); gotoAndStop (1); }Symbol 421 MovieClip Frame 1stop();Symbol 425 Buttonon (press) { _root.removeSpItem(10, 30); gotoAndStop (1); }Symbol 428 Buttonon (press) { _root.removeSpItem(20, 40); gotoAndStop (1); }Symbol 429 MovieClip Frame 1stop();Symbol 434 Buttonon (press) { _root.removeSpItem(10, 5); gotoAndStop (1); }Symbol 435 MovieClip Frame 1stop();Symbol 438 Buttonon (press) { _root.removeSpItem(25, 40); gotoAndStop (1); }Symbol 439 MovieClip Frame 1stop();Symbol 442 Buttonon (press) { _root.removeSpItem(20, 30); gotoAndStop (1); }Symbol 443 MovieClip Frame 1stop();Symbol 445 Buttonon (press) { _root.removeDecor(10, 5); gotoAndStop (1); }Symbol 446 MovieClip Frame 1stop();Symbol 449 Buttonon (press) { _root.removeDecor(20, 10); gotoAndStop (1); }Symbol 452 Buttonon (press) { _root.removeDecor(15, 7); gotoAndStop (1); }Symbol 453 MovieClip Frame 1stop();Instance of Symbol 160 MovieClip "staffCleaner" in Symbol 460 MovieClip Frame 1onClipEvent (load) { setProperty(this, _visible , false); } on (press) { _root.removeStaff(10, 2); setProperty(this, _visible , false); _root.complaintAdd(20); }Instance of Symbol 456 MovieClip "staffGardener" in Symbol 460 MovieClip Frame 1onClipEvent (load) { setProperty(this, _visible , false); } on (press) { _root.removeStaff(15, 3); setProperty(this, _visible , false); _root.complaintAdd(20); }Instance of Symbol 459 MovieClip "staffActivitiesManager" in Symbol 460 MovieClip Frame 1onClipEvent (load) { setProperty(this, _visible , false); } on (press) { _root.removeStaff(17, 3); setProperty(this, _visible , false); _root.complaintAdd(20); }Instance of Symbol 166 MovieClip "staffJanitor" in Symbol 460 MovieClip Frame 1on (press) { }Symbol 465 MovieClip Frame 1stop();Symbol 465 MovieClip Frame 2stop();Symbol 466 MovieClip Frame 5_root.Jumping.Jump.gotoAndStop(2);Symbol 466 MovieClip Frame 10_root.Jumping.Jump.gotoAndStop(1);Symbol 481 MovieClip Frame 1stop();Instance of Symbol 467 MovieClip in Symbol 481 MovieClip Frame 2on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room2.staff2.staffGardener._visible == false) { _root.speech.messageWindow.text = _root.speechList["23"]; } else if (((_root.room2.walls._currentframe == 2) or (_root.room2.walls._currentframe == 11)) or (_root.room2.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room2.barbeque._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["24"]; } else if (_root.room2.staff2.staffCleaner._visible == false) { _root.speech.messageWindow.text = _root.speechList["9"]; } else if (_root.eventActive == true) { _root.speech.messageWindow.text = _root.speechList["16"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 470 MovieClip in Symbol 481 MovieClip Frame 3on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room2.staff2.staffGardener._visible == false) { _root.speech.messageWindow.text = _root.speechList["23"]; } else if (((_root.room2.walls._currentframe == 2) or (_root.room2.walls._currentframe == 11)) or (_root.room2.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room2.barbeque._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["24"]; } else if (_root.room2.staff2.staffCleaner._visible == false) { _root.speech.messageWindow.text = _root.speechList["9"]; } else if (_root.eventActive == true) { _root.speech.messageWindow.text = _root.speechList["16"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 473 MovieClip in Symbol 481 MovieClip Frame 4on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room2.staff2.staffGardener._visible == false) { _root.speech.messageWindow.text = _root.speechList["23"]; } else if (((_root.room2.walls._currentframe == 2) or (_root.room2.walls._currentframe == 11)) or (_root.room2.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room2.barbeque._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["24"]; } else if (_root.room2.staff2.staffCleaner._visible == false) { _root.speech.messageWindow.text = _root.speechList["9"]; } else if (_root.eventActive == true) { _root.speech.messageWindow.text = _root.speechList["16"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 474 MovieClip in Symbol 481 MovieClip Frame 5on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room2.staff2.staffGardener._visible == false) { _root.speech.messageWindow.text = _root.speechList["23"]; } else if (((_root.room2.walls._currentframe == 2) or (_root.room2.walls._currentframe == 11)) or (_root.room2.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room2.barbeque._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["24"]; } else if (_root.room2.staff2.staffCleaner._visible == false) { _root.speech.messageWindow.text = _root.speechList["9"]; } else if (_root.eventActive == true) { _root.speech.messageWindow.text = _root.speechList["16"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 477 MovieClip in Symbol 481 MovieClip Frame 6on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room2.staff2.staffGardener._visible == false) { _root.speech.messageWindow.text = _root.speechList["23"]; } else if (((_root.room2.walls._currentframe == 2) or (_root.room2.walls._currentframe == 11)) or (_root.room2.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room2.barbeque._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["24"]; } else if (_root.room2.staff2.staffCleaner._visible == false) { _root.speech.messageWindow.text = _root.speechList["9"]; } else if (_root.eventActive == true) { _root.speech.messageWindow.text = _root.speechList["16"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 238 MovieClip in Symbol 481 MovieClip Frame 7on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room2.staff2.staffGardener._visible == false) { _root.speech.messageWindow.text = _root.speechList["23"]; } else if (((_root.room2.walls._currentframe == 2) or (_root.room2.walls._currentframe == 11)) or (_root.room2.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room2.barbeque._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["24"]; } else if (_root.room2.staff2.staffCleaner._visible == false) { _root.speech.messageWindow.text = _root.speechList["9"]; } else if (_root.eventActive == true) { _root.speech.messageWindow.text = _root.speechList["16"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 242 MovieClip in Symbol 481 MovieClip Frame 8on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room2.staff2.staffGardener._visible == false) { _root.speech.messageWindow.text = _root.speechList["23"]; } else if (((_root.room2.walls._currentframe == 2) or (_root.room2.walls._currentframe == 11)) or (_root.room2.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room2.barbeque._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["24"]; } else if (_root.room2.staff2.staffCleaner._visible == false) { _root.speech.messageWindow.text = _root.speechList["9"]; } else if (_root.eventActive == true) { _root.speech.messageWindow.text = _root.speechList["16"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 479 MovieClip in Symbol 481 MovieClip Frame 9on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room2.staff2.staffGardener._visible == false) { _root.speech.messageWindow.text = _root.speechList["23"]; } else if (((_root.room2.walls._currentframe == 2) or (_root.room2.walls._currentframe == 11)) or (_root.room2.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room2.barbeque._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["24"]; } else if (_root.room2.staff2.staffCleaner._visible == false) { _root.speech.messageWindow.text = _root.speechList["9"]; } else if (_root.eventActive == true) { _root.speech.messageWindow.text = _root.speechList["16"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 480 MovieClip in Symbol 481 MovieClip Frame 10on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room2.staff2.staffGardener._visible == false) { _root.speech.messageWindow.text = _root.speechList["23"]; } else if (((_root.room2.walls._currentframe == 2) or (_root.room2.walls._currentframe == 11)) or (_root.room2.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room2.barbeque._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["24"]; } else if (_root.room2.staff2.staffCleaner._visible == false) { _root.speech.messageWindow.text = _root.speechList["9"]; } else if (_root.eventActive == true) { _root.speech.messageWindow.text = _root.speechList["16"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Symbol 482 MovieClip Frame 1stop();Instance of Symbol 85 MovieClip "floor" in Symbol 482 MovieClip Frame 1onClipEvent (load) { gotoAndStop (5); }Instance of Symbol 446 MovieClip "chairs" in Symbol 482 MovieClip Frame 1onClipEvent (load) { gotoAndStop(startFrame); }Instance of Symbol 460 MovieClip "staff2" in Symbol 482 MovieClip Frame 1onClipEvent (load) { setProperty("thi", _visible , ""); }Symbol 485 Buttonon (press) { _root.removeDecor(15, 10); gotoAndStop (1); }Symbol 488 Buttonon (press) { _root.removeDecor(20, 25); gotoAndStop (1); }Symbol 491 Buttonon (press) { _root.removeDecor(20, 25); gotoAndStop (1); }Symbol 494 Buttonon (press) { _root.removeDecor(20, 25); gotoAndStop (1); }Symbol 497 Buttonon (press) { _root.removeDecor(15, 10); gotoAndStop (1); }Symbol 498 MovieClip Frame 1stop();Symbol 499 Buttonon (press) { _root.removeDecor(10, 5); gotoAndStop (1); }Symbol 501 Buttonon (press) { _root.removeDecor(10, 10); gotoAndStop (1); }Symbol 503 Buttonon (press) { _root.removeDecor(10, 5); gotoAndStop (1); }Symbol 505 Buttonon (press) { _root.removeDecor(10, 5); gotoAndStop (1); }Symbol 506 MovieClip Frame 1stop();Symbol 509 Buttonon (press) { _root.removeDecor(20, 10); gotoAndStop (1); }Symbol 513 Buttonon (press) { _root.removeDecor(20, 15); gotoAndStop (1); }Symbol 516 Buttonon (press) { _root.removeDecor(15, 7); gotoAndStop (1); }Symbol 517 MovieClip Frame 1stop();Symbol 519 Buttonon (press) { _root.removeDecor(15, 10); gotoAndStop (1); }Symbol 521 Buttonon (press) { _root.removeDecor(20, 15); gotoAndStop (1); }Symbol 523 Buttonon (press) { _root.removeDecor(15, 10); gotoAndStop (1); }Symbol 525 Buttonon (press) { _root.removeDecor(15, 10); gotoAndStop (1); }Symbol 528 Buttonon (press) { _root.removeDecor(20, 15); gotoAndStop (1); }Symbol 531 Buttonon (press) { _root.removeDecor(20, 15); gotoAndStop (1); }Symbol 534 Buttonon (press) { _root.removeDecor(20, 15); gotoAndStop (1); }Symbol 537 Buttonon (press) { _root.removeDecor(20, 15); gotoAndStop (1); }Symbol 541 Buttonon (press) { _root.removeDecor(20, 15); gotoAndStop (1); }Symbol 543 Buttonon (press) { _root.removeDecor(25, 20); gotoAndStop (1); }Symbol 544 MovieClip Frame 1stop();Symbol 547 Buttonon (press) { _root.removeDecor(5, 5); gotoAndStop (1); }Symbol 550 Buttonon (press) { _root.removeDecor(5, 5); gotoAndStop (1); }Symbol 551 MovieClip Frame 1stop();Symbol 554 Buttonon (press) { _root.removeSpItem(10, 5); gotoAndStop (1); }Symbol 557 Buttonon (press) { _root.removeSpItem(10, 5); gotoAndStop (1); }Symbol 560 Buttonon (press) { _root.removeSpItem(10, 5); gotoAndStop (1); }Symbol 563 Buttonon (press) { _root.removeSpItem(10, 5); gotoAndStop (1); }Symbol 564 MovieClip Frame 1stop();Symbol 567 Buttonon (press) { _root.removeDecor(50, 60); gotoAndStop (1); }Symbol 570 Buttonon (press) { _root.removeDecor(20, 40); gotoAndStop (1); }Symbol 571 MovieClip Frame 1stop();Symbol 573 Buttonon (press) { _root.removeDecor(25, 20); gotoAndStop (1); }Symbol 575 Buttonon (press) { _root.removeDecor(30, 25); _root.complaintAdd(-10); gotoAndStop (1); _root.messageWindow.textColor = 3381504 /* 0x339900 */; _root.messages = _root.messageList["5"]; }Symbol 577 Buttonon (press) { _root.removeDecor(40, 30); _root.complaintAdd(-20); gotoAndStop (1); _root.messageWindow.textColor = 3381504 /* 0x339900 */; _root.messages = _root.messageList["5"]; }Symbol 578 MovieClip Frame 1stop();Instance of Symbol 160 MovieClip "staffCleaner" in Symbol 582 MovieClip Frame 1onClipEvent (load) { setProperty(this, _visible , false); } on (press) { _root.removeStaff(10, 2); setProperty(this, _visible , false); _root.complaintAdd(20); }Instance of Symbol 581 MovieClip "staffClubManager" in Symbol 582 MovieClip Frame 1onClipEvent (load) { setProperty(this, _visible , false); } on (press) { _root.removeStaff(20, 5); setProperty(this, _visible , false); _root.complaintAdd(20); }Symbol 619 MovieClip Frame 1stop();Instance of Symbol 608 MovieClip in Symbol 619 MovieClip Frame 2onClipEvent (load) { goodBadStereo = random(2) + 1; } on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room1.stereo._currentframe > 2) { if (goodBadStereo == 1) { _root.speech.messageWindow.text = _root.speechList["8"]; } else { _root.speech.messageWindow.text = _root.speechList["11"]; } } else if (_root.room1.chairs._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["12"]; } else if (_root.room1.tv._currentframe > 2) { _root.speech.messageWindow.text = _root.speechList["19"]; } else if (((_root.room1.walls._currentframe == 2) or (_root.room1.walls._currentframe == 11)) or (_root.room1.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room1.staff1.staffCleaner._visible == false) { _root.speech.messageWindow.text = _root.speechList["9"]; } else if (_root.eventActive != true) { _root.speech.messageWindow.text = _root.speechList["15"]; } else if (_root.eventActive == true) { _root.speech.messageWindow.text = _root.speechList["16"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 610 MovieClip in Symbol 619 MovieClip Frame 3onClipEvent (load) { goodBadStereo = random(2) + 1; } on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room1.stereo._currentframe > 2) { if (goodBadStereo == 1) { _root.speech.messageWindow.text = _root.speechList["8"]; } else { _root.speech.messageWindow.text = _root.speechList["11"]; } } else if (_root.room1.chairs._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["12"]; } else if (_root.room1.tv._currentframe > 2) { _root.speech.messageWindow.text = _root.speechList["19"]; } else if (((_root.room1.walls._currentframe == 2) or (_root.room1.walls._currentframe == 11)) or (_root.room1.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room1.staff1.staffCleaner._visible == false) { _root.speech.messageWindow.text = _root.speechList["9"]; } else if (_root.eventActive != true) { _root.speech.messageWindow.text = _root.speechList["15"]; } else if (_root.eventActive == true) { _root.speech.messageWindow.text = _root.speechList["16"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 611 MovieClip in Symbol 619 MovieClip Frame 4onClipEvent (load) { goodBadStereo = random(2) + 1; } on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room1.stereo._currentframe > 2) { if (goodBadStereo == 1) { _root.speech.messageWindow.text = _root.speechList["8"]; } else { _root.speech.messageWindow.text = _root.speechList["11"]; } } else if (_root.room1.chairs._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["12"]; } else if (_root.room1.tv._currentframe > 2) { _root.speech.messageWindow.text = _root.speechList["19"]; } else if (((_root.room1.walls._currentframe == 2) or (_root.room1.walls._currentframe == 11)) or (_root.room1.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room1.staff1.staffCleaner._visible == false) { _root.speech.messageWindow.text = _root.speechList["9"]; } else if (_root.eventActive != true) { _root.speech.messageWindow.text = _root.speechList["15"]; } else if (_root.eventActive == true) { _root.speech.messageWindow.text = _root.speechList["16"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 228 MovieClip in Symbol 619 MovieClip Frame 5onClipEvent (load) { goodBadStereo = random(2) + 1; } on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room1.stereo._currentframe > 2) { if (goodBadStereo == 1) { _root.speech.messageWindow.text = _root.speechList["8"]; } else { _root.speech.messageWindow.text = _root.speechList["11"]; } } else if (_root.room1.chairs._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["12"]; } else if (_root.room1.tv._currentframe > 2) { _root.speech.messageWindow.text = _root.speechList["19"]; } else if (((_root.room1.walls._currentframe == 2) or (_root.room1.walls._currentframe == 11)) or (_root.room1.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room1.staff1.staffCleaner._visible == false) { _root.speech.messageWindow.text = _root.speechList["9"]; } else if (_root.eventActive != true) { _root.speech.messageWindow.text = _root.speechList["15"]; } else if (_root.eventActive == true) { _root.speech.messageWindow.text = _root.speechList["16"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 613 MovieClip in Symbol 619 MovieClip Frame 6onClipEvent (load) { goodBadStereo = random(2) + 1; } on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room1.stereo._currentframe > 2) { if (goodBadStereo == 1) { _root.speech.messageWindow.text = _root.speechList["8"]; } else { _root.speech.messageWindow.text = _root.speechList["11"]; } } else if (_root.room1.chairs._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["12"]; } else if (_root.room1.tv._currentframe > 2) { _root.speech.messageWindow.text = _root.speechList["19"]; } else if (((_root.room1.walls._currentframe == 2) or (_root.room1.walls._currentframe == 11)) or (_root.room1.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room1.staff1.staffCleaner._visible == false) { _root.speech.messageWindow.text = _root.speechList["9"]; } else if (_root.eventActive != true) { _root.speech.messageWindow.text = _root.speechList["15"]; } else if (_root.eventActive == true) { _root.speech.messageWindow.text = _root.speechList["16"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 238 MovieClip in Symbol 619 MovieClip Frame 7onClipEvent (load) { goodBadStereo = random(2) + 1; } on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room1.stereo._currentframe > 2) { if (goodBadStereo == 1) { _root.speech.messageWindow.text = _root.speechList["8"]; } else { _root.speech.messageWindow.text = _root.speechList["11"]; } } else if (_root.room1.chairs._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["12"]; } else if (_root.room1.tv._currentframe > 2) { _root.speech.messageWindow.text = _root.speechList["19"]; } else if (((_root.room1.walls._currentframe == 2) or (_root.room1.walls._currentframe == 11)) or (_root.room1.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room1.staff1.staffCleaner._visible == false) { _root.speech.messageWindow.text = _root.speechList["9"]; } else if (_root.eventActive != true) { _root.speech.messageWindow.text = _root.speechList["15"]; } else if (_root.eventActive == true) { _root.speech.messageWindow.text = _root.speechList["16"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 242 MovieClip in Symbol 619 MovieClip Frame 8onClipEvent (load) { goodBadStereo = random(2) + 1; } on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room1.stereo._currentframe > 2) { if (goodBadStereo == 1) { _root.speech.messageWindow.text = _root.speechList["8"]; } else { _root.speech.messageWindow.text = _root.speechList["11"]; } } else if (_root.room1.chairs._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["12"]; } else if (_root.room1.tv._currentframe > 2) { _root.speech.messageWindow.text = _root.speechList["19"]; } else if (((_root.room1.walls._currentframe == 2) or (_root.room1.walls._currentframe == 11)) or (_root.room1.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room1.staff1.staffCleaner._visible == false) { _root.speech.messageWindow.text = _root.speechList["9"]; } else if (_root.eventActive != true) { _root.speech.messageWindow.text = _root.speechList["15"]; } else if (_root.eventActive == true) { _root.speech.messageWindow.text = _root.speechList["16"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 616 MovieClip in Symbol 619 MovieClip Frame 9onClipEvent (load) { goodBadStereo = random(2) + 1; } on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room1.stereo._currentframe > 2) { if (goodBadStereo == 1) { _root.speech.messageWindow.text = _root.speechList["8"]; } else { _root.speech.messageWindow.text = _root.speechList["11"]; } } else if (_root.room1.chairs._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["12"]; } else if (_root.room1.tv._currentframe > 2) { _root.speech.messageWindow.text = _root.speechList["19"]; } else if (((_root.room1.walls._currentframe == 2) or (_root.room1.walls._currentframe == 11)) or (_root.room1.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room1.staff1.staffCleaner._visible == false) { _root.speech.messageWindow.text = _root.speechList["9"]; } else if (_root.eventActive != true) { _root.speech.messageWindow.text = _root.speechList["15"]; } else if (_root.eventActive == true) { _root.speech.messageWindow.text = _root.speechList["16"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Instance of Symbol 618 MovieClip in Symbol 619 MovieClip Frame 10onClipEvent (load) { goodBadStereo = random(2) + 1; } on (rollOver) { setProperty(_root.speech, _x , _root._xmouse); setProperty(_root.speech, _y , _root._ymouse); if (_root.room1.stereo._currentframe > 2) { if (goodBadStereo == 1) { _root.speech.messageWindow.text = _root.speechList["8"]; } else { _root.speech.messageWindow.text = _root.speechList["11"]; } } else if (_root.room1.chairs._currentframe == 2) { _root.speech.messageWindow.text = _root.speechList["12"]; } else if (_root.room1.tv._currentframe > 2) { _root.speech.messageWindow.text = _root.speechList["19"]; } else if (((_root.room1.walls._currentframe == 2) or (_root.room1.walls._currentframe == 11)) or (_root.room1.walls._currentframe == 14)) { _root.speech.messageWindow.text = _root.speechList["17"]; } else if (_root.room1.staff1.staffCleaner._visible == false) { _root.speech.messageWindow.text = _root.speechList["9"]; } else if (_root.eventActive != true) { _root.speech.messageWindow.text = _root.speechList["15"]; } else if (_root.eventActive == true) { _root.speech.messageWindow.text = _root.speechList["16"]; } else { _root.speech.messageWindow.text = _root.speechList["14"]; } setProperty(_root.speech, _visible , true); } on (rollOut) { setProperty(_root.speech, _visible , false); }Symbol 620 MovieClip Frame 1stop();Instance of Symbol 506 MovieClip "chairs" in Symbol 620 MovieClip Frame 1onClipEvent (load) { gotoAndStop(startFrame); }Symbol 632 Buttonon (release) { setProperty(this, _visible , false); _root.windowOpen = false; }Symbol 635 Buttonon (release) { gotoAndStop (8); }Symbol 636 Buttonon (release) { gotoAndStop (2); }Symbol 637 Buttonon (release) { gotoAndStop (3); }Symbol 638 Buttonon (release) { gotoAndStop (5); }Symbol 639 Buttonon (release) { gotoAndStop (6); }Symbol 640 Buttonon (release) { gotoAndStop (9); }Symbol 644 Buttonon (press) { startDrag (this, false, 120, 165, 383, 370); } on (release) { stopDrag(); }Symbol 647 Buttonon (release) { if (_root.room4.chairs._currentframe != "2") { _root.addDecor(10, 5); _root.room4.chairs.gotoAndStop("2"); } } on (rollOver) { description.text = "Wooden Chair \u00A35"; } on (rollOut) { description.text = ""; }Symbol 649 Buttonon (release) { if (_root.room4.chairs._currentframe != "3") { _root.addDecor(10, 10); _root.room4.chairs.gotoAndStop("3"); } } on (rollOver) { description.text = "Designer Chair \u00A310"; } on (rollOut) { description.text = ""; }Symbol 650 Buttonon (release) { if (_root.room4.chairs._currentframe != "3") { _root.addDecor(10, 5); _root.room4.chairs.gotoAndStop("4"); } } on (rollOver) { description.text = "Stackable Chair \u00A35"; } on (rollOut) { description.text = ""; }Symbol 651 Buttonon (release) { if (_root.room4.chairs._currentframe != "5") { _root.addDecor(10, 5); _root.room4.chairs.gotoAndStop("5"); } } on (rollOver) { description.text = "Pod Chair \u00A35"; } on (rollOut) { description.text = ""; }Symbol 654 Buttonon (release) { if (_root.room4.walls._currentframe != "11") { _root.addDecor(20, 25); _root.room4.walls.gotoAndStop("11"); } } on (rollOver) { description.text = "Orange Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 656 Buttonon (release) { if (_root.room4.walls._currentframe != "10") { _root.addDecor(20, 25); _root.room4.walls.gotoAndStop("10"); } } on (rollOver) { description.text = "Red Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 658 Buttonon (release) { if (_root.room4.walls._currentframe != "9") { _root.addDecor(20, 25); _root.room4.walls.gotoAndStop("9"); } } on (rollOver) { description.text = "Red Pattern Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 660 Buttonon (release) { if (_root.room4.walls._currentframe != "8") { _root.addDecor(20, 25); _root.room4.walls.gotoAndStop("8"); } } on (rollOver) { description.text = "Blue Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 662 Buttonon (release) { if (_root.room4.walls._currentframe != "7") { _root.addDecor(20, 25); _root.room4.walls.gotoAndStop("7"); } } on (rollOver) { description.text = "Purple Stripe Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 664 Buttonon (release) { if (_root.room4.walls._currentframe != "6") { _root.addDecor(20, 25); _root.room4.walls.gotoAndStop("6"); } } on (rollOver) { description.text = "Purple Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 666 Buttonon (release) { if (_root.room4.walls._currentframe != "5") { _root.addDecor(20, 25); _root.room4.walls.gotoAndStop("5"); } } on (rollOver) { description.text = "Purple Pattern Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 668 Buttonon (release) { if (_root.room4.walls._currentframe != "4") { _root.addDecor(20, 25); _root.room4.walls.gotoAndStop("4"); } } on (rollOver) { description.text = "Orange Stripe Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 670 Buttonon (release) { if (_root.room4.walls._currentframe != "3") { _root.addDecor(20, 25); _root.room4.walls.gotoAndStop("3"); } } on (rollOver) { description.text = "Orange Pattern Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 672 Buttonon (release) { if (_root.room4.walls._currentframe != "2") { _root.addDecor(20, 25); _root.room4.walls.gotoAndStop("2"); } } on (rollOver) { description.text = "Blue Stripe Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 674 Buttonon (release) { if (_root.room4.walls._currentframe != "15") { _root.addDecor(20, 25); _root.room4.walls.gotoAndStop("15"); } } on (rollOver) { description.text = "B&W Pattern Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 676 Buttonon (release) { if (_root.room4.walls._currentframe != "14") { _root.addDecor(30, 40); _root.room4.walls.gotoAndStop("14"); } } on (rollOver) { description.text = "B&W Tile \u00A340"; } on (rollOut) { description.text = ""; }Symbol 678 Buttonon (release) { if (_root.room4.walls._currentframe != "12") { _root.addDecor(30, 40); _root.room4.walls.gotoAndStop("12"); } } on (rollOver) { description.text = "White Tile \u00A340"; } on (rollOut) { description.text = ""; }Symbol 680 Buttonon (release) { if (_root.room4.walls._currentframe != "13") { _root.addDecor(30, 40); _root.room4.walls.gotoAndStop("13"); } } on (rollOver) { description.text = "Brick \u00A340"; } on (rollOut) { description.text = ""; }Symbol 681 Buttonon (release) { if (_root.room4.floor._currentframe != "2") { _root.addDecor(25, 20); _root.room4.floor.gotoAndStop("2"); } } on (rollOver) { description.text = "Wood Floor \u00A320"; } on (rollOut) { description.text = ""; }Symbol 682 Buttonon (release) { if (_root.room4.floor._currentframe != "3") { _root.addDecor(15, 10); _root.room4.floor.gotoAndStop("3"); } } on (rollOver) { description.text = "Laminate Floor \u00A310"; } on (rollOut) { description.text = ""; }Symbol 683 Buttonon (release) { if (_root.room4.floor._currentframe != "4") { _root.addDecor(30, 40); _root.room4.floor.gotoAndStop("4"); } } on (rollOver) { description.text = "White Floor \u00A340"; } on (rollOut) { description.text = ""; }Symbol 684 Buttonon (release) { if (_root.room4.floor._currentframe != "5") { _root.addDecor(30, 40); _root.room4.floor.gotoAndStop("5"); } } on (rollOver) { description.text = "Synthetic Grass \u00A340"; } on (rollOut) { description.text = ""; }Symbol 685 Buttonon (release) { if (_root.room4.floor._currentframe != "6") { _root.addDecor(17, 20); _root.room4.floor.gotoAndStop("6"); } } on (rollOver) { description.text = "Orange Carpet \u00A320"; } on (rollOut) { description.text = ""; }Symbol 686 Buttonon (release) { if (_root.room4.floor._currentframe != "7") { _root.addDecor(30, 40); _root.room4.floor.gotoAndStop("7"); } } on (rollOver) { description.text = "White Tile \u00A340"; } on (rollOut) { description.text = ""; }Symbol 687 Buttonon (release) { if (_root.room4.floor._currentframe != "8") { _root.addDecor(17, 20); _root.room4.floor.gotoAndStop("8"); } } on (rollOver) { description.text = "Red Carpet \u00A320"; } on (rollOut) { description.text = ""; }Symbol 688 Buttonon (release) { if (_root.room4.floor._currentframe != "9") { _root.addDecor(17, 20); _root.room4.floor.gotoAndStop("9"); } } on (rollOver) { description.text = "Purple Carpet \u00A320"; } on (rollOut) { description.text = ""; }Symbol 689 Buttonon (release) { if (_root.room4.floor._currentframe != "13") { _root.addDecor(17, 20); _root.room4.floor.gotoAndStop("13"); } } on (rollOver) { description.text = "Blue Carpet \u00A320"; } on (rollOut) { description.text = ""; }Symbol 690 Buttonon (release) { if (_root.room4.floor._currentframe != "10") { _root.addDecor(30, 40); _root.room4.floor.gotoAndStop("10"); } } on (rollOver) { description.text = "Orange Tile \u00A340"; } on (rollOut) { description.text = ""; }Symbol 691 Buttonon (release) { if (_root.room4.floor._currentframe != "15") { _root.addDecor(20, 60); _root.room4.floor.gotoAndStop("15"); } } on (rollOver) { description.text = "Crazy Paving \u00A360"; } on (rollOut) { description.text = ""; }Symbol 692 Buttonon (release) { if (_root.room4.floor._currentframe != "11") { _root.addDecor(30, 40); _root.room4.floor.gotoAndStop("11"); } } on (rollOver) { description.text = "B&W Tile \u00A340"; } on (rollOut) { description.text = ""; }Symbol 693 Buttonon (release) { if (_root.room4.floor._currentframe != "12") { _root.addDecor(30, 40); _root.room4.floor.gotoAndStop("12"); } } on (rollOver) { description.text = "Blue Tile \u00A340"; } on (rollOut) { description.text = ""; }Symbol 694 Buttonon (release) { if (_root.room4.stereo._currentframe != "2") { _root.addDecor(25, 20); _root.room4.stereo.gotoAndStop("2"); } } on (rollOver) { description.text = "Micro Stereo \u00A320"; } on (rollOut) { description.text = ""; }Symbol 695 Buttonon (release) { if (_root.room4.stereo._currentframe != "3") { _root.addDecor(30, 25); _root.room4.stereo.gotoAndStop("3"); _root.complaintAdd(10); _root.messageWindow.textColor = 16711680 /* 0xFF0000 */; _root.messages = _root.complaintList["2"]; } } on (rollOver) { description.text = "Home Stereo \u00A325"; } on (rollOut) { description.text = ""; }Symbol 696 Buttonon (release) { if (_root.room4.stereo._currentframe != "4") { _root.addDecor(40, 30); _root.room4.stereo.gotoAndStop("4"); _root.complaintAdd(20); _root.messageWindow.textColor = 16711680 /* 0xFF0000 */; _root.messages = _root.complaintList["3"]; } } on (rollOver) { description.text = "Super Stereo \u00A330"; } on (rollOut) { description.text = ""; }Symbol 699 Buttonon (release) { if (_root.room4.specialBackground._currentframe != "2") { _root.addSpItem(30, 50); _root.room4.specialBackground.gotoAndStop("2"); } } on (rollOver) { description.text = "Backdrop \u00A350"; } on (rollOut) { description.text = ""; }Symbol 702 Buttonon (release) { if (_root.room4.specialCurtains._currentframe != "2") { _root.addSpItem(30, 50); _root.room4.specialCurtains.gotoAndStop("2"); } } on (rollOver) { description.text = "Curtains \u00A350"; } on (rollOut) { description.text = ""; }Symbol 704 Buttonon (release) { if (_root.room4.specialScenery._currentframe != "2") { _root.addSpItem(20, 30); _root.room4.specialScenery.gotoAndStop("2"); } } on (rollOver) { description.text = "Scenery \u00A330"; } on (rollOut) { description.text = ""; }Symbol 707 Buttonon (release) { if (_root.room4.specialMirror._currentframe != "2") { _root.addSpItem(20, 30); _root.room4.specialMirror.gotoAndStop("2"); } } on (rollOver) { description.text = "Mirrorball \u00A330"; } on (rollOut) { description.text = ""; }Symbol 708 Buttonon (release) { if (_root.room4.specialPA._currentframe != "2") { _root.addSpItem(40, 100); _root.room4.specialPA.gotoAndStop("2"); _root.complaintAdd(50); _root.messageWindow.textColor = 16711680 /* 0xFF0000 */; _root.messages = _root.complaintList["4"]; } } on (rollOver) { description.text = "PA \u00A3100"; } on (rollOut) { description.text = ""; }Symbol 711 Buttonon (release) { if (_root.room4.decks._currentframe != "2") { _root.addSpItem(50, 70); _root.room4.decks.gotoAndStop("2"); _root.complaintAdd(20); _root.messageWindow.textColor = 16711680 /* 0xFF0000 */; _root.messages = _root.complaintList["8"]; } } on (rollOver) { description.text = "Decks \u00A370"; } on (rollOut) { description.text = ""; }Symbol 714 Buttonon (release) { if (_root.room4.specialLaser._currentframe != "2") { _root.addSpItem(30, 60); _root.room4.specialLaser.gotoAndStop("2"); _root.complaintAdd(20); _root.messageWindow.textColor = 16711680 /* 0xFF0000 */; _root.messages = _root.complaintList["10"]; } } on (rollOver) { description.text = "Laser \u00A360"; } on (rollOut) { description.text = ""; }Symbol 715 Buttonon (release) { if (_root.room4.specialStrobe._currentframe != "2") { _root.addSpItem(30, 50); _root.room4.specialStrobe.gotoAndStop("2"); _root.complaintAdd(20); _root.messageWindow.textColor = 16711680 /* 0xFF0000 */; _root.messages = _root.complaintList["9"]; } } on (rollOver) { description.text = "Strobe Light \u00A350"; } on (rollOut) { description.text = ""; }Symbol 716 Buttonon (release) { if (_root.room4.staff3.staffCleaner._visible != true) { _root.addStaff(10, 2); setProperty(_root.room4.staff.staffCleaner, _visible , true); _root.complaintAdd(-20); _root.item.start(); } } on (rollOver) { description.text = "Cleaner \u00A32 per day"; } on (rollOut) { description.text = ""; }Symbol 717 Buttonon (release) { if (_root.room4.staff.staffBandLeader._visible != true) { _root.addStaff(18, 3); setProperty(_root.room4.staff.staffBandLeader, _visible , true); _root.complaintAdd(10); _root.item.start(); _root.messageWindow.textColor = 16711680 /* 0xFF0000 */; _root.messages = _root.complaintList["6"]; } } on (rollOver) { description.text = "Band \u00A33 per day"; } on (rollOut) { description.text = ""; }Symbol 718 Buttonon (release) { if (_root.room4.staff.staffDj._visible != true) { _root.addStaff(20, 4); setProperty(_root.room4.staff.staffDj, _visible , true); _root.complaintAdd(10); _root.item.start(); _root.messageWindow.textColor = 16711680 /* 0xFF0000 */; _root.messages = _root.complaintList["5"]; } } on (rollOver) { description.text = "DJ \u00A34 per day"; } on (rollOut) { description.text = ""; }Symbol 719 Buttonon (release) { if (_root.room4.staff.staffEventManager._visible != true) { _root.addStaff(17, 3); setProperty(_root.room4.staff.staffEventManager, _visible , true); _root.complaintAdd(-20); _root.item.start(); } } on (rollOver) { description.text = "Event Manager \u00A33 per day"; } on (rollOut) { description.text = ""; }Symbol 720 Buttonon (release) { if (this._alpha == 100) { setProperty("_root.eventDisplay", _visible , true); _root.eventActive = true; _root.evVal = 5; _root.evCost = 3; _root.evName = "Battle of the Bands"; _root.evStart = _root.day; } }Symbol 723 Buttonon (release) { if (this._alpha == 100) { setProperty("_root.eventDisplay", _visible , true); _root.eventActive = true; _root.evVal = 3; _root.evCost = 2; _root.evName = "Dance Competition"; _root.evStart = _root.day; } }Symbol 726 Buttonon (release) { if (this._alpha == 100) { setProperty("_root.eventDisplay", _visible , true); _root.eventActive = true; _root.evVal = 5; _root.evCost = 3; _root.evName = "DJ Competition"; _root.evStart = _root.day; } }Symbol 730 MovieClip Frame 1stop(); category.text = "Club Set-Up";Symbol 730 MovieClip Frame 2category = "Furniture";Symbol 730 MovieClip Frame 3category = "Wall/Floor Covering";Symbol 730 MovieClip Frame 5category = "Entertainment";Symbol 730 MovieClip Frame 6category = "Special Items";Symbol 730 MovieClip Frame 8stop(); category.text = "Staff";Instance of Symbol 722 MovieClip in Symbol 730 MovieClip Frame 9onClipEvent (enterFrame) { if (_root.room4.staff.staffBandLeader._visible == false) { setProperty(this, _alpha , "50"); } else if (_root.eventActive == true) { setProperty(this, _alpha , "50"); } }Instance of Symbol 725 MovieClip in Symbol 730 MovieClip Frame 9onClipEvent (enterFrame) { if ((_root.room4.staff.staffBandLeader._visible == false) && (_root.room4.staff.staffDj._visible == false)) { setProperty(this, _alpha , "50"); } else if (_root.eventActive == true) { setProperty(this, _alpha , "50"); } }Instance of Symbol 728 MovieClip in Symbol 730 MovieClip Frame 9onClipEvent (enterFrame) { if (_root.room4.staff.staffDj._visible == false) { setProperty(this, _alpha , "50"); } else if (_root.eventActive == true) { setProperty(this, _alpha , "50"); } }Symbol 732 Buttonon (release) { gotoAndStop (7); }Symbol 733 Buttonon (release) { gotoAndStop (2); }Symbol 734 Buttonon (release) { gotoAndStop (3); }Symbol 735 Buttonon (release) { gotoAndStop (5); }Symbol 736 Buttonon (release) { gotoAndStop (6); }Symbol 739 Buttonon (release) { if (_root.room3.table._currentframe != "2") { _root.addDecor(15, 10); _root.room3.table.gotoAndStop("2"); } } on (rollOver) { description.text = "Wooden Table \u00A310"; } on (rollOut) { description.text = ""; }Symbol 740 Buttonon (release) { if (_root.room3.table._currentframe != "3") { _root.addDecor(20, 15); _root.room3.table.gotoAndStop("3"); } } on (rollOver) { description.text = "Glass Table \u00A320"; } on (rollOut) { description.text = ""; }Symbol 741 Buttonon (release) { if (_root.room3.table._currentframe != "4") { _root.addDecor(15, 10); _root.room3.table.gotoAndStop("4"); } } on (rollOver) { description.text = "Wooden Table \u00A310"; } on (rollOut) { description.text = ""; }Symbol 742 Buttonon (release) { if (_root.room3.table._currentframe != "5") { _root.addDecor(15, 10); _root.room3.table.gotoAndStop("5"); } } on (rollOver) { description.text = "Red Table \u00A310"; } on (rollOut) { description.text = ""; }Symbol 743 Buttonon (release) { if (_root.room3.chairs._currentframe != "2") { _root.addDecor(10, 5); _root.room3.chairs.gotoAndStop("2"); } } on (rollOver) { description.text = "Wooden Chair \u00A35"; } on (rollOut) { description.text = ""; }Symbol 744 Buttonon (release) { if (_root.room3.chairs._currentframe != "3") { _root.addDecor(15, 10); _root.room3.chairs.gotoAndStop("3"); } } on (rollOver) { description.text = "Designer Chair \u00A310"; } on (rollOut) { description.text = ""; }Symbol 745 Buttonon (release) { if (_root.room3.chairs._currentframe != "4") { _root.addDecor(10, 5); _root.room3.chairs.gotoAndStop("4"); } } on (rollOver) { description.text = "Stackable Chair \u00A35"; } on (rollOut) { description.text = ""; }Symbol 746 Buttonon (release) { if (_root.room3.chairs._currentframe != "5") { _root.addDecor(10, 5); _root.room3.chairs.gotoAndStop("5"); } } on (rollOver) { description.text = "Pod Chair \u00A35"; } on (rollOut) { description.text = ""; }Symbol 747 Buttonon (release) { if (_root.room3.walls._currentframe != "11") { _root.addDecor(20, 25); _root.room3.walls.gotoAndStop("11"); } } on (rollOver) { description.text = "Orange Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 748 Buttonon (release) { if (_root.room3.walls._currentframe != "10") { _root.addDecor(20, 25); _root.room3.walls.gotoAndStop("10"); } } on (rollOver) { description.text = "Red Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 749 Buttonon (release) { if (_root.room3.walls._currentframe != "9") { _root.addDecor(20, 25); _root.room3.walls.gotoAndStop("9"); } } on (rollOver) { description.text = "Red Pattern Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 750 Buttonon (release) { if (_root.room3.walls._currentframe != "8") { _root.addDecor(20, 25); _root.room3.walls.gotoAndStop("8"); } } on (rollOver) { description.text = "Blue Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 751 Buttonon (release) { if (_root.room3.walls._currentframe != "7") { _root.addDecor(20, 25); _root.room3.walls.gotoAndStop("7"); } } on (rollOver) { description.text = "Purple Stripe Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 752 Buttonon (release) { if (_root.room3.walls._currentframe != "6") { _root.addDecor(20, 25); _root.room3.walls.gotoAndStop("6"); } } on (rollOver) { description.text = "Purple Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 753 Buttonon (release) { if (_root.room3.walls._currentframe != "5") { _root.addDecor(20, 25); _root.room3.walls.gotoAndStop("5"); } } on (rollOver) { description.text = "Purple Pattern Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 754 Buttonon (release) { if (_root.room3.walls._currentframe != "4") { _root.addDecor(20, 25); _root.room3.walls.gotoAndStop("4"); } } on (rollOver) { description.text = "Orange Stripe Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 755 Buttonon (release) { if (_root.room3.walls._currentframe != "3") { _root.addDecor(20, 25); _root.room3.walls.gotoAndStop("3"); } } on (rollOver) { description.text = "Orange Pattern Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 756 Buttonon (release) { if (_root.room3.walls._currentframe != "2") { _root.addDecor(20, 25); _root.room3.walls.gotoAndStop("2"); } } on (rollOver) { description.text = "Blue Stripe Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 757 Buttonon (release) { if (_root.room3.walls._currentframe != "15") { _root.addDecor(20, 25); _root.room3.walls.gotoAndStop("15"); } } on (rollOver) { description.text = "B&W Pattern Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 758 Buttonon (release) { if (_root.room3.walls._currentframe != "14") { _root.addDecor(30, 40); _root.room3.walls.gotoAndStop("14"); } } on (rollOver) { description.text = "B&W Tile \u00A340"; } on (rollOut) { description.text = ""; }Symbol 759 Buttonon (release) { if (_root.room3.walls._currentframe != "12") { _root.addDecor(30, 40); _root.room3.walls.gotoAndStop("12"); } } on (rollOver) { description.text = "White Tile \u00A340"; } on (rollOut) { description.text = ""; }Symbol 760 Buttonon (release) { if (_root.room3.walls._currentframe != "13") { _root.addDecor(30, 40); _root.room3.walls.gotoAndStop("13"); } } on (rollOver) { description.text = "Brick \u00A340"; } on (rollOut) { description.text = ""; }Symbol 761 Buttonon (release) { if (_root.room3.floor._currentframe != "2") { _root.addDecor(25, 20); _root.room3.floor.gotoAndStop("2"); } } on (rollOver) { description.text = "Wood Floor \u00A320"; } on (rollOut) { description.text = ""; }Symbol 762 Buttonon (release) { if (_root.room3.floor._currentframe != "3") { _root.addDecor(15, 10); _root.room3.floor.gotoAndStop("3"); } } on (rollOver) { description.text = "Laminate Floor \u00A310"; } on (rollOut) { description.text = ""; }Symbol 763 Buttonon (release) { if (_root.room3.floor._currentframe != "4") { _root.addDecor(30, 40); _root.room3.floor.gotoAndStop("4"); } } on (rollOver) { description.text = "White Floor \u00A340"; } on (rollOut) { description.text = ""; }Symbol 764 Buttonon (release) { if (_root.room3.floor._currentframe != "6") { _root.addDecor(17, 20); _root.room3.floor.gotoAndStop("6"); } } on (rollOver) { description.text = "Orange Carpet \u00A320"; } on (rollOut) { description.text = ""; }Symbol 765 Buttonon (release) { if (_root.room3.floor._currentframe != "7") { _root.addDecor(30, 40); _root.room3.floor.gotoAndStop("7"); } } on (rollOver) { description.text = "White Tile \u00A340"; } on (rollOut) { description.text = ""; }Symbol 766 Buttonon (release) { if (_root.room3.floor._currentframe != "8") { _root.addDecor(17, 20); _root.room3.floor.gotoAndStop("8"); } } on (rollOver) { description.text = "Red Carpet \u00A320"; } on (rollOut) { description.text = ""; }Symbol 767 Buttonon (release) { if (_root.room3.floor._currentframe != "9") { _root.addDecor(17, 20); _root.room3.floor.gotoAndStop("9"); } } on (rollOver) { description.text = "Purple Carpet \u00A320"; } on (rollOut) { description.text = ""; }Symbol 768 Buttonon (release) { if (_root.room3.floor._currentframe != "13") { _root.addDecor(17, 20); _root.room3.floor.gotoAndStop("13"); } } on (rollOver) { description.text = "Blue Carpet \u00A320"; } on (rollOut) { description.text = ""; }Symbol 769 Buttonon (release) { if (_root.room3.floor._currentframe != "10") { _root.addDecor(30, 40); _root.room3.floor.gotoAndStop("10"); } } on (rollOver) { description.text = "Orange Tile \u00A340"; } on (rollOut) { description.text = ""; }Symbol 770 Buttonon (release) { if (_root.room3.floor._currentframe != "11") { _root.addDecor(30, 40); _root.room3.floor.gotoAndStop("11"); } } on (rollOver) { description.text = "B&W Tile \u00A340"; } on (rollOut) { description.text = ""; }Symbol 771 Buttonon (release) { if (_root.room3.floor._currentframe != "12") { _root.addDecor(30, 40); _root.room3.floor.gotoAndStop("12"); } } on (rollOver) { description.text = "Blue Tile \u00A340"; } on (rollOut) { description.text = ""; }Symbol 772 Buttonon (release) { if (_root.room3.stereo._currentframe != "2") { _root.addDecor(25, 20); _root.room3.stereo.gotoAndStop("2"); } } on (rollOver) { description.text = "Micro Stereo \u00A320"; } on (rollOut) { description.text = ""; }Symbol 773 Buttonon (release) { if (_root.room3.stereo._currentframe != "3") { _root.addDecor(30, 25); _root.room3.stereo.gotoAndStop("3"); _root.complaintAdd(10); _root.messageWindow.textColor = 16711680 /* 0xFF0000 */; _root.messages = _root.complaintList["2"]; } } on (rollOver) { description.text = "Home Stereo \u00A325"; } on (rollOut) { description.text = ""; }Symbol 774 Buttonon (release) { if (_root.room3.stereo._currentframe != "4") { _root.addDecor(40, 30); _root.room3.stereo.gotoAndStop("4"); _root.complaintAdd(20); _root.messageWindow.textColor = 16711680 /* 0xFF0000 */; _root.messages = _root.complaintList["3"]; } } on (rollOver) { description.text = "Super Stereo \u00A330"; } on (rollOut) { description.text = ""; }Symbol 776 Buttonon (release) { if (_root.room3.sign._currentframe != "2") { _root.addSpItem(50, 150); _root.room3.sign.gotoAndStop("2"); } } on (rollOver) { description.text = "Restaurant \u00A3150"; } on (rollOut) { description.text = ""; }Symbol 778 Buttonon (release) { if (_root.room3.sign._currentframe != "3") { _root.addSpItem(50, 100); _root.room3.sign.gotoAndStop("3"); } } on (rollOver) { description.text = "Cafe \u00A3100"; } on (rollOut) { description.text = ""; }Symbol 780 Buttonon (release) { if (_root.room3.sign._currentframe != "4") { _root.addSpItem(40, 75); _root.room3.sign.gotoAndStop("4"); } } on (rollOver) { description.text = "Tuck Shop \u00A375"; } on (rollOut) { description.text = ""; }Symbol 782 Buttonon (release) { if (_root.room3.fountain._currentframe != "2") { _root.addSpItem(30, 50); _root.room3.fountain.gotoAndStop("2"); } } on (rollOver) { description.text = "Fountain \u00A350"; } on (rollOut) { description.text = ""; }Symbol 783 Buttonon (release) { if (_root.room3.staff3.staffCleaner._visible != true) { _root.addStaff(10, 2); setProperty(_root.room3.staff3.staffCleaner, _visible , true); _root.complaintAdd(-20); _root.item.start(); } } on (rollOver) { description.text = "Cleaner \u00A32 per day"; } on (rollOut) { description.text = ""; }Symbol 784 Buttonon (release) { if (_root.room3.staff3.staffKitchenManager._visible != true) { _root.addStaff(15, 2.5); setProperty(_root.room3.staff3.staffKitchenManager, _visible , true); _root.complaintAdd(-20); _root.item.start(); } } on (rollOver) { description.text = "Kitchen Manager \u00A32.5 per day"; } on (rollOut) { description.text = ""; }Symbol 785 Buttonon (release) { if (_root.room3.staff3.staffChef._visible != true) { _root.addStaff(15, 2); setProperty(_root.room3.staff3.staffChef, _visible , true); _root.complaintAdd(-20); _root.item.start(); } } on (rollOver) { description.text = "Cook \u00A32 per day"; } on (rollOut) { description.text = ""; }Symbol 786 Buttonon (release) { if (_root.room3.staff3.staffWaiter._visible != true) { _root.addStaff(10, 2); setProperty(_root.room3.staff3.staffWaiter, _visible , true); _root.complaintAdd(-20); _root.item.start(); } } on (rollOver) { description.text = "Waiter \u00A32 per day"; } on (rollOut) { description.text = ""; }Symbol 787 Buttonon (release) { if (_root.room3.staff3.staffShopkeeper._visible != true) { _root.addStaff(15, 2.5); setProperty(_root.room3.staff3.staffShopkeeper, _visible , true); _root.complaintAdd(-20); _root.item.start(); } } on (rollOver) { description.text = "Shopkeeper \u00A32.5 per day"; } on (rollOut) { description.text = ""; }Symbol 788 Buttonon (release) { if (_root.room3.staff3.staffWaitress._visible != true) { _root.addStaff(10, 2); setProperty(_root.room3.staff3.staffWaitress, _visible , true); _root.complaintAdd(-20); _root.item.start(); } } on (rollOver) { description.text = "Waitress \u00A32 per day"; } on (rollOut) { description.text = ""; }Symbol 789 MovieClip Frame 1stop(); category.text = "Club Set-Up";Symbol 789 MovieClip Frame 2category = "Furniture";Symbol 789 MovieClip Frame 3category = "Wall/Floor Covering";Symbol 789 MovieClip Frame 5category = "Entertainment";Symbol 789 MovieClip Frame 6category = "Special Items";Symbol 789 MovieClip Frame 7stop(); category.text = "Staff";Symbol 791 Buttonon (release) { gotoAndStop (8); }Symbol 792 Buttonon (release) { gotoAndStop (2); }Symbol 793 Buttonon (release) { gotoAndStop (3); }Symbol 794 Buttonon (release) { gotoAndStop (5); }Symbol 795 Buttonon (release) { gotoAndStop (9); }Symbol 798 Buttonon (release) { if (_root.room2.chairs._currentframe != "2") { _root.addDecor(10, 5); _root.room2.chairs.gotoAndStop("2"); } } on (rollOver) { description.text = "Wooden Chair \u00A35"; } on (rollOut) { description.text = ""; }Symbol 800 Buttonon (release) { if (_root.room2.sofa._currentframe != "2") { _root.addDecor(20, 10); _root.room2.sofa.gotoAndStop("2"); } } on (rollOver) { description.text = "Wooden Sofa \u00A310"; } on (rollOut) { description.text = ""; }Symbol 802 Buttonon (release) { if (_root.room2.sofa._currentframe != "4") { _root.addDecor(15, 7); _root.room2.sofa.gotoAndStop("4"); } } on (rollOver) { description.text = "Wooden Bench \u00A37"; } on (rollOut) { description.text = ""; }Symbol 803 Buttonon (release) { if (_root.room2.walls._currentframe != "11") { _root.addDecor(20, 25); _root.room2.walls.gotoAndStop("11"); } } on (rollOver) { description.text = "Orange Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 804 Buttonon (release) { if (_root.room2.walls._currentframe != "10") { _root.addDecor(20, 25); _root.room2.walls.gotoAndStop("10"); } } on (rollOver) { description.text = "Red Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 805 Buttonon (release) { if (_root.room2.walls._currentframe != "9") { _root.addDecor(20, 25); _root.room2.walls.gotoAndStop("9"); } } on (rollOver) { description.text = "Red Pattern Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 806 Buttonon (release) { if (_root.room2.walls._currentframe != "8") { _root.addDecor(20, 25); _root.room2.walls.gotoAndStop("8"); } } on (rollOver) { description.text = "Blue Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 807 Buttonon (release) { if (_root.room2.walls._currentframe != "7") { _root.addDecor(20, 25); _root.room2.walls.gotoAndStop("7"); } } on (rollOver) { description.text = "Purple Stripe Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 808 Buttonon (release) { if (_root.room2.walls._currentframe != "6") { _root.addDecor(20, 25); _root.room2.walls.gotoAndStop("6"); } } on (rollOver) { description.text = "Purple Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 809 Buttonon (release) { if (_root.room2.walls._currentframe != "5") { _root.addDecor(20, 25); _root.room2.walls.gotoAndStop("5"); } } on (rollOver) { description.text = "Purple Pattern Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 810 Buttonon (release) { if (_root.room2.walls._currentframe != "4") { _root.addDecor(20, 25); _root.room2.walls.gotoAndStop("4"); } } on (rollOver) { description.text = "Orange Stripe Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 811 Buttonon (release) { if (_root.room2.walls._currentframe != "3") { _root.addDecor(20, 25); _root.room2.walls.gotoAndStop("3"); } } on (rollOver) { description.text = "Orange Pattern Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 812 Buttonon (release) { if (_root.room2.walls._currentframe != "2") { _root.addDecor(20, 25); _root.room2.walls.gotoAndStop("2"); } } on (rollOver) { description.text = "Blue Stripe Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 813 Buttonon (release) { if (_root.room2.walls._currentframe != "15") { _root.addDecor(20, 25); _root.room2.walls.gotoAndStop("15"); } } on (rollOver) { description.text = "B&W Pattern Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 814 Buttonon (release) { if (_root.room2.walls._currentframe != "14") { _root.addDecor(30, 40); _root.room2.walls.gotoAndStop("14"); } } on (rollOver) { description.text = "B&W Tile \u00A340"; } on (rollOut) { description.text = ""; }Symbol 815 Buttonon (release) { if (_root.room2.walls._currentframe != "12") { _root.addDecor(30, 40); _root.room2.walls.gotoAndStop("12"); } } on (rollOver) { description.text = "White Tile \u00A340"; } on (rollOut) { description.text = ""; }Symbol 816 Buttonon (release) { if (_root.room2.floor._currentframe != "12") { _root.addDecor(25, 20); _root.room2.floor.gotoAndStop("2"); } } on (rollOver) { description.text = "Wood Floor \u00A320"; } on (rollOut) { description.text = ""; }Symbol 817 Buttonon (release) { if (_root.room2.floor._currentframe != "2") { _root.addDecor(15, 10); _root.room2.floor.gotoAndStop("3"); } } on (rollOver) { description.text = "Laminate Floor \u00A310"; } on (rollOut) { description.text = ""; }Symbol 818 Buttonon (release) { if (_root.room2.floor._currentframe != "4") { _root.addDecor(30, 40); _root.room2.floor.gotoAndStop("4"); } } on (rollOver) { description.text = "White Floor \u00A340"; } on (rollOut) { description.text = ""; }Symbol 819 Buttonon (release) { if (_root.room2.floor._currentframe != "7") { _root.addDecor(30, 40); _root.room2.floor.gotoAndStop("7"); } } on (rollOver) { description.text = "White Tile \u00A340"; } on (rollOut) { description.text = ""; }Symbol 820 Buttonon (release) { if (_root.room2.floor._currentframe != "11") { _root.addDecor(30, 40); _root.room2.floor.gotoAndStop("11"); } } on (rollOver) { description.text = "B&W Tile \u00A340"; } on (rollOut) { description.text = ""; }Symbol 821 Buttonon (release) { if (_root.room2.floor._currentframe != "12") { _root.addDecor(30, 40); _root.room2.floor.gotoAndStop("12"); } } on (rollOver) { description.text = "Blue Tile \u00A340"; } on (rollOut) { description.text = ""; }Symbol 822 Buttonon (release) { if (_root.room2.floor._currentframe != "5") { _root.addDecor(30, 40); _root.room2.floor.gotoAndStop("5"); } } on (rollOver) { description.text = "Synthetic Grass \u00A340"; } on (rollOut) { description.text = ""; }Symbol 823 Buttonon (release) { if (_root.room2.floor._currentframe != "15") { _root.addDecor(20, 60); _root.room2.floor.gotoAndStop("15"); } } on (rollOver) { description.text = "Crazy Paving \u00A360"; } on (rollOut) { description.text = ""; }Symbol 825 Buttonon (release) { if (_root.room2.vegetablebed._currentframe != "2") { _root.addSpItem(20, 30); _root.room2.vegetablebed.gotoAndStop("2"); } } on (rollOver) { description.text = "Vegetable Garden \u00A330"; } on (rollOut) { description.text = ""; }Symbol 826 Buttonon (release) { if (_root.room2.flowerbed._currentframe != "2") { _root.addSpItem(25, 40); _root.room2.flowerbed.gotoAndStop("2"); } } on (rollOver) { description.text = "Flower Bed \u00A340"; } on (rollOut) { description.text = ""; }Symbol 827 Buttonon (release) { if (_root.room2.pagoda._currentframe != "2") { _root.addSpItem(30, 50); _root.room2.pagoda.gotoAndStop("2"); } } on (rollOver) { description.text = "Pagoda \u00A350"; } on (rollOut) { description.text = ""; }Symbol 828 Buttonon (release) { if (_root.room2.pool._currentframe != "3") { _root.addSpItem(50, 100); _root.room2.pool.gotoAndStop("3"); } } on (rollOver) { description.text = "Large Pool \u00A3100"; } on (rollOut) { description.text = ""; }Symbol 829 Buttonon (release) { if (_root.room2.pool._currentframe != "2") { _root.addSpItem(30, 70); _root.room2.pool.gotoAndStop("2"); } } on (rollOver) { description.text = "Small Pool \u00A370"; } on (rollOut) { description.text = ""; }Symbol 830 Buttonon (release) { if (_root.room2.trampoline._currentframe != "2") { _root.addSpItem(20, 40); _root.room2.trampoline.gotoAndStop("2"); } } on (rollOver) { description.text = "Large Trampoline \u00A340"; } on (rollOut) { description.text = ""; }Symbol 831 Buttonon (release) { if (_root.room2.trampoline._currentframe != "3") { _root.addSpItem(10, 30); _root.room2.trampoline.gotoAndStop("3"); } } on (rollOver) { description.text = "Small Trampoline \u00A330"; } on (rollOut) { description.text = ""; }Symbol 832 Buttonon (release) { if (_root.room2.barbeque._currentframe != "2") { _root.addSpItem(20, 30); _root.room2.barbeque.gotoAndStop("2"); _root.complaintAdd(10); _root.messageWindow.textColor = 16711680 /* 0xFF0000 */; _root.messages = _root.complaintList["7"]; } } on (rollOver) { description.text = "Barbeque \u00A330"; } on (rollOut) { description.text = ""; }Symbol 833 Buttonon (release) { if (_root.room2.balls._currentframe != "2") { _root.addSpItem(10, 5); _root.room2.balls.gotoAndStop("2"); } } on (rollOver) { description.text = "Sports Equipment \u00A35"; } on (rollOut) { description.text = ""; }Symbol 835 Buttonon (release) { if (_root.room2.shed._currentframe != "3") { _root.addSpItem(20, 40); _root.room2.shed.gotoAndStop("3"); } } on (rollOver) { description.text = "Large Shed \u00A340"; } on (rollOut) { description.text = ""; }Symbol 836 Buttonon (release) { if (_root.room2.shed._currentframe != "2") { _root.addSpItem(10, 30); _root.room2.shed.gotoAndStop("2"); } } on (rollOver) { description.text = "Small Shed \u00A330"; } on (rollOut) { description.text = ""; }Symbol 837 Buttonon (release) { if (_root.room2.staff2.staffCleaner._visible != true) { _root.addStaff(10, 2); setProperty(_root.room2.staff2.staffCleaner, _visible , true); _root.complaintAdd(-20); _root.item.start(); } } on (rollOver) { description.text = "Cleaner \u00A32 per day"; } on (rollOut) { description.text = ""; }Symbol 838 Buttonon (release) { if (_root.room2.staff2.staffActivitiesManager._visible != true) { _root.addStaff(17, 3); setProperty(_root.room2.staff2.staffActivitiesManager, _visible , true); _root.complaintAdd(-20); _root.item.start(); } } on (rollOver) { description.text = "Activities Manager \u00A33 per day"; } on (rollOut) { description.text = ""; }Symbol 839 Buttonon (release) { if (_root.room2.staff2.staffGardener._visible != true) { _root.addStaff(15, 3); setProperty(_root.room2.staff2.staffGardener, _visible , true); _root.complaintAdd(-20); _root.item.start(); } } on (rollOver) { description.text = "Gardener \u00A33 per day"; } on (rollOut) { description.text = ""; }Symbol 840 Buttonon (release) { if (this._alpha == 100) { setProperty("_root.eventDisplay", _visible , true); _root.eventActive = true; _root.evVal = 3; _root.evCost = 2; _root.evName = "Basketball Competition"; _root.evStart = _root.day; } }Symbol 843 Buttonon (release) { if (this._alpha == 100) { setProperty("_root.eventDisplay", _visible , true); _root.eventActive = true; _root.evVal = 5; _root.evCost = 10; _root.evName = "BBQ Party"; _root.evStart = _root.day; } }Symbol 846 Buttonon (release) { if (this._alpha == 100) { setProperty("_root.eventDisplay", _visible , true); _root.eventActive = true; _root.evVal = 3; _root.evCost = 2; _root.evName = "Football Competition"; _root.evStart = _root.day; } }Symbol 849 Buttonon (release) { if (this._alpha == 100) { setProperty("_root.eventDisplay", _visible , true); _root.eventActive = true; _root.evVal = 5; _root.evCost = 2; _root.evName = "Pool Party"; _root.evStart = _root.day; } }Symbol 852 Buttonon (release) { if (this._alpha == 100) { setProperty("_root.eventDisplay", _visible , true); _root.eventActive = true; _root.evVal = 3; _root.evCost = 2; _root.evName = "Trampoline Competition"; _root.evStart = _root.day; } }Symbol 856 MovieClip Frame 1stop(); category.text = "Club Set-Up";Symbol 856 MovieClip Frame 2category = "Furniture";Symbol 856 MovieClip Frame 3category = "Wall/Floor Covering";Symbol 856 MovieClip Frame 5category = "Special Items";Symbol 856 MovieClip Frame 8stop(); category.text = "Staff";Symbol 856 MovieClip Frame 9stop(); category.text = "Staff";Instance of Symbol 842 MovieClip in Symbol 856 MovieClip Frame 9onClipEvent (enterFrame) { if (_root.room2.balls._currentframe == 1) { setProperty(this, _alpha , "50"); } else if (_root.eventActive == true) { setProperty(this, _alpha , "50"); } }Instance of Symbol 845 MovieClip in Symbol 856 MovieClip Frame 9onClipEvent (enterFrame) { if (_root.room2.barbeque._currentframe == 1) { setProperty(this, _alpha , "50"); } else if (_root.eventActive == true) { setProperty(this, _alpha , "50"); } }Instance of Symbol 848 MovieClip in Symbol 856 MovieClip Frame 9onClipEvent (enterFrame) { if (_root.room2.balls._currentframe == 1) { setProperty(this, _alpha , "50"); } else if (_root.eventActive == true) { setProperty(this, _alpha , "50"); } }Instance of Symbol 851 MovieClip in Symbol 856 MovieClip Frame 9onClipEvent (enterFrame) { if (_root.room2.pool._currentframe == 1) { setProperty(this, _alpha , "50"); } else if (_root.eventActive == true) { setProperty(this, _alpha , "50"); } }Instance of Symbol 854 MovieClip in Symbol 856 MovieClip Frame 9onClipEvent (enterFrame) { if (_root.room2.trampoline._currentframe == 1) { setProperty(this, _alpha , "50"); } else if (_root.eventActive == true) { setProperty(this, _alpha , "50"); } }Symbol 858 Buttonon (release) { gotoAndStop (11); }Symbol 859 Buttonon (release) { gotoAndStop (2); }Symbol 860 Buttonon (release) { gotoAndStop (4); }Symbol 861 Buttonon (release) { gotoAndStop (9); }Symbol 862 Buttonon (release) { gotoAndStop (10); }Symbol 863 Buttonon (release) { gotoAndStop (12); }Symbol 865 Buttonon (release) { if (_root.room1.chairs._currentframe != "2") { _root.addDecor(10, 5); _root.room1.chairs.gotoAndStop("2"); } } on (rollOver) { description.text = "Wooden Chair \u00A35"; } on (rollOut) { description.text = ""; }Symbol 866 Buttonon (release) { if (_root.room1.sofa._currentframe != "2") { _root.addDecor(20, 10); _root.room1.sofa.gotoAndStop("2"); } } on (rollOver) { description.text = "Wooden Sofa \u00A310"; } on (rollOut) { description.text = ""; }Symbol 868 Buttonon (release) { if (_root.room1.sofa._currentframe != "3") { _root.addDecor(20, 15); _root.room1.sofa.gotoAndStop("3"); } } on (rollOver) { description.text = "Designer Sofa \u00A315"; } on (rollOut) { description.text = ""; }Symbol 869 Buttonon (release) { if (_root.room1.sofa._currentframe != "4") { _root.addDecor(15, 7); _root.room1.sofa.gotoAndStop("4"); } } on (rollOver) { description.text = "Wooden Bench \u00A37"; } on (rollOut) { description.text = ""; }Symbol 870 Buttonon (release) { if (_root.room1.chairs._currentframe != "3") { _root.addDecor(10, 10); _root.room1.chairs.gotoAndStop("3"); } } on (rollOver) { description.text = "Designer Chair \u00A310"; } on (rollOut) { description.text = ""; }Symbol 871 Buttonon (release) { if (_root.room1.chairs._currentframe != "4") { _root.addDecor(10, 5); _root.room1.chairs.gotoAndStop("4"); } } on (rollOver) { description.text = "Stackable Chair \u00A35"; } on (rollOut) { description.text = ""; }Symbol 872 Buttonon (release) { if (_root.room1.chairs._currentframe != "5") { _root.addDecor(10, 5); _root.room1.chairs.gotoAndStop("5"); } } on (rollOver) { description.text = "Pod Chair \u00A35"; } on (rollOut) { description.text = ""; }Symbol 873 Buttonon (release) { if (_root.room1.table._currentframe != "2") { _root.addDecor(15, 10); _root.room1.table.gotoAndStop("2"); } } on (rollOver) { description.text = "Wooden Table \u00A310"; } on (rollOut) { description.text = ""; }Symbol 874 Buttonon (release) { if (_root.room1.table._currentframe != "3") { _root.addDecor(20, 15); _root.room1.table.gotoAndStop("3"); } } on (rollOver) { description.text = "Glass Table \u00A320"; } on (rollOut) { description.text = ""; }Symbol 875 Buttonon (release) { if (_root.room1.table._currentframe != "4") { _root.addDecor(15, 10); _root.room1.table.gotoAndStop("4"); } } on (rollOver) { description.text = "Wooden Table \u00A310"; } on (rollOut) { description.text = ""; }Symbol 876 Buttonon (release) { if (_root.room1.table._currentframe != "5") { _root.addDecor(15, 10); _root.room1.table.gotoAndStop("5"); } } on (rollOver) { description.text = "Red Table \u00A310"; } on (rollOut) { description.text = ""; }Symbol 878 Buttonon (release) { if (_root.room1.table._currentframe != "6") { _root.addDecor(20, 15); _root.room1.table.gotoAndStop("6"); } } on (rollOver) { description.text = "Black Long Table \u00A315"; } on (rollOut) { description.text = ""; }Symbol 880 Buttonon (release) { if (_root.room1.table._currentframe != "7") { _root.addDecor(20, 15); _root.room1.table.gotoAndStop("7"); } } on (rollOver) { description.text = "Pine Long Table \u00A315"; } on (rollOut) { description.text = ""; }Symbol 882 Buttonon (release) { if (_root.room1.table._currentframe != "8") { _root.addDecor(20, 15); _root.room1.table.gotoAndStop("8"); } } on (rollOver) { description.text = "Red Long Table \u00A315"; } on (rollOut) { description.text = ""; }Symbol 884 Buttonon (release) { if (_root.room1.table._currentframe != "9") { _root.addDecor(20, 15); _root.room1.table.gotoAndStop("9"); } } on (rollOver) { description.text = "Oak Long Table \u00A315"; } on (rollOut) { description.text = ""; }Symbol 886 Buttonon (release) { if (_root.room1.table._currentframe != "10") { _root.addDecor(20, 15); _root.room1.table.gotoAndStop("10"); } } on (rollOver) { description.text = "White Long Table \u00A315"; } on (rollOut) { description.text = ""; }Symbol 888 Buttonon (release) { if (_root.room1.table._currentframe != "11") { _root.addDecor(25, 20); _root.room1.table.gotoAndStop("11"); } } on (rollOver) { description.text = "Glass Long Table \u00A320"; } on (rollOut) { description.text = ""; }Symbol 889 Buttonon (release) { if (_root.room1.shelf._currentframe != "3") { _root.addDecor(5, 5); _root.room1.shelf.gotoAndStop("3"); } } on (rollOver) { description.text = "Wood Shelf \u00A35"; } on (rollOut) { description.text = ""; }Symbol 890 Buttonon (release) { if (_root.room1.shelf._currentframe != "2") { } _root.addDecor(5, 5); _root.room1.shelf.gotoAndStop("2"); } on (rollOver) { description.text = "White Shelf \u00A35"; } on (rollOut) { description.text = ""; }Symbol 891 Buttonon (release) { if (_root.room1.walls._currentframe != "11") { _root.addDecor(20, 25); _root.room1.walls.gotoAndStop("11"); } } on (rollOver) { description.text = "Orange Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 892 Buttonon (release) { if (_root.room1.walls._currentframe != "10") { _root.addDecor(20, 25); _root.room1.walls.gotoAndStop("10"); } } on (rollOver) { description.text = "Red Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 893 Buttonon (release) { if (_root.room1.walls._currentframe != "9") { _root.addDecor(20, 25); _root.room1.walls.gotoAndStop("9"); } } on (rollOver) { description.text = "Red Pattern Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 894 Buttonon (release) { if (_root.room1.walls._currentframe != "8") { _root.addDecor(20, 25); _root.room1.walls.gotoAndStop("8"); } } on (rollOver) { description.text = "Blue Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 895 Buttonon (release) { if (_root.room1.walls._currentframe != "7") { _root.addDecor(20, 25); _root.room1.walls.gotoAndStop("7"); } } on (rollOver) { description.text = "Purple Stripe Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 896 Buttonon (release) { if (_root.room1.walls._currentframe != "6") { _root.addDecor(20, 25); _root.room1.walls.gotoAndStop("6"); } } on (rollOver) { description.text = "Purple Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 897 Buttonon (release) { if (_root.room1.walls._currentframe != "5") { _root.addDecor(20, 25); _root.room1.walls.gotoAndStop("5"); } } on (rollOver) { description.text = "Purple Pattern Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 898 Buttonon (release) { if (_root.room1.walls._currentframe != "4") { _root.addDecor(20, 25); _root.room1.walls.gotoAndStop("4"); } } on (rollOver) { description.text = "Orange Stripe Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 899 Buttonon (release) { if (_root.room1.walls._currentframe != "3") { _root.addDecor(20, 25); _root.room1.walls.gotoAndStop("3"); } } on (rollOver) { description.text = "Orange Pattern Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 900 Buttonon (release) { if (_root.room1.walls._currentframe != "2") { _root.addDecor(20, 25); _root.room1.walls.gotoAndStop("2"); } } on (rollOver) { description.text = "Blue Stripe Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 901 Buttonon (release) { if (_root.room1.walls._currentframe != "15") { _root.addDecor(20, 25); _root.room1.walls.gotoAndStop("15"); } } on (rollOver) { description.text = "B&W Pattern Wallpaper \u00A325"; } on (rollOut) { description.text = ""; }Symbol 902 Buttonon (release) { if (_root.room1.walls._currentframe != "14") { _root.addDecor(30, 40); _root.room1.walls.gotoAndStop("14"); } } on (rollOver) { description.text = "B&W Tile \u00A340"; } on (rollOut) { description.text = ""; }Symbol 903 Buttonon (release) { if (_root.room1.walls._currentframe != "12") { _root.addDecor(30, 40); _root.room1.walls.gotoAndStop("12"); } } on (rollOver) { description.text = "White Tile \u00A340"; } on (rollOut) { description.text = ""; }Symbol 904 Buttonon (release) { if (_root.room1.walls._currentframe != "13") { _root.addDecor(30, 40); _root.room1.walls.gotoAndStop("13"); } } on (rollOver) { description.text = "Brick \u00A340"; } on (rollOut) { description.text = ""; }Symbol 905 Buttonon (release) { if (_root.room1.floor._currentframe != "2") { _root.addDecor(25, 20); _root.room1.floor.gotoAndStop("2"); } } on (rollOver) { description.text = "Wood Floor \u00A320"; } on (rollOut) { description.text = ""; }Symbol 906 Buttonon (release) { if (_root.room1.floor._currentframe != "3") { _root.addDecor(15, 10); _root.room1.floor.gotoAndStop("3"); } } on (rollOver) { description.text = "Laminate Floor \u00A310"; } on (rollOut) { description.text = ""; }Symbol 907 Buttonon (release) { if (_root.room1.floor._currentframe != "4") { _root.addDecor(30, 40); _root.room1.floor.gotoAndStop("4"); } } on (rollOver) { description.text = "White Floor \u00A340"; } on (rollOut) { description.text = ""; }Symbol 908 Buttonon (release) { if (_root.room1.floor._currentframe != "5") { _root.addDecor(30, 40); _root.room1.floor.gotoAndStop("5"); } } on (rollOver) { description.text = "Synthetic Grass \u00A340"; } on (rollOut) { description.text = ""; }Symbol 909 Buttonon (release) { if (_root.room1.floor._currentframe != "6") { _root.addDecor(17, 20); _root.room1.floor.gotoAndStop("6"); } } on (rollOver) { description.text = "Orange Carpet \u00A320"; } on (rollOut) { description.text = ""; }Symbol 910 Buttonon (release) { if (_root.room1.floor._currentframe != "7") { _root.addDecor(30, 40); _root.room1.floor.gotoAndStop("7"); } } on (rollOver) { description.text = "White Tile \u00A340"; } on (rollOut) { description.text = ""; }Symbol 911 Buttonon (release) { if (_root.room1.floor._currentframe != "8") { _root.addDecor(17, 20); _root.room1.floor.gotoAndStop("8"); } } on (rollOver) { description.text = "Red Carpet \u00A320"; } on (rollOut) { description.text = ""; }Symbol 912 Buttonon (release) { if (_root.room1.floor._currentframe != "9") { _root.addDecor(17, 20); _root.room1.floor.gotoAndStop("9"); } } on (rollOver) { description.text = "Purple Carpet \u00A320"; } on (rollOut) { description.text = ""; }Symbol 913 Buttonon (release) { if (_root.room1.floor._currentframe != "13") { _root.addDecor(17, 20); _root.room1.floor.gotoAndStop("13"); } } on (rollOver) { description.text = "Blue Carpet \u00A320"; } on (rollOut) { description.text = ""; }Symbol 914 Buttonon (release) { if (_root.room1.floor._currentframe != "10") { _root.addDecor(30, 40); _root.room1.floor.gotoAndStop("10"); } } on (rollOver) { description.text = "Orange Tile \u00A340"; } on (rollOut) { description.text = ""; }Symbol 915 Buttonon (release) { if (_root.room1.floor._currentframe != "15") { _root.addDecor(20, 60); _root.room1.floor.gotoAndStop("15"); } } on (rollOver) { description.text = "Crazy Paving \u00A360"; } on (rollOut) { description.text = ""; }Symbol 916 Buttonon (release) { if (_root.room1.floor._currentframe != "11") { _root.addDecor(30, 40); _root.room1.floor.gotoAndStop("11"); } } on (rollOver) { description.text = "B&W Tile \u00A340"; } on (rollOut) { description.text = ""; }Symbol 917 Buttonon (release) { if (_root.room1.floor._currentframe != "12") { _root.addDecor(30, 40); _root.room1.floor.gotoAndStop("12"); } } on (rollOver) { description.text = "Blue Tile \u00A340"; } on (rollOut) { description.text = ""; }Symbol 918 Buttonon (release) { if (_root.room1.rug._currentframe != "2") { _root.addDecor(15, 10); _root.room1.rug.gotoAndStop("2"); } } on (rollOver) { description.text = "Orange Rug \u00A310"; } on (rollOut) { description.text = ""; }Symbol 919 Buttonon (release) { if (_root.room1.rug._currentframe != "3") { _root.addDecor(20, 25); _root.room1.rug.gotoAndStop("3"); } } on (rollOver) { description.text = "Zebra Rug \u00A325"; } on (rollOut) { description.text = ""; }Symbol 920 Buttonon (release) { if (_root.room1.rug._currentframe != "4") { _root.addDecor(20, 25); _root.room1.rug.gotoAndStop("4"); } } on (rollOver) { description.text = "Deep Pile Rug \u00A325"; } on (rollOut) { description.text = ""; }Symbol 921 Buttonon (release) { if (_root.room1.rug._currentframe != "5") { _root.addDecor(20, 25); _root.room1.rug.gotoAndStop("5"); } } on (rollOver) { description.text = "Leopard Rug \u00A325"; } on (rollOut) { description.text = ""; }Symbol 922 Buttonon (release) { if (_root.room1.rug._currentframe != "6") { _root.addDecor(15, 10); _root.room1.rug.gotoAndStop("6"); } } on (rollOver) { description.text = "Purple Rug \u00A310"; } on (rollOut) { description.text = ""; }Symbol 924 Buttonon (release) { if (_root.room1.tv._currentframe != "2") { _root.addDecor(50, 60); _root.room1.tv.gotoAndStop("2"); } } on (rollOver) { description.text = "40 inch Plasma \u00A360"; } on (rollOut) { description.text = ""; }Symbol 926 Buttonon (release) { if (_root.room1.tv._currentframe != "3") { _root.addDecor(20, 40); _root.room1.tv.gotoAndStop("3"); } } on (rollOver) { description.text = "28 inch TV \u00A340"; } on (rollOut) { description.text = ""; }Symbol 927 Buttonon (release) { if (_root.room1.stereo._currentframe != "2") { _root.addDecor(25, 20); _root.room1.stereo.gotoAndStop("2"); } } on (rollOver) { description.text = "Micro Stereo \u00A320"; } on (rollOut) { description.text = ""; }Symbol 928 Buttonon (release) { if (_root.room1.stereo._currentframe != "3") { _root.addDecor(30, 25); _root.room1.stereo.gotoAndStop("3"); _root.complaintAdd(10); _root.messageWindow.textColor = 16711680 /* 0xFF0000 */; _root.messages = _root.complaintList["2"]; } } on (rollOver) { description.text = "Home Stereo \u00A325"; } on (rollOut) { description.text = ""; }Symbol 929 Buttonon (release) { if (_root.room1.stereo._currentframe != "4") { _root.addDecor(40, 30); _root.room1.stereo.gotoAndStop("4"); _root.complaintAdd(20); _root.messageWindow.textColor = 16711680 /* 0xFF0000 */; _root.messages = _root.complaintList["3"]; } } on (rollOver) { description.text = "Super Stereo \u00A330"; } on (rollOut) { description.text = ""; }Symbol 930 Buttonon (release) { if (_root.room1.specialItems1._currentframe != "2") { _root.addSpItem(10, 5); _root.room1.specialItems1.gotoAndStop("2"); } } on (rollOver) { description.text = "Chess Board \u00A35"; } on (rollOut) { description.text = ""; }Symbol 931 Buttonon (release) { if (_root.room1.specialItems1._currentframe != "3") { _root.addSpItem(10, 5); _root.room1.specialItems1.gotoAndStop("3"); } } on (rollOver) { description.text = "Board Game 1 \u00A35"; } on (rollOut) { description.text = ""; }Symbol 932 Buttonon (release) { if (_root.room1.specialItems1._currentframe != "4") { _root.addSpItem(10, 5); _root.room1.specialItems1.gotoAndStop("4"); } } on (rollOver) { description.text = "Board Game 2 \u00A35"; } on (rollOut) { description.text = ""; }Symbol 933 Buttonon (release) { if (_root.room1.specialItems1._currentframe != "5") { _root.addSpItem(10, 5); _root.room1.specialItems1.gotoAndStop("5"); } } on (rollOver) { description.text = "Board Game 3 \u00A35"; } on (rollOut) { description.text = ""; }Symbol 934 Buttonon (release) { if (_root.room1.staff1.staffCleaner._visible != true) { _root.addStaff(10, 2); setProperty(_root.room1.staff1.staffCleaner, _visible , true); _root.complaintAdd(-20); _root.item.start(); } } on (rollOver) { description.text = "Cleaner \u00A32 per day"; } on (rollOut) { description.text = ""; }Symbol 935 Buttonon (release) { if (_root.room1.staff1.staffClubManager._visible != true) { _root.addStaff(20, 5); setProperty(_root.room1.staff1.staffClubManager, _visible , true); _root.complaintAdd(-20); _root.item.start(); } } on (rollOver) { description.text = "Club Manager \u00A35 per day"; } on (rollOut) { description.text = ""; }Symbol 936 Buttonon (release) { if (this._alpha == 100) { setProperty("_root.eventDisplay", _visible , true); _root.eventActive = true; _root.evVal = 5; _root.evCost = 5; _root.evName = "Game Championship"; _root.evStart = _root.day; } }Symbol 939 Buttonon (release) { if (this._alpha == 100) { setProperty("_root.eventDisplay", _visible , true); _root.eventActive = true; _root.evVal = 6; _root.evCost = 4; _root.evName = "Film Festival"; _root.evStart = _root.day; } }Symbol 942 MovieClip Frame 1stop(); category.text = "Club Set-Up";Symbol 942 MovieClip Frame 2category = "Furniture";Symbol 942 MovieClip Frame 4category = "Wall/Floor Covering";Symbol 942 MovieClip Frame 9category = "Entertainment";Symbol 942 MovieClip Frame 10category = "Special Items";Symbol 942 MovieClip Frame 11stop(); category.text = "Staff";Instance of Symbol 938 MovieClip in Symbol 942 MovieClip Frame 12onClipEvent (enterFrame) { if (_root.room1.specialItems1._currentframe == 1) { setProperty(this, _alpha , "50"); } else if (_root.eventActive == true) { setProperty(this, _alpha , "50"); } }Instance of Symbol 941 MovieClip in Symbol 942 MovieClip Frame 12onClipEvent (enterFrame) { if (_root.room1.tv._currentframe == 1) { setProperty(this, _alpha , "50"); } else if (_root.eventActive == true) { setProperty(this, _alpha , "50"); } }Symbol 951 MovieClip Frame 1stop();Symbol 954 Buttonon (release) { _root.windowOpen = true; test = "window" + _root.startZone; setProperty(test, _visible , true); tellTarget (test) { gotoAndStop ("setup"); }; }Symbol 956 Buttonon (release) { _root.windowOpen = true; test = "window" + _root.startZone; setProperty(test, _visible , true); tellTarget (test) { gotoAndStop ("staff"); }; }Symbol 964 Buttonon (press) { _root.displayZone(); _root.displaySpecial(); if (_root.startZone == 1) { setProperty("_root.room1", _visible , true); setProperty("_root.room2", _visible , false); setProperty("_root.room3", _visible , false); setProperty("_root.room4", _visible , false); if (_root.windowOpen == true) { setProperty("_root.window1", _visible , true); setProperty("_root.window1", _x , _root.window4._x); setProperty("_root.window1", _y , _root.window4._y); } setProperty("_root.window4", _visible , false); } else if (_root.startZone == 2) { setProperty("_root.room1", _visible , false); setProperty("_root.room2", _visible , true); setProperty("_root.room3", _visible , false); setProperty("_root.room4", _visible , false); if (_root.windowOpen == true) { setProperty("_root.window2", _visible , true); setProperty("_root.window2", _x , _root.window1._x); setProperty("_root.window2", _y , _root.window1._y); } setProperty("_root.window1", _visible , false); } else if (_root.startZone == 3) { setProperty("_root.room1", _visible , false); setProperty("_root.room2", _visible , false); setProperty("_root.room3", _visible , true); setProperty("_root.room4", _visible , false); if (_root.windowOpen == true) { setProperty("_root.window3", _visible , true); setProperty("_root.window3", _x , _root.window2._x); setProperty("_root.window3", _y , _root.window2._y); } setProperty("_root.window2", _visible , false); } else if (_root.startZone == 4) { setProperty("_root.room1", _visible , false); setProperty("_root.room2", _visible , false); setProperty("_root.room3", _visible , false); setProperty("_root.room4", _visible , true); if (_root.windowOpen == true) { setProperty("_root.window4", _visible , true); setProperty("_root.window4", _x , _root.window3._x); setProperty("_root.window4", _y , _root.window3._y); } setProperty("_root.window3", _visible , false); } }Symbol 1005 MovieClip Frame 1stop();Symbol 1005 MovieClip Frame 3stop();Symbol 1008 Buttonon (release) { gotoAndStop (7); }Symbol 1011 Buttonon (release) { gotoAndStop (3); }Symbol 1015 Buttonon (release) { gotoAndStop (3); }Symbol 1017 Buttonon (release) { _machine = 1; _table = "bykerForm"; uscore = uscore + ""; name = _root.encrypt(uname); score = _root.encrypt(uscore); email = _root.encrypt("na"); trace("name = " + name); trace("score = " + score); loadVariables ("http://www.bbc.co.uk/apps/ifl/cbbc/highscores", "_root.results", "GET"); _root.form.gotoAndStop("done"); _root.results.gotoAndStop("done"); _root.gotoAndStop("done"); }Symbol 1018 MovieClip Frame 1stop(); uscore = _root.finalScore;Symbol 1018 MovieClip Frame 3stop();
Library Items
Symbol 1 Sound [win] | ||
Symbol 2 Sound [staff] | ||
Symbol 3 Sound [remove] | ||
Symbol 4 Sound [lose] | ||
Symbol 5 Sound [kidAdd] | ||
Symbol 6 Sound [item] | ||
Symbol 7 Sound [kid1] | ||
Symbol 8 Sound [coins] | ||
Symbol 9 Bitmap | Used by:10 | |
Symbol 10 Graphic | Uses:9 | Used by:Timeline |
Symbol 11 Bitmap | Used by:12 962 | |
Symbol 12 Graphic | Uses:11 | Used by:24 |
Symbol 13 Font | Used by:14 28 34 39 40 42 622 623 624 625 630 633 641 642 652 721 724 727 729 731 737 790 796 841 844 847 850 853 855 857 937 940 967 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1004 | |
Symbol 14 EditableText | Uses:13 | Used by:24 |
Symbol 15 Graphic | Used by:24 | |
Symbol 16 Bitmap | Used by:17 | |
Symbol 17 Graphic | Uses:16 | Used by:24 |
Symbol 18 Bitmap | Used by:19 | |
Symbol 19 Graphic | Uses:18 | Used by:24 |
Symbol 20 Bitmap | Used by:21 | |
Symbol 21 Graphic | Uses:20 | Used by:24 |
Symbol 22 Bitmap | Used by:23 | |
Symbol 23 Graphic | Uses:22 | Used by:24 |
Symbol 24 MovieClip | Uses:12 14 15 17 19 21 23 | Used by:25 |
Symbol 25 MovieClip | Uses:24 | Used by:Timeline |
Symbol 26 Bitmap | Used by:27 | |
Symbol 27 Graphic | Uses:26 | Used by:Timeline |
Symbol 28 Text | Uses:13 | Used by:Timeline |
Symbol 29 Graphic | Used by:30 31 1008 1011 1015 1017 | |
Symbol 30 Button | Uses:29 | Used by:Timeline |
Symbol 31 Button | Uses:29 | Used by:Timeline |
Symbol 32 Bitmap | Used by:33 | |
Symbol 33 Graphic | Uses:32 | Used by:43 |
Symbol 34 Text | Uses:13 | Used by:43 730 789 856 942 |
Symbol 35 Graphic | Used by:36 | |
Symbol 36 MovieClip | Uses:35 | Used by:38 41 964 |
Symbol 37 Graphic | Used by:38 41 964 | |
Symbol 38 Button | Uses:36 37 | Used by:43 730 789 856 942 |
Symbol 39 Text | Uses:13 | Used by:43 |
Symbol 40 Text | Uses:13 | Used by:43 |
Symbol 41 Button | Uses:36 37 | Used by:43 730 789 856 942 |
Symbol 42 Text | Uses:13 | Used by:43 |
Symbol 43 MovieClip | Uses:33 34 38 39 40 41 42 | Used by:Timeline |
Symbol 44 Bitmap | Used by:45 | |
Symbol 45 Graphic | Uses:44 | Used by:Timeline |
Symbol 46 Bitmap | Used by:47 | |
Symbol 47 Graphic | Uses:46 | Used by:48 681 761 816 905 |
Symbol 48 Button | Uses:47 | Used by:85 |
Symbol 49 Bitmap | Used by:50 | |
Symbol 50 Graphic | Uses:49 | Used by:51 682 762 817 906 |
Symbol 51 Button | Uses:50 | Used by:85 |
Symbol 52 Bitmap | Used by:53 | |
Symbol 53 Graphic | Uses:52 | Used by:54 683 763 818 907 |
Symbol 54 Button | Uses:53 | Used by:85 |
Symbol 55 Bitmap | Used by:56 | |
Symbol 56 Graphic | Uses:55 | Used by:57 684 822 908 |
Symbol 57 Button | Uses:56 | Used by:85 |
Symbol 58 Bitmap | Used by:59 | |
Symbol 59 Graphic | Uses:58 | Used by:60 685 764 909 |
Symbol 60 Button | Uses:59 | Used by:85 |
Symbol 61 Bitmap | Used by:62 | |
Symbol 62 Graphic | Uses:61 | Used by:63 686 765 819 910 |
Symbol 63 Button | Uses:62 | Used by:85 |
Symbol 64 Bitmap | Used by:65 | |
Symbol 65 Graphic | Uses:64 | Used by:66 687 766 911 |
Symbol 66 Button | Uses:65 | Used by:85 |
Symbol 67 Bitmap | Used by:68 | |
Symbol 68 Graphic | Uses:67 | Used by:69 688 767 912 |
Symbol 69 Button | Uses:68 | Used by:85 |
Symbol 70 Bitmap | Used by:71 | |
Symbol 71 Graphic | Uses:70 | Used by:72 690 769 914 |
Symbol 72 Button | Uses:71 | Used by:85 |
Symbol 73 Bitmap | Used by:74 | |
Symbol 74 Graphic | Uses:73 | Used by:75 692 770 820 916 |
Symbol 75 Button | Uses:74 | Used by:85 |
Symbol 76 Bitmap | Used by:77 | |
Symbol 77 Graphic | Uses:76 | Used by:78 693 771 821 917 |
Symbol 78 Button | Uses:77 | Used by:85 |
Symbol 79 Bitmap | Used by:80 | |
Symbol 80 Graphic | Uses:79 | Used by:81 689 768 913 |
Symbol 81 Button | Uses:80 | Used by:85 |
Symbol 82 Bitmap | Used by:83 | |
Symbol 83 Graphic | Uses:82 | Used by:84 691 823 915 |
Symbol 84 Button | Uses:83 | Used by:85 |
Symbol 85 MovieClip | Uses:48 51 54 57 60 63 66 69 72 75 78 81 84 | Used by:257 344 482 620 |
Symbol 86 Bitmap | Used by:87 368 671 | |
Symbol 87 Graphic | Uses:86 | Used by:88 |
Symbol 88 Button | Uses:87 | Used by:128 |
Symbol 89 Bitmap | Used by:90 370 669 | |
Symbol 90 Graphic | Uses:89 | Used by:91 |
Symbol 91 Button | Uses:90 | Used by:128 |
Symbol 92 Bitmap | Used by:93 372 667 | |
Symbol 93 Graphic | Uses:92 | Used by:94 |
Symbol 94 Button | Uses:93 | Used by:128 |
Symbol 95 Bitmap | Used by:96 374 665 | |
Symbol 96 Graphic | Uses:95 | Used by:97 |
Symbol 97 Button | Uses:96 | Used by:128 |
Symbol 98 Bitmap | Used by:99 376 663 | |
Symbol 99 Graphic | Uses:98 | Used by:100 |
Symbol 100 Button | Uses:99 | Used by:128 |
Symbol 101 Bitmap | Used by:102 378 661 | |
Symbol 102 Graphic | Uses:101 | Used by:103 |
Symbol 103 Button | Uses:102 | Used by:128 |
Symbol 104 Bitmap | Used by:105 380 659 | |
Symbol 105 Graphic | Uses:104 | Used by:106 |
Symbol 106 Button | Uses:105 | Used by:128 |
Symbol 107 Bitmap | Used by:108 382 657 | |
Symbol 108 Graphic | Uses:107 | Used by:109 |
Symbol 109 Button | Uses:108 | Used by:128 |
Symbol 110 Bitmap | Used by:111 384 655 | |
Symbol 111 Graphic | Uses:110 | Used by:112 |
Symbol 112 Button | Uses:111 | Used by:128 |
Symbol 113 Bitmap | Used by:114 386 653 | |
Symbol 114 Graphic | Uses:113 | Used by:115 |
Symbol 115 Button | Uses:114 | Used by:128 |
Symbol 116 Bitmap | Used by:117 388 677 | |
Symbol 117 Graphic | Uses:116 | Used by:118 |
Symbol 118 Button | Uses:117 | Used by:128 |
Symbol 119 Bitmap | Used by:120 390 679 | |
Symbol 120 Graphic | Uses:119 | Used by:121 |
Symbol 121 Button | Uses:120 | Used by:128 |
Symbol 122 Bitmap | Used by:123 392 675 | |
Symbol 123 Graphic | Uses:122 | Used by:124 |
Symbol 124 Button | Uses:123 | Used by:128 |
Symbol 125 Bitmap | Used by:126 394 673 | |
Symbol 126 Graphic | Uses:125 | Used by:127 |
Symbol 127 Button | Uses:126 | Used by:128 |
Symbol 128 MovieClip | Uses:88 91 94 97 100 103 106 109 112 115 118 121 124 127 | Used by:257 344 620 |
Symbol 129 Bitmap | Used by:130 | |
Symbol 130 Graphic | Uses:129 | Used by:131 |
Symbol 131 Button | Uses:130 | Used by:141 |
Symbol 132 Bitmap | Used by:133 | |
Symbol 133 Graphic | Uses:132 | Used by:134 |
Symbol 134 Button | Uses:133 | Used by:141 |
Symbol 135 Bitmap | Used by:136 | |
Symbol 136 Graphic | Uses:135 | Used by:137 |
Symbol 137 Button | Uses:136 | Used by:141 |
Symbol 138 Bitmap | Used by:139 | |
Symbol 139 Graphic | Uses:138 | Used by:140 |
Symbol 140 Button | Uses:139 | Used by:141 |
Symbol 141 MovieClip | Uses:131 134 137 140 | Used by:257 |
Symbol 142 Bitmap | Used by:143 | |
Symbol 143 Graphic | Uses:142 | Used by:144 |
Symbol 144 Button | Uses:143 | Used by:145 |
Symbol 145 MovieClip | Uses:144 | Used by:257 |
Symbol 146 Bitmap | Used by:147 | |
Symbol 147 Graphic | Uses:146 | Used by:257 |
Symbol 148 Bitmap | Used by:149 703 | |
Symbol 149 Graphic | Uses:148 | Used by:150 |
Symbol 150 Button | Uses:149 | Used by:151 |
Symbol 151 MovieClip | Uses:150 | Used by:257 |
Symbol 152 Bitmap | Used by:153 | |
Symbol 153 Graphic | Uses:152 | Used by:257 |
Symbol 154 Bitmap | Used by:155 | |
Symbol 155 Graphic | Uses:154 | Used by:156 |
Symbol 156 Button | Uses:155 | Used by:157 |
Symbol 157 MovieClip | Uses:156 | Used by:257 |
Symbol 158 Bitmap | Used by:159 | |
Symbol 159 Graphic | Uses:158 | Used by:160 716 783 837 934 |
Symbol 160 MovieClip | Uses:159 | Used by:178 324 460 582 |
Symbol 161 Bitmap | Used by:162 | |
Symbol 162 Graphic | Uses:161 | Used by:165 |
Symbol 163 Bitmap | Used by:164 | |
Symbol 164 Graphic | Uses:163 | Used by:165 |
Symbol 165 MovieClip | Uses:162 164 | Used by:166 |
Symbol 166 MovieClip | Uses:165 | Used by:178 324 460 582 |
Symbol 167 Bitmap | Used by:168 | |
Symbol 168 Graphic | Uses:167 | Used by:169 719 |
Symbol 169 MovieClip | Uses:168 | Used by:178 |
Symbol 170 Bitmap | Used by:171 | |
Symbol 171 Graphic | Uses:170 | Used by:174 718 |
Symbol 172 Bitmap | Used by:173 | |
Symbol 173 Graphic | Uses:172 | Used by:174 |
Symbol 174 MovieClip | Uses:171 173 | Used by:178 |
Symbol 175 Bitmap | Used by:176 | |
Symbol 176 Graphic | Uses:175 | Used by:177 717 |
Symbol 177 MovieClip | Uses:176 | Used by:178 |
Symbol 178 MovieClip | Uses:160 166 169 174 177 | Used by:257 |
Symbol 179 Bitmap | Used by:180 | |
Symbol 180 Graphic | Uses:179 | Used by:181 708 |
Symbol 181 Button | Uses:180 | Used by:182 |
Symbol 182 MovieClip | Uses:181 | Used by:257 |
Symbol 183 Bitmap | Used by:184 572 | |
Symbol 184 Graphic | Uses:183 | Used by:185 305 |
Symbol 185 Button | Uses:184 | Used by:192 |
Symbol 186 Bitmap | Used by:187 574 | |
Symbol 187 Graphic | Uses:186 | Used by:188 306 |
Symbol 188 Button | Uses:187 | Used by:192 |
Symbol 189 Bitmap | Used by:190 576 | |
Symbol 190 Graphic | Uses:189 | Used by:191 307 |
Symbol 191 Button | Uses:190 | Used by:192 |
Symbol 192 MovieClip | Uses:185 188 191 | Used by:257 |
Symbol 193 Bitmap | Used by:194 | |
Symbol 194 Graphic | Uses:193 | Used by:195 |
Symbol 195 Button | Uses:194 | Used by:196 |
Symbol 196 MovieClip | Uses:195 | Used by:257 |
Symbol 197 Bitmap | Used by:198 | |
Symbol 198 Graphic | Uses:197 | Used by:199 |
Symbol 199 Button | Uses:198 | Used by:200 |
Symbol 200 MovieClip | Uses:199 | Used by:257 |
Symbol 201 Bitmap | Used by:202 | |
Symbol 202 Graphic | Uses:201 | Used by:203 715 |
Symbol 203 Button | Uses:202 | Used by:204 |
Symbol 204 MovieClip | Uses:203 | Used by:257 |
Symbol 205 Bitmap | Used by:206 | |
Symbol 206 Graphic | Uses:205 | Used by:207 |
Symbol 207 Button | Uses:206 | Used by:208 |
Symbol 208 MovieClip | Uses:207 | Used by:257 |
Symbol 209 Bitmap | Used by:210 213 | |
Symbol 210 Graphic | Uses:209 | Used by:215 608 |
Symbol 211 Bitmap | Used by:212 214 | |
Symbol 212 Graphic | Uses:211 | Used by:215 |
Symbol 213 Graphic | Uses:209 | Used by:215 |
Symbol 214 Graphic | Uses:211 | Used by:215 |
Symbol 215 MovieClip | Uses:210 212 213 214 | Used by:256 343 |
Symbol 216 Bitmap | Used by:217 609 | |
Symbol 217 Graphic | Uses:216 | Used by:218 |
Symbol 218 MovieClip | Uses:217 | Used by:256 |
Symbol 219 Bitmap | Used by:220 | |
Symbol 220 Graphic | Uses:219 | Used by:223 |
Symbol 221 Bitmap | Used by:222 | |
Symbol 222 Graphic | Uses:221 | Used by:223 |
Symbol 223 MovieClip | Uses:220 222 | Used by:224 |
Symbol 224 MovieClip | Uses:223 | Used by:256 |
Symbol 225 Bitmap | Used by:226 227 | |
Symbol 226 Graphic | Uses:225 | Used by:228 |
Symbol 227 Graphic | Uses:225 | Used by:228 |
Symbol 228 MovieClip | Uses:226 227 | Used by:256 331 474 619 |
Symbol 229 Bitmap | Used by:230 | |
Symbol 230 Graphic | Uses:229 | Used by:233 |
Symbol 231 Bitmap | Used by:232 | |
Symbol 232 Graphic | Uses:231 | Used by:233 |
Symbol 233 MovieClip | Uses:230 232 | Used by:234 |
Symbol 234 MovieClip | Uses:233 | Used by:256 |
Symbol 235 Bitmap | Used by:236 237 | |
Symbol 236 Graphic | Uses:235 | Used by:238 |
Symbol 237 Graphic | Uses:235 | Used by:238 |
Symbol 238 MovieClip | Uses:236 237 | Used by:256 335 481 619 |
Symbol 239 Bitmap | Used by:240 241 | |
Symbol 240 Graphic | Uses:239 | Used by:242 |
Symbol 241 Graphic | Uses:239 | Used by:242 |
Symbol 242 MovieClip | Uses:240 241 | Used by:256 481 619 |
Symbol 243 Bitmap | Used by:244 | |
Symbol 244 Graphic | Uses:243 | Used by:251 |
Symbol 245 Bitmap | Used by:246 | |
Symbol 246 Graphic | Uses:245 | Used by:251 |
Symbol 247 Bitmap | Used by:248 | |
Symbol 248 Graphic | Uses:247 | Used by:251 |
Symbol 249 Bitmap | Used by:250 | |
Symbol 250 Graphic | Uses:249 | Used by:251 |
Symbol 251 MovieClip | Uses:244 246 248 250 | Used by:252 |
Symbol 252 MovieClip | Uses:251 | Used by:256 |
Symbol 253 Bitmap | Used by:254 617 | |
Symbol 254 Graphic | Uses:253 | Used by:255 342 480 |
Symbol 255 MovieClip | Uses:254 | Used by:256 |
Symbol 256 MovieClip | Uses:215 218 224 228 234 238 242 252 255 | Used by:257 |
Symbol 257 MovieClip | Uses:85 128 141 145 147 151 153 157 178 182 192 196 200 204 208 256 | Used by:Timeline |
Symbol 258 Bitmap | Used by:260 | |
Symbol 259 Bitmap | Used by:260 | |
Symbol 260 Graphic | Uses:258 259 | Used by:261 |
Symbol 261 Button | Uses:260 | Used by:344 |
Symbol 262 Bitmap | Used by:264 | |
Symbol 263 Bitmap | Used by:264 | |
Symbol 264 Graphic | Uses:262 263 | Used by:265 266 588 589 |
Symbol 265 Button | Uses:264 | Used by:344 |
Symbol 266 Button | Uses:264 | Used by:344 |
Symbol 267 Bitmap | Used by:268 444 | |
Symbol 268 Graphic | Uses:267 | Used by:269 |
Symbol 269 Button | Uses:268 | Used by:279 |
Symbol 270 Bitmap | Used by:271 500 648 | |
Symbol 271 Graphic | Uses:270 | Used by:272 |
Symbol 272 Button | Uses:271 | Used by:279 |
Symbol 273 Bitmap | Used by:274 502 | |
Symbol 274 Graphic | Uses:273 | Used by:275 |
Symbol 275 Button | Uses:274 | Used by:279 |
Symbol 276 Bitmap | Used by:277 504 | |
Symbol 277 Graphic | Uses:276 | Used by:278 |
Symbol 278 Button | Uses:277 | Used by:279 |
Symbol 279 MovieClip | Uses:269 272 275 278 | Used by:344 |
Symbol 280 Bitmap | Used by:281 518 | |
Symbol 281 Graphic | Uses:280 | Used by:282 |
Symbol 282 Button | Uses:281 | Used by:293 |
Symbol 283 Bitmap | Used by:285 520 | |
Symbol 284 Bitmap | Used by:285 520 | |
Symbol 285 Graphic | Uses:283 284 | Used by:286 |
Symbol 286 Button | Uses:285 | Used by:293 |
Symbol 287 Bitmap | Used by:288 522 | |
Symbol 288 Graphic | Uses:287 | Used by:289 |
Symbol 289 Button | Uses:288 | Used by:293 |
Symbol 290 Bitmap | Used by:291 524 | |
Symbol 291 Graphic | Uses:290 | Used by:292 |
Symbol 292 Button | Uses:291 | Used by:293 |
Symbol 293 MovieClip | Uses:282 286 289 292 | Used by:344 |
Symbol 294 Bitmap | Used by:295 781 | |
Symbol 295 Graphic | Uses:294 | Used by:296 |
Symbol 296 Button | Uses:295 | Used by:297 |
Symbol 297 MovieClip | Uses:296 | Used by:344 |
Symbol 298 Graphic | Used by:299 | |
Symbol 299 Button | Uses:298 | Used by:304 |
Symbol 300 Graphic | Used by:301 | |
Symbol 301 Button | Uses:300 | Used by:304 |
Symbol 302 Graphic | Used by:303 | |
Symbol 303 Button | Uses:302 | Used by:304 |
Symbol 304 MovieClip | Uses:299 301 303 | Used by:344 |
Symbol 305 Button | Uses:184 | Used by:308 |
Symbol 306 Button | Uses:187 | Used by:308 |
Symbol 307 Button | Uses:190 | Used by:308 |
Symbol 308 MovieClip | Uses:305 306 307 | Used by:344 |
Symbol 309 Bitmap | Used by:310 | |
Symbol 310 Graphic | Uses:309 | Used by:311 784 |
Symbol 311 MovieClip | Uses:310 | Used by:324 |
Symbol 312 Bitmap | Used by:313 | |
Symbol 313 Graphic | Uses:312 | Used by:314 785 |
Symbol 314 MovieClip | Uses:313 | Used by:324 |
Symbol 315 Bitmap | Used by:316 | |
Symbol 316 Graphic | Uses:315 | Used by:317 786 |
Symbol 317 MovieClip | Uses:316 | Used by:324 |
Symbol 318 Bitmap | Used by:319 | |
Symbol 319 Graphic | Uses:318 | Used by:320 787 |
Symbol 320 MovieClip | Uses:319 | Used by:324 |
Symbol 321 Bitmap | Used by:322 | |
Symbol 322 Graphic | Uses:321 | Used by:323 788 |
Symbol 323 MovieClip | Uses:322 | Used by:324 |
Symbol 324 MovieClip | Uses:160 311 314 317 320 323 166 | Used by:344 |
Symbol 325 Bitmap | Used by:326 | |
Symbol 326 Graphic | Uses:325 | Used by:327 |
Symbol 327 MovieClip | Uses:326 | Used by:343 |
Symbol 328 Bitmap | Used by:329 | |
Symbol 329 Graphic | Uses:328 | Used by:330 |
Symbol 330 MovieClip | Uses:329 | Used by:343 |
Symbol 331 MovieClip | Uses:228 | Used by:343 |
Symbol 332 Bitmap | Used by:333 612 | |
Symbol 333 Graphic | Uses:332 | Used by:334 |
Symbol 334 MovieClip | Uses:333 | Used by:343 |
Symbol 335 MovieClip | Uses:238 | Used by:343 |
Symbol 336 Bitmap | Used by:337 | |
Symbol 337 Graphic | Uses:336 | Used by:338 |
Symbol 338 MovieClip | Uses:337 | Used by:343 |
Symbol 339 Bitmap | Used by:340 478 | |
Symbol 340 Graphic | Uses:339 | Used by:341 |
Symbol 341 MovieClip | Uses:340 | Used by:343 |
Symbol 342 MovieClip | Uses:254 | Used by:343 |
Symbol 343 MovieClip | Uses:215 327 330 331 334 335 338 341 342 | Used by:344 |
Symbol 344 MovieClip | Uses:128 261 85 265 266 279 293 297 304 308 324 343 | Used by:Timeline |
Symbol 345 Bitmap | Used by:346 | |
Symbol 346 Graphic | Uses:345 | Used by:347 829 |
Symbol 347 Button | Uses:346 | Used by:351 |
Symbol 348 Bitmap | Used by:349 | |
Symbol 349 Graphic | Uses:348 | Used by:350 828 |
Symbol 350 Button | Uses:349 | Used by:351 |
Symbol 351 MovieClip | Uses:347 350 | Used by:482 |
Symbol 352 Bitmap | Used by:353 | |
Symbol 353 Graphic | Uses:352 | Used by:356 830 |
Symbol 354 Bitmap | Used by:355 | |
Symbol 355 Graphic | Uses:354 | Used by:356 830 |
Symbol 356 Button | Uses:353 355 | Used by:360 |
Symbol 357 Bitmap | Used by:358 | |
Symbol 358 Graphic | Uses:357 | Used by:359 831 |
Symbol 359 Button | Uses:358 | Used by:360 |
Symbol 360 MovieClip | Uses:356 359 | Used by:482 |
Symbol 361 Graphic | Used by:482 | |
Symbol 362 Bitmap | Used by:363 | |
Symbol 363 Graphic | Uses:362 | Used by:482 |
Symbol 364 Bitmap | Used by:365 | |
Symbol 365 Graphic | Uses:364 | Used by:482 |
Symbol 366 Bitmap | Used by:367 | |
Symbol 367 Graphic | Uses:366 | Used by:482 |
Symbol 368 Graphic | Uses:86 | Used by:369 |
Symbol 369 Button | Uses:368 | Used by:396 |
Symbol 370 Graphic | Uses:89 | Used by:371 |
Symbol 371 Button | Uses:370 | Used by:396 |
Symbol 372 Graphic | Uses:92 | Used by:373 |
Symbol 373 Button | Uses:372 | Used by:396 |
Symbol 374 Graphic | Uses:95 | Used by:375 |
Symbol 375 Button | Uses:374 | Used by:396 |
Symbol 376 Graphic | Uses:98 | Used by:377 |
Symbol 377 Button | Uses:376 | Used by:396 |
Symbol 378 Graphic | Uses:101 | Used by:379 |
Symbol 379 Button | Uses:378 | Used by:396 |
Symbol 380 Graphic | Uses:104 | Used by:381 |
Symbol 381 Button | Uses:380 | Used by:396 |
Symbol 382 Graphic | Uses:107 | Used by:383 |
Symbol 383 Button | Uses:382 | Used by:396 |
Symbol 384 Graphic | Uses:110 | Used by:385 |
Symbol 385 Button | Uses:384 | Used by:396 |
Symbol 386 Graphic | Uses:113 | Used by:387 |
Symbol 387 Button | Uses:386 | Used by:396 |
Symbol 388 Graphic | Uses:116 | Used by:389 |
Symbol 389 Button | Uses:388 | Used by:396 |
Symbol 390 Graphic | Uses:119 | Used by:391 |
Symbol 391 Button | Uses:390 | Used by:396 |
Symbol 392 Graphic | Uses:122 | Used by:393 |
Symbol 393 Button | Uses:392 | Used by:396 |
Symbol 394 Graphic | Uses:125 | Used by:395 |
Symbol 395 Button | Uses:394 | Used by:396 |
Symbol 396 MovieClip | Uses:369 371 373 375 377 379 381 383 385 387 389 391 393 395 | Used by:482 |
Symbol 397 Bitmap | Used by:398 | |
Symbol 398 Graphic | Uses:397 | Used by:482 |
Symbol 399 Bitmap | Used by:400 | |
Symbol 400 Graphic | Uses:399 | Used by:482 |
Symbol 401 Bitmap | Used by:402 | |
Symbol 402 Graphic | Uses:401 | Used by:482 |
Symbol 403 Bitmap | Used by:404 | |
Symbol 404 Graphic | Uses:403 | Used by:482 |
Symbol 405 Bitmap | Used by:406 | |
Symbol 406 Graphic | Uses:405 | Used by:482 |
Symbol 407 Bitmap | Used by:408 | |
Symbol 408 Graphic | Uses:407 | Used by:409 832 |
Symbol 409 Button | Uses:408 | Used by:410 |
Symbol 410 MovieClip | Uses:409 | Used by:482 |
Symbol 411 Bitmap | Used by:412 | |
Symbol 412 Graphic | Uses:411 | Used by:420 827 |
Symbol 413 Bitmap | Used by:414 | |
Symbol 414 Graphic | Uses:413 | Used by:420 827 |
Symbol 415 Bitmap | Used by:416 | |
Symbol 416 Graphic | Uses:415 | Used by:420 827 |
Symbol 417 Bitmap | Used by:419 | |
Symbol 418 Bitmap | Used by:419 | |
Symbol 419 Graphic | Uses:417 418 | Used by:420 827 |
Symbol 420 Button | Uses:412 414 416 419 | Used by:421 |
Symbol 421 MovieClip | Uses:420 | Used by:482 |
Symbol 422 Bitmap | Used by:424 | |
Symbol 423 Bitmap | Used by:424 | |
Symbol 424 Graphic | Uses:422 423 | Used by:425 836 |
Symbol 425 Button | Uses:424 | Used by:429 |
Symbol 426 Bitmap | Used by:427 834 | |
Symbol 427 Graphic | Uses:426 | Used by:428 |
Symbol 428 Button | Uses:427 | Used by:429 |
Symbol 429 MovieClip | Uses:425 428 | Used by:482 |
Symbol 430 Bitmap | Used by:433 824 | |
Symbol 431 Bitmap | Used by:433 | |
Symbol 432 Bitmap | Used by:433 | |
Symbol 433 Graphic | Uses:430 431 432 | Used by:434 833 |
Symbol 434 Button | Uses:433 | Used by:435 |
Symbol 435 MovieClip | Uses:434 | Used by:482 |
Symbol 436 Bitmap | Used by:437 | |
Symbol 437 Graphic | Uses:436 | Used by:438 826 |
Symbol 438 Button | Uses:437 | Used by:439 |
Symbol 439 MovieClip | Uses:438 | Used by:482 |
Symbol 440 Bitmap | Used by:441 | |
Symbol 441 Graphic | Uses:440 | Used by:442 825 |
Symbol 442 Button | Uses:441 | Used by:443 |
Symbol 443 MovieClip | Uses:442 | Used by:482 |
Symbol 444 Graphic | Uses:267 | Used by:445 499 647 743 798 865 |
Symbol 445 Button | Uses:444 | Used by:446 |
Symbol 446 MovieClip | Uses:445 | Used by:482 |
Symbol 447 Bitmap | Used by:448 508 799 | |
Symbol 448 Graphic | Uses:447 | Used by:449 |
Symbol 449 Button | Uses:448 | Used by:453 |
Symbol 450 Bitmap | Used by:451 515 801 | |
Symbol 451 Graphic | Uses:450 | Used by:452 |
Symbol 452 Button | Uses:451 | Used by:453 |
Symbol 453 MovieClip | Uses:449 452 | Used by:482 |
Symbol 454 Bitmap | Used by:455 | |
Symbol 455 Graphic | Uses:454 | Used by:456 839 |
Symbol 456 MovieClip | Uses:455 | Used by:460 |
Symbol 457 Bitmap | Used by:458 | |
Symbol 458 Graphic | Uses:457 | Used by:459 838 |
Symbol 459 MovieClip | Uses:458 | Used by:460 |
Symbol 460 MovieClip | Uses:160 456 459 166 | Used by:482 |
Symbol 461 Bitmap | Used by:462 | |
Symbol 462 Graphic | Uses:461 | Used by:465 |
Symbol 463 Bitmap | Used by:464 | |
Symbol 464 Graphic | Uses:463 | Used by:465 |
Symbol 465 MovieClip | Uses:462 464 | Used by:466 |
Symbol 466 MovieClip | Uses:465 | Used by:467 |
Symbol 467 MovieClip | Uses:466 | Used by:481 |
Symbol 468 Bitmap | Used by:469 | |
Symbol 469 Graphic | Uses:468 | Used by:470 |
Symbol 470 MovieClip | Uses:469 | Used by:481 |
Symbol 471 Bitmap | Used by:472 | |
Symbol 472 Graphic | Uses:471 | Used by:473 611 |
Symbol 473 MovieClip | Uses:472 | Used by:481 |
Symbol 474 MovieClip | Uses:228 | Used by:481 |
Symbol 475 Bitmap | Used by:476 | |
Symbol 476 Graphic | Uses:475 | Used by:477 |
Symbol 477 MovieClip | Uses:476 | Used by:481 |
Symbol 478 Graphic | Uses:339 | Used by:479 |
Symbol 479 MovieClip | Uses:478 | Used by:481 |
Symbol 480 MovieClip | Uses:254 | Used by:481 |
Symbol 481 MovieClip | Uses:467 470 473 474 477 238 242 479 480 | Used by:482 |
Symbol 482 MovieClip | Uses:85 351 360 361 363 365 367 396 398 400 402 404 406 410 421 429 435 439 443 446 453 460 481 | Used by:Timeline |
Symbol 483 Bitmap | Used by:484 | |
Symbol 484 Graphic | Uses:483 | Used by:485 918 |
Symbol 485 Button | Uses:484 | Used by:498 |
Symbol 486 Bitmap | Used by:487 | |
Symbol 487 Graphic | Uses:486 | Used by:488 919 |
Symbol 488 Button | Uses:487 | Used by:498 |
Symbol 489 Bitmap | Used by:490 | |
Symbol 490 Graphic | Uses:489 | Used by:491 920 |
Symbol 491 Button | Uses:490 | Used by:498 |
Symbol 492 Bitmap | Used by:493 | |
Symbol 493 Graphic | Uses:492 | Used by:494 921 |
Symbol 494 Button | Uses:493 | Used by:498 |
Symbol 495 Bitmap | Used by:496 | |
Symbol 496 Graphic | Uses:495 | Used by:497 922 |
Symbol 497 Button | Uses:496 | Used by:498 |
Symbol 498 MovieClip | Uses:485 488 491 494 497 | Used by:620 |
Symbol 499 Button | Uses:444 | Used by:506 |
Symbol 500 Graphic | Uses:270 | Used by:501 |
Symbol 501 Button | Uses:500 | Used by:506 |
Symbol 502 Graphic | Uses:273 | Used by:503 650 745 871 |
Symbol 503 Button | Uses:502 | Used by:506 |
Symbol 504 Graphic | Uses:276 | Used by:505 651 746 872 |
Symbol 505 Button | Uses:504 | Used by:506 |
Symbol 506 MovieClip | Uses:499 501 503 505 | Used by:620 |
Symbol 507 Bitmap | Used by:508 | |
Symbol 508 Graphic | Uses:507 447 | Used by:509 |
Symbol 509 Button | Uses:508 | Used by:517 |
Symbol 510 Bitmap | Used by:512 | |
Symbol 511 Bitmap | Used by:512 867 | |
Symbol 512 Graphic | Uses:510 511 | Used by:513 |
Symbol 513 Button | Uses:512 | Used by:517 |
Symbol 514 Bitmap | Used by:515 | |
Symbol 515 Graphic | Uses:514 450 | Used by:516 |
Symbol 516 Button | Uses:515 | Used by:517 |
Symbol 517 MovieClip | Uses:509 513 516 | Used by:620 |
Symbol 518 Graphic | Uses:280 | Used by:519 739 873 |
Symbol 519 Button | Uses:518 | Used by:544 |
Symbol 520 Graphic | Uses:283 284 | Used by:521 740 874 |
Symbol 521 Button | Uses:520 | Used by:544 |
Symbol 522 Graphic | Uses:287 | Used by:523 741 875 |
Symbol 523 Button | Uses:522 | Used by:544 |
Symbol 524 Graphic | Uses:290 | Used by:525 742 876 |
Symbol 525 Button | Uses:524 | Used by:544 |
Symbol 526 Bitmap | Used by:527 877 | |
Symbol 527 Graphic | Uses:526 | Used by:528 |
Symbol 528 Button | Uses:527 | Used by:544 |
Symbol 529 Bitmap | Used by:530 879 | |
Symbol 530 Graphic | Uses:529 | Used by:531 |
Symbol 531 Button | Uses:530 | Used by:544 |
Symbol 532 Bitmap | Used by:533 881 | |
Symbol 533 Graphic | Uses:532 | Used by:534 |
Symbol 534 Button | Uses:533 | Used by:544 |
Symbol 535 Bitmap | Used by:536 883 | |
Symbol 536 Graphic | Uses:535 | Used by:537 |
Symbol 537 Button | Uses:536 | Used by:544 |
Symbol 538 Bitmap | Used by:540 885 | |
Symbol 539 Bitmap | Used by:540 542 885 887 | |
Symbol 540 Graphic | Uses:538 539 | Used by:541 |
Symbol 541 Button | Uses:540 | Used by:544 |
Symbol 542 Graphic | Uses:539 | Used by:543 |
Symbol 543 Button | Uses:542 | Used by:544 |
Symbol 544 MovieClip | Uses:519 521 523 525 528 531 534 537 541 543 | Used by:620 |
Symbol 545 Bitmap | Used by:546 | |
Symbol 546 Graphic | Uses:545 | Used by:547 890 |
Symbol 547 Button | Uses:546 | Used by:551 |
Symbol 548 Bitmap | Used by:549 | |
Symbol 549 Graphic | Uses:548 | Used by:550 889 |
Symbol 550 Button | Uses:549 | Used by:551 |
Symbol 551 MovieClip | Uses:547 550 | Used by:620 |
Symbol 552 Bitmap | Used by:553 | |
Symbol 553 Graphic | Uses:552 | Used by:554 930 |
Symbol 554 Button | Uses:553 | Used by:564 |
Symbol 555 Bitmap | Used by:556 | |
Symbol 556 Graphic | Uses:555 | Used by:557 931 |
Symbol 557 Button | Uses:556 | Used by:564 |
Symbol 558 Bitmap | Used by:559 | |
Symbol 559 Graphic | Uses:558 | Used by:560 932 |
Symbol 560 Button | Uses:559 | Used by:564 |
Symbol 561 Bitmap | Used by:562 | |
Symbol 562 Graphic | Uses:561 | Used by:563 933 |
Symbol 563 Button | Uses:562 | Used by:564 |
Symbol 564 MovieClip | Uses:554 557 560 563 | Used by:620 |
Symbol 565 Bitmap | Used by:566 923 | |
Symbol 566 Graphic | Uses:565 | Used by:567 |
Symbol 567 Button | Uses:566 | Used by:571 |
Symbol 568 Bitmap | Used by:569 925 | |
Symbol 569 Graphic | Uses:568 | Used by:570 |
Symbol 570 Button | Uses:569 | Used by:571 |
Symbol 571 MovieClip | Uses:567 570 | Used by:620 |
Symbol 572 Graphic | Uses:183 | Used by:573 694 772 927 |
Symbol 573 Button | Uses:572 | Used by:578 |
Symbol 574 Graphic | Uses:186 | Used by:575 695 773 928 |
Symbol 575 Button | Uses:574 | Used by:578 |
Symbol 576 Graphic | Uses:189 | Used by:577 696 774 929 |
Symbol 577 Button | Uses:576 | Used by:578 |
Symbol 578 MovieClip | Uses:573 575 577 | Used by:620 |
Symbol 579 Bitmap | Used by:580 | |
Symbol 580 Graphic | Uses:579 | Used by:581 935 |
Symbol 581 MovieClip | Uses:580 | Used by:582 |
Symbol 582 MovieClip | Uses:160 166 581 | Used by:620 |
Symbol 583 Bitmap | Used by:585 | |
Symbol 584 Bitmap | Used by:585 | |
Symbol 585 Graphic | Uses:583 584 | Used by:620 |
Symbol 586 Bitmap | Used by:587 | |
Symbol 587 Graphic | Uses:586 | Used by:620 |
Symbol 588 Button | Uses:264 | Used by:620 |
Symbol 589 Button | Uses:264 | Used by:620 |
Symbol 590 Bitmap | Used by:591 | |
Symbol 591 Graphic | Uses:590 | Used by:598 |
Symbol 592 Bitmap | Used by:593 | |
Symbol 593 Graphic | Uses:592 | Used by:598 |
Symbol 594 Bitmap | Used by:595 | |
Symbol 595 Graphic | Uses:594 | Used by:598 |
Symbol 596 Bitmap | Used by:597 | |
Symbol 597 Graphic | Uses:596 | Used by:598 |
Symbol 598 MovieClip | Uses:591 593 595 597 | Used by:608 |
Symbol 599 Bitmap | Used by:600 | |
Symbol 600 Graphic | Uses:599 | Used by:607 |
Symbol 601 Bitmap | Used by:602 | |
Symbol 602 Graphic | Uses:601 | Used by:607 |
Symbol 603 Bitmap | Used by:604 | |
Symbol 604 Graphic | Uses:603 | Used by:607 |
Symbol 605 Bitmap | Used by:606 | |
Symbol 606 Graphic | Uses:605 | Used by:607 |
Symbol 607 MovieClip | Uses:600 602 604 606 | Used by:608 |
Symbol 608 MovieClip | Uses:598 210 607 | Used by:619 |
Symbol 609 Graphic | Uses:216 | Used by:610 |
Symbol 610 MovieClip | Uses:609 | Used by:619 |
Symbol 611 MovieClip | Uses:472 | Used by:619 |
Symbol 612 Graphic | Uses:332 | Used by:613 |
Symbol 613 MovieClip | Uses:612 | Used by:619 |
Symbol 614 Bitmap | Used by:615 | |
Symbol 615 Graphic | Uses:614 | Used by:616 |
Symbol 616 MovieClip | Uses:615 | Used by:619 |
Symbol 617 Graphic | Uses:253 | Used by:618 |
Symbol 618 MovieClip | Uses:617 | Used by:619 |
Symbol 619 MovieClip | Uses:608 610 611 228 613 238 242 616 618 | Used by:620 |
Symbol 620 MovieClip | Uses:85 498 506 517 544 128 551 564 571 578 582 585 587 588 589 619 | Used by:Timeline |
Symbol 621 Graphic | Used by:626 | |
Symbol 622 Text | Uses:13 | Used by:626 |
Symbol 623 EditableText | Uses:13 | Used by:626 |
Symbol 624 EditableText | Uses:13 | Used by:626 |
Symbol 625 EditableText | Uses:13 | Used by:626 |
Symbol 626 MovieClip | Uses:621 622 623 624 625 | Used by:Timeline |
Symbol 627 Bitmap | Used by:628 | |
Symbol 628 Graphic | Uses:627 | Used by:629 |
Symbol 629 Button | Uses:628 | Used by:730 789 856 942 |
Symbol 630 Text | Uses:13 | Used by:632 |
Symbol 631 Graphic | Used by:632 | |
Symbol 632 Button | Uses:630 631 | Used by:730 789 856 942 |
Symbol 633 Text | Uses:13 | Used by:730 |
Symbol 634 Graphic | Used by:635 636 637 638 639 640 720 723 726 732 733 734 735 736 791 792 793 794 795 840 843 846 849 852 858 859 860 861 862 863 936 939 | |
Symbol 635 Button | Uses:634 | Used by:730 |
Symbol 636 Button | Uses:634 | Used by:730 |
Symbol 637 Button | Uses:634 | Used by:730 |
Symbol 638 Button | Uses:634 | Used by:730 |
Symbol 639 Button | Uses:634 | Used by:730 |
Symbol 640 Button | Uses:634 | Used by:730 |
Symbol 641 Text | Uses:13 | Used by:730 942 |
Symbol 642 Text | Uses:13 | Used by:644 |
Symbol 643 Graphic | Used by:644 | |
Symbol 644 Button | Uses:642 643 | Used by:730 789 856 942 |
Symbol 645 Font | Used by:646 738 797 864 | |
Symbol 646 EditableText | Uses:645 | Used by:730 |
Symbol 647 Button | Uses:444 | Used by:730 |
Symbol 648 Graphic | Uses:270 | Used by:649 744 870 |
Symbol 649 Button | Uses:648 | Used by:730 |
Symbol 650 Button | Uses:502 | Used by:730 |
Symbol 651 Button | Uses:504 | Used by:730 |
Symbol 652 Text | Uses:13 | Used by:730 789 856 942 |
Symbol 653 Graphic | Uses:113 | Used by:654 747 803 891 |
Symbol 654 Button | Uses:653 | Used by:730 |
Symbol 655 Graphic | Uses:110 | Used by:656 748 804 892 |
Symbol 656 Button | Uses:655 | Used by:730 |
Symbol 657 Graphic | Uses:107 | Used by:658 749 805 893 |
Symbol 658 Button | Uses:657 | Used by:730 |
Symbol 659 Graphic | Uses:104 | Used by:660 750 806 894 |
Symbol 660 Button | Uses:659 | Used by:730 |
Symbol 661 Graphic | Uses:101 | Used by:662 751 807 895 |
Symbol 662 Button | Uses:661 | Used by:730 |
Symbol 663 Graphic | Uses:98 | Used by:664 752 808 896 |
Symbol 664 Button | Uses:663 | Used by:730 |
Symbol 665 Graphic | Uses:95 | Used by:666 753 809 897 |
Symbol 666 Button | Uses:665 | Used by:730 |
Symbol 667 Graphic | Uses:92 | Used by:668 754 810 898 |
Symbol 668 Button | Uses:667 | Used by:730 |
Symbol 669 Graphic | Uses:89 | Used by:670 755 811 899 |
Symbol 670 Button | Uses:669 | Used by:730 |
Symbol 671 Graphic | Uses:86 | Used by:672 756 812 900 |
Symbol 672 Button | Uses:671 | Used by:730 |
Symbol 673 Graphic | Uses:125 | Used by:674 757 813 901 |
Symbol 674 Button | Uses:673 | Used by:730 |
Symbol 675 Graphic | Uses:122 | Used by:676 758 814 902 |
Symbol 676 Button | Uses:675 | Used by:730 |
Symbol 677 Graphic | Uses:116 | Used by:678 759 815 903 |
Symbol 678 Button | Uses:677 | Used by:730 |
Symbol 679 Graphic | Uses:119 | Used by:680 760 904 |
Symbol 680 Button | Uses:679 | Used by:730 |
Symbol 681 Button | Uses:47 | Used by:730 |
Symbol 682 Button | Uses:50 | Used by:730 |
Symbol 683 Button | Uses:53 | Used by:730 |
Symbol 684 Button | Uses:56 | Used by:730 |
Symbol 685 Button | Uses:59 | Used by:730 |
Symbol 686 Button | Uses:62 | Used by:730 |
Symbol 687 Button | Uses:65 | Used by:730 |
Symbol 688 Button | Uses:68 | Used by:730 |
Symbol 689 Button | Uses:80 | Used by:730 |
Symbol 690 Button | Uses:71 | Used by:730 |
Symbol 691 Button | Uses:83 | Used by:730 |
Symbol 692 Button | Uses:74 | Used by:730 |
Symbol 693 Button | Uses:77 | Used by:730 |
Symbol 694 Button | Uses:572 | Used by:730 |
Symbol 695 Button | Uses:574 | Used by:730 |
Symbol 696 Button | Uses:576 | Used by:730 |
Symbol 697 Bitmap | Used by:698 | |
Symbol 698 Graphic | Uses:697 | Used by:699 |
Symbol 699 Button | Uses:698 | Used by:730 |
Symbol 700 Bitmap | Used by:701 | |
Symbol 701 Graphic | Uses:700 | Used by:702 |
Symbol 702 Button | Uses:701 | Used by:730 |
Symbol 703 Graphic | Uses:148 | Used by:704 |
Symbol 704 Button | Uses:703 | Used by:730 |
Symbol 705 Bitmap | Used by:706 | |
Symbol 706 Graphic | Uses:705 | Used by:707 |
Symbol 707 Button | Uses:706 | Used by:730 |
Symbol 708 Button | Uses:180 | Used by:730 |
Symbol 709 Bitmap | Used by:710 | |
Symbol 710 Graphic | Uses:709 | Used by:711 |
Symbol 711 Button | Uses:710 | Used by:730 |
Symbol 712 Bitmap | Used by:713 | |
Symbol 713 Graphic | Uses:712 | Used by:714 |
Symbol 714 Button | Uses:713 | Used by:730 |
Symbol 715 Button | Uses:202 | Used by:730 |
Symbol 716 Button | Uses:159 | Used by:730 |
Symbol 717 Button | Uses:176 | Used by:730 |
Symbol 718 Button | Uses:171 | Used by:730 |
Symbol 719 Button | Uses:168 | Used by:730 |
Symbol 720 Button | Uses:634 | Used by:722 |
Symbol 721 Text | Uses:13 | Used by:722 |
Symbol 722 MovieClip | Uses:720 721 | Used by:730 |
Symbol 723 Button | Uses:634 | Used by:725 |
Symbol 724 Text | Uses:13 | Used by:725 |
Symbol 725 MovieClip | Uses:723 724 | Used by:730 |
Symbol 726 Button | Uses:634 | Used by:728 |
Symbol 727 Text | Uses:13 | Used by:728 |
Symbol 728 MovieClip | Uses:726 727 | Used by:730 |
Symbol 729 Text | Uses:13 | Used by:730 942 |
Symbol 730 MovieClip | Uses:629 632 633 635 636 637 638 639 640 641 34 38 644 646 647 649 650 651 41 652 654 656 658 660 662 664 666 668 670 672 674 676 678 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 699 702 704 707 708 711 714 715 716 717 718 719 722 725 728 729 | Used by:Timeline |
Symbol 731 Text | Uses:13 | Used by:789 |
Symbol 732 Button | Uses:634 | Used by:789 |
Symbol 733 Button | Uses:634 | Used by:789 |
Symbol 734 Button | Uses:634 | Used by:789 |
Symbol 735 Button | Uses:634 | Used by:789 |
Symbol 736 Button | Uses:634 | Used by:789 |
Symbol 737 Text | Uses:13 | Used by:789 |
Symbol 738 EditableText | Uses:645 | Used by:789 |
Symbol 739 Button | Uses:518 | Used by:789 |
Symbol 740 Button | Uses:520 | Used by:789 |
Symbol 741 Button | Uses:522 | Used by:789 |
Symbol 742 Button | Uses:524 | Used by:789 |
Symbol 743 Button | Uses:444 | Used by:789 |
Symbol 744 Button | Uses:648 | Used by:789 |
Symbol 745 Button | Uses:502 | Used by:789 |
Symbol 746 Button | Uses:504 | Used by:789 |
Symbol 747 Button | Uses:653 | Used by:789 |
Symbol 748 Button | Uses:655 | Used by:789 |
Symbol 749 Button | Uses:657 | Used by:789 |
Symbol 750 Button | Uses:659 | Used by:789 |
Symbol 751 Button | Uses:661 | Used by:789 |
Symbol 752 Button | Uses:663 | Used by:789 |
Symbol 753 Button | Uses:665 | Used by:789 |
Symbol 754 Button | Uses:667 | Used by:789 |
Symbol 755 Button | Uses:669 | Used by:789 |
Symbol 756 Button | Uses:671 | Used by:789 |
Symbol 757 Button | Uses:673 | Used by:789 |
Symbol 758 Button | Uses:675 | Used by:789 |
Symbol 759 Button | Uses:677 | Used by:789 |
Symbol 760 Button | Uses:679 | Used by:789 |
Symbol 761 Button | Uses:47 | Used by:789 |
Symbol 762 Button | Uses:50 | Used by:789 |
Symbol 763 Button | Uses:53 | Used by:789 |
Symbol 764 Button | Uses:59 | Used by:789 |
Symbol 765 Button | Uses:62 | Used by:789 |
Symbol 766 Button | Uses:65 | Used by:789 |
Symbol 767 Button | Uses:68 | Used by:789 |
Symbol 768 Button | Uses:80 | Used by:789 |
Symbol 769 Button | Uses:71 | Used by:789 |
Symbol 770 Button | Uses:74 | Used by:789 |
Symbol 771 Button | Uses:77 | Used by:789 |
Symbol 772 Button | Uses:572 | Used by:789 |
Symbol 773 Button | Uses:574 | Used by:789 |
Symbol 774 Button | Uses:576 | Used by:789 |
Symbol 775 Graphic | Used by:776 | |
Symbol 776 Button | Uses:775 | Used by:789 |
Symbol 777 Graphic | Used by:778 | |
Symbol 778 Button | Uses:777 | Used by:789 |
Symbol 779 Graphic | Used by:780 | |
Symbol 780 Button | Uses:779 | Used by:789 |
Symbol 781 Graphic | Uses:294 | Used by:782 |
Symbol 782 Button | Uses:781 | Used by:789 |
Symbol 783 Button | Uses:159 | Used by:789 |
Symbol 784 Button | Uses:310 | Used by:789 |
Symbol 785 Button | Uses:313 | Used by:789 |
Symbol 786 Button | Uses:316 | Used by:789 |
Symbol 787 Button | Uses:319 | Used by:789 |
Symbol 788 Button | Uses:322 | Used by:789 |
Symbol 789 MovieClip | Uses:629 632 731 732 733 734 735 736 737 34 38 644 738 739 740 741 742 743 744 745 746 41 652 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 776 778 780 782 783 784 785 786 787 788 | Used by:Timeline |
Symbol 790 Text | Uses:13 | Used by:856 |
Symbol 791 Button | Uses:634 | Used by:856 |
Symbol 792 Button | Uses:634 | Used by:856 |
Symbol 793 Button | Uses:634 | Used by:856 |
Symbol 794 Button | Uses:634 | Used by:856 |
Symbol 795 Button | Uses:634 | Used by:856 |
Symbol 796 Text | Uses:13 | Used by:856 |
Symbol 797 EditableText | Uses:645 | Used by:856 |
Symbol 798 Button | Uses:444 | Used by:856 |
Symbol 799 Graphic | Uses:447 | Used by:800 866 |
Symbol 800 Button | Uses:799 | Used by:856 |
Symbol 801 Graphic | Uses:450 | Used by:802 869 |
Symbol 802 Button | Uses:801 | Used by:856 |
Symbol 803 Button | Uses:653 | Used by:856 |
Symbol 804 Button | Uses:655 | Used by:856 |
Symbol 805 Button | Uses:657 | Used by:856 |
Symbol 806 Button | Uses:659 | Used by:856 |
Symbol 807 Button | Uses:661 | Used by:856 |
Symbol 808 Button | Uses:663 | Used by:856 |
Symbol 809 Button | Uses:665 | Used by:856 |
Symbol 810 Button | Uses:667 | Used by:856 |
Symbol 811 Button | Uses:669 | Used by:856 |
Symbol 812 Button | Uses:671 | Used by:856 |
Symbol 813 Button | Uses:673 | Used by:856 |
Symbol 814 Button | Uses:675 | Used by:856 |
Symbol 815 Button | Uses:677 | Used by:856 |
Symbol 816 Button | Uses:47 | Used by:856 |
Symbol 817 Button | Uses:50 | Used by:856 |
Symbol 818 Button | Uses:53 | Used by:856 |
Symbol 819 Button | Uses:62 | Used by:856 |
Symbol 820 Button | Uses:74 | Used by:856 |
Symbol 821 Button | Uses:77 | Used by:856 |
Symbol 822 Button | Uses:56 | Used by:856 |
Symbol 823 Button | Uses:83 | Used by:856 |
Symbol 824 Graphic | Uses:430 | Used by:856 |
Symbol 825 Button | Uses:441 | Used by:856 |
Symbol 826 Button | Uses:437 | Used by:856 |
Symbol 827 Button | Uses:412 414 416 419 | Used by:856 |
Symbol 828 Button | Uses:349 | Used by:856 |
Symbol 829 Button | Uses:346 | Used by:856 |
Symbol 830 Button | Uses:353 355 | Used by:856 |
Symbol 831 Button | Uses:358 | Used by:856 |
Symbol 832 Button | Uses:408 | Used by:856 |
Symbol 833 Button | Uses:433 | Used by:856 |
Symbol 834 Graphic | Uses:426 | Used by:835 |
Symbol 835 Button | Uses:834 | Used by:856 |
Symbol 836 Button | Uses:424 | Used by:856 |
Symbol 837 Button | Uses:159 | Used by:856 |
Symbol 838 Button | Uses:458 | Used by:856 |
Symbol 839 Button | Uses:455 | Used by:856 |
Symbol 840 Button | Uses:634 | Used by:842 |
Symbol 841 Text | Uses:13 | Used by:842 |
Symbol 842 MovieClip | Uses:840 841 | Used by:856 |
Symbol 843 Button | Uses:634 | Used by:845 |
Symbol 844 Text | Uses:13 | Used by:845 |
Symbol 845 MovieClip | Uses:843 844 | Used by:856 |
Symbol 846 Button | Uses:634 | Used by:848 |
Symbol 847 Text | Uses:13 | Used by:848 |
Symbol 848 MovieClip | Uses:846 847 | Used by:856 |
Symbol 849 Button | Uses:634 | Used by:851 |
Symbol 850 Text | Uses:13 | Used by:851 |
Symbol 851 MovieClip | Uses:849 850 | Used by:856 |
Symbol 852 Button | Uses:634 | Used by:854 |
Symbol 853 Text | Uses:13 | Used by:854 |
Symbol 854 MovieClip | Uses:852 853 | Used by:856 |
Symbol 855 Text | Uses:13 | Used by:856 |
Symbol 856 MovieClip | Uses:629 632 790 791 792 793 794 795 796 34 38 644 797 798 800 802 41 652 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 835 836 837 838 839 842 845 848 851 854 855 | Used by:Timeline |
Symbol 857 Text | Uses:13 | Used by:942 |
Symbol 858 Button | Uses:634 | Used by:942 |
Symbol 859 Button | Uses:634 | Used by:942 |
Symbol 860 Button | Uses:634 | Used by:942 |
Symbol 861 Button | Uses:634 | Used by:942 |
Symbol 862 Button | Uses:634 | Used by:942 |
Symbol 863 Button | Uses:634 | Used by:942 |
Symbol 864 EditableText | Uses:645 | Used by:942 |
Symbol 865 Button | Uses:444 | Used by:942 |
Symbol 866 Button | Uses:799 | Used by:942 |
Symbol 867 Graphic | Uses:511 | Used by:868 |
Symbol 868 Button | Uses:867 | Used by:942 |
Symbol 869 Button | Uses:801 | Used by:942 |
Symbol 870 Button | Uses:648 | Used by:942 |
Symbol 871 Button | Uses:502 | Used by:942 |
Symbol 872 Button | Uses:504 | Used by:942 |
Symbol 873 Button | Uses:518 | Used by:942 |
Symbol 874 Button | Uses:520 | Used by:942 |
Symbol 875 Button | Uses:522 | Used by:942 |
Symbol 876 Button | Uses:524 | Used by:942 |
Symbol 877 Graphic | Uses:526 | Used by:878 |
Symbol 878 Button | Uses:877 | Used by:942 |
Symbol 879 Graphic | Uses:529 | Used by:880 |
Symbol 880 Button | Uses:879 | Used by:942 |
Symbol 881 Graphic | Uses:532 | Used by:882 |
Symbol 882 Button | Uses:881 | Used by:942 |
Symbol 883 Graphic | Uses:535 | Used by:884 |
Symbol 884 Button | Uses:883 | Used by:942 |
Symbol 885 Graphic | Uses:538 539 | Used by:886 |
Symbol 886 Button | Uses:885 | Used by:942 |
Symbol 887 Graphic | Uses:539 | Used by:888 |
Symbol 888 Button | Uses:887 | Used by:942 |
Symbol 889 Button | Uses:549 | Used by:942 |
Symbol 890 Button | Uses:546 | Used by:942 |
Symbol 891 Button | Uses:653 | Used by:942 |
Symbol 892 Button | Uses:655 | Used by:942 |
Symbol 893 Button | Uses:657 | Used by:942 |
Symbol 894 Button | Uses:659 | Used by:942 |
Symbol 895 Button | Uses:661 | Used by:942 |
Symbol 896 Button | Uses:663 | Used by:942 |
Symbol 897 Button | Uses:665 | Used by:942 |
Symbol 898 Button | Uses:667 | Used by:942 |
Symbol 899 Button | Uses:669 | Used by:942 |
Symbol 900 Button | Uses:671 | Used by:942 |
Symbol 901 Button | Uses:673 | Used by:942 |
Symbol 902 Button | Uses:675 | Used by:942 |
Symbol 903 Button | Uses:677 | Used by:942 |
Symbol 904 Button | Uses:679 | Used by:942 |
Symbol 905 Button | Uses:47 | Used by:942 |
Symbol 906 Button | Uses:50 | Used by:942 |
Symbol 907 Button | Uses:53 | Used by:942 |
Symbol 908 Button | Uses:56 | Used by:942 |
Symbol 909 Button | Uses:59 | Used by:942 |
Symbol 910 Button | Uses:62 | Used by:942 |
Symbol 911 Button | Uses:65 | Used by:942 |
Symbol 912 Button | Uses:68 | Used by:942 |
Symbol 913 Button | Uses:80 | Used by:942 |
Symbol 914 Button | Uses:71 | Used by:942 |
Symbol 915 Button | Uses:83 | Used by:942 |
Symbol 916 Button | Uses:74 | Used by:942 |
Symbol 917 Button | Uses:77 | Used by:942 |
Symbol 918 Button | Uses:484 | Used by:942 |
Symbol 919 Button | Uses:487 | Used by:942 |
Symbol 920 Button | Uses:490 | Used by:942 |
Symbol 921 Button | Uses:493 | Used by:942 |
Symbol 922 Button | Uses:496 | Used by:942 |
Symbol 923 Graphic | Uses:565 | Used by:924 |
Symbol 924 Button | Uses:923 | Used by:942 |
Symbol 925 Graphic | Uses:568 | Used by:926 |
Symbol 926 Button | Uses:925 | Used by:942 |
Symbol 927 Button | Uses:572 | Used by:942 |
Symbol 928 Button | Uses:574 | Used by:942 |
Symbol 929 Button | Uses:576 | Used by:942 |
Symbol 930 Button | Uses:553 | Used by:942 |
Symbol 931 Button | Uses:556 | Used by:942 |
Symbol 932 Button | Uses:559 | Used by:942 |
Symbol 933 Button | Uses:562 | Used by:942 |
Symbol 934 Button | Uses:159 | Used by:942 |
Symbol 935 Button | Uses:580 | Used by:942 |
Symbol 936 Button | Uses:634 | Used by:938 |
Symbol 937 Text | Uses:13 | Used by:938 |
Symbol 938 MovieClip | Uses:936 937 | Used by:942 |
Symbol 939 Button | Uses:634 | Used by:941 |
Symbol 940 Text | Uses:13 | Used by:941 |
Symbol 941 MovieClip | Uses:939 940 | Used by:942 |
Symbol 942 MovieClip | Uses:629 632 857 858 859 860 861 862 863 641 34 38 644 864 865 866 868 869 870 871 872 873 874 875 41 652 876 878 880 882 884 886 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 924 926 927 928 929 930 931 932 933 934 935 938 941 729 | Used by:Timeline |
Symbol 943 Bitmap | Used by:944 | |
Symbol 944 Graphic | Uses:943 | Used by:Timeline |
Symbol 945 Bitmap | Used by:946 947 948 949 950 | |
Symbol 946 Graphic | Uses:945 | Used by:951 |
Symbol 947 Graphic | Uses:945 | Used by:951 |
Symbol 948 Graphic | Uses:945 | Used by:951 |
Symbol 949 Graphic | Uses:945 | Used by:951 |
Symbol 950 Graphic | Uses:945 | Used by:951 |
Symbol 951 MovieClip | Uses:946 947 948 949 950 | Used by:Timeline |
Symbol 952 Bitmap | Used by:953 955 | |
Symbol 953 Graphic | Uses:952 | Used by:954 |
Symbol 954 Button | Uses:953 | Used by:Timeline |
Symbol 955 Graphic | Uses:952 | Used by:956 |
Symbol 956 Button | Uses:955 | Used by:Timeline |
Symbol 957 Font | Used by:958 959 960 961 963 1014 1016 | |
Symbol 958 EditableText | Uses:957 | Used by:Timeline |
Symbol 959 EditableText | Uses:957 | Used by:Timeline |
Symbol 960 EditableText | Uses:957 | Used by:Timeline |
Symbol 961 EditableText | Uses:957 | Used by:Timeline |
Symbol 962 Graphic | Uses:11 | Used by:Timeline |
Symbol 963 EditableText | Uses:957 | Used by:Timeline |
Symbol 964 Button | Uses:36 37 | Used by:Timeline |
Symbol 965 Bitmap | Used by:966 | |
Symbol 966 Graphic | Uses:965 | Used by:968 |
Symbol 967 EditableText | Uses:13 | Used by:968 |
Symbol 968 MovieClip | Uses:966 967 | Used by:Timeline |
Symbol 969 EditableText | Uses:13 | Used by:1005 |
Symbol 970 EditableText | Uses:13 | Used by:1005 |
Symbol 971 EditableText | Uses:13 | Used by:1005 |
Symbol 972 EditableText | Uses:13 | Used by:1005 |
Symbol 973 EditableText | Uses:13 | Used by:1005 |
Symbol 974 EditableText | Uses:13 | Used by:1005 |
Symbol 975 EditableText | Uses:13 | Used by:1005 |
Symbol 976 EditableText | Uses:13 | Used by:1005 |
Symbol 977 EditableText | Uses:13 | Used by:1005 |
Symbol 978 EditableText | Uses:13 | Used by:1005 |
Symbol 979 EditableText | Uses:13 | Used by:1005 |
Symbol 980 EditableText | Uses:13 | Used by:1005 |
Symbol 981 EditableText | Uses:13 | Used by:1005 |
Symbol 982 EditableText | Uses:13 | Used by:1005 |
Symbol 983 EditableText | Uses:13 | Used by:1005 |
Symbol 984 EditableText | Uses:13 | Used by:1005 |
Symbol 985 EditableText | Uses:13 | Used by:1005 |
Symbol 986 EditableText | Uses:13 | Used by:1005 |
Symbol 987 EditableText | Uses:13 | Used by:1005 |
Symbol 988 EditableText | Uses:13 | Used by:1005 |
Symbol 989 EditableText | Uses:13 | Used by:1005 |
Symbol 990 EditableText | Uses:13 | Used by:1005 |
Symbol 991 EditableText | Uses:13 | Used by:1005 |
Symbol 992 EditableText | Uses:13 | Used by:1005 |
Symbol 993 EditableText | Uses:13 | Used by:1005 |
Symbol 994 EditableText | Uses:13 | Used by:1005 |
Symbol 995 EditableText | Uses:13 | Used by:1005 |
Symbol 996 EditableText | Uses:13 | Used by:1005 |
Symbol 997 EditableText | Uses:13 | Used by:1005 |
Symbol 998 EditableText | Uses:13 | Used by:1005 |
Symbol 999 Text | Uses:13 | Used by:1005 |
Symbol 1000 Text | Uses:13 | Used by:1005 |
Symbol 1001 Text | Uses:13 | Used by:1005 |
Symbol 1002 Bitmap | Used by:1003 | |
Symbol 1003 Graphic | Uses:1002 | Used by:1005 |
Symbol 1004 Text | Uses:13 | Used by:1005 Timeline |
Symbol 1005 MovieClip | Uses:969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1003 1004 | Used by:Timeline |
Symbol 1006 Bitmap | Used by:1007 | |
Symbol 1007 Graphic | Uses:1006 | Used by:Timeline |
Symbol 1008 Button | Uses:29 | Used by:Timeline |
Symbol 1009 Bitmap | Used by:1010 | |
Symbol 1010 Graphic | Uses:1009 | Used by:Timeline |
Symbol 1011 Button | Uses:29 | Used by:Timeline |
Symbol 1012 Bitmap | Used by:1013 | |
Symbol 1013 Graphic | Uses:1012 | Used by:Timeline |
Symbol 1014 EditableText | Uses:957 | Used by:Timeline |
Symbol 1015 Button | Uses:29 | Used by:Timeline |
Symbol 1016 EditableText | Uses:957 | Used by:1018 |
Symbol 1017 Button | Uses:29 | Used by:1018 |
Symbol 1018 MovieClip | Uses:1016 1017 | Used by:Timeline |
Instance Names
"loader" | Frame 1 | Symbol 25 MovieClip |
"instruct" | Frame 3 | Symbol 43 MovieClip |
"room4" | Frame 4 | Symbol 257 MovieClip |
"room3" | Frame 4 | Symbol 344 MovieClip |
"room2" | Frame 4 | Symbol 482 MovieClip |
"room1" | Frame 4 | Symbol 620 MovieClip |
"eventDisplay" | Frame 4 | Symbol 626 MovieClip |
"window4" | Frame 4 | Symbol 730 MovieClip |
"window3" | Frame 4 | Symbol 789 MovieClip |
"window2" | Frame 4 | Symbol 856 MovieClip |
"window1" | Frame 4 | Symbol 942 MovieClip |
"happySad" | Frame 4 | Symbol 951 MovieClip |
"messageWindow" | Frame 4 | Symbol 961 EditableText |
"speech" | Frame 4 | Symbol 968 MovieClip |
"results" | Frame 4 | Symbol 1005 MovieClip |
"form" | Frame 7 | Symbol 1018 MovieClip |
"staffCleaner" | Symbol 178 MovieClip Frame 1 | Symbol 160 MovieClip |
"staffJanitor" | Symbol 178 MovieClip Frame 1 | Symbol 166 MovieClip |
"staffEventManager" | Symbol 178 MovieClip Frame 1 | Symbol 169 MovieClip |
"staffDj" | Symbol 178 MovieClip Frame 1 | Symbol 174 MovieClip |
"staffBandLeader" | Symbol 178 MovieClip Frame 1 | Symbol 177 MovieClip |
"floor" | Symbol 257 MovieClip Frame 1 | Symbol 85 MovieClip |
"walls" | Symbol 257 MovieClip Frame 1 | Symbol 128 MovieClip |
"chairs" | Symbol 257 MovieClip Frame 1 | Symbol 141 MovieClip |
"specialBackground" | Symbol 257 MovieClip Frame 1 | Symbol 145 MovieClip |
"specialScenery" | Symbol 257 MovieClip Frame 1 | Symbol 151 MovieClip |
"specialCurtains" | Symbol 257 MovieClip Frame 1 | Symbol 157 MovieClip |
"staff" | Symbol 257 MovieClip Frame 1 | Symbol 178 MovieClip |
"specialPA" | Symbol 257 MovieClip Frame 1 | Symbol 182 MovieClip |
"stereo" | Symbol 257 MovieClip Frame 1 | Symbol 192 MovieClip |
"decks" | Symbol 257 MovieClip Frame 1 | Symbol 196 MovieClip |
"specialLaser" | Symbol 257 MovieClip Frame 1 | Symbol 200 MovieClip |
"specialStrobe" | Symbol 257 MovieClip Frame 1 | Symbol 204 MovieClip |
"specialMirror" | Symbol 257 MovieClip Frame 1 | Symbol 208 MovieClip |
"kids" | Symbol 257 MovieClip Frame 1 | Symbol 256 MovieClip |
"staffCleaner" | Symbol 324 MovieClip Frame 1 | Symbol 160 MovieClip |
"staffKitchenManager" | Symbol 324 MovieClip Frame 1 | Symbol 311 MovieClip |
"staffChef" | Symbol 324 MovieClip Frame 1 | Symbol 314 MovieClip |
"staffWaiter" | Symbol 324 MovieClip Frame 1 | Symbol 317 MovieClip |
"staffShopkeeper" | Symbol 324 MovieClip Frame 1 | Symbol 320 MovieClip |
"staffWaitress" | Symbol 324 MovieClip Frame 1 | Symbol 323 MovieClip |
"staffJanitor" | Symbol 324 MovieClip Frame 1 | Symbol 166 MovieClip |
"walls" | Symbol 344 MovieClip Frame 1 | Symbol 128 MovieClip |
"floor" | Symbol 344 MovieClip Frame 1 | Symbol 85 MovieClip |
"chairs" | Symbol 344 MovieClip Frame 1 | Symbol 279 MovieClip |
"table" | Symbol 344 MovieClip Frame 1 | Symbol 293 MovieClip |
"fountain" | Symbol 344 MovieClip Frame 1 | Symbol 297 MovieClip |
"sign" | Symbol 344 MovieClip Frame 1 | Symbol 304 MovieClip |
"stereo" | Symbol 344 MovieClip Frame 1 | Symbol 308 MovieClip |
"staff3" | Symbol 344 MovieClip Frame 1 | Symbol 324 MovieClip |
"kids" | Symbol 344 MovieClip Frame 1 | Symbol 343 MovieClip |
"staffCleaner" | Symbol 460 MovieClip Frame 1 | Symbol 160 MovieClip |
"staffGardener" | Symbol 460 MovieClip Frame 1 | Symbol 456 MovieClip |
"staffActivitiesManager" | Symbol 460 MovieClip Frame 1 | Symbol 459 MovieClip |
"staffJanitor" | Symbol 460 MovieClip Frame 1 | Symbol 166 MovieClip |
"Jump" | Symbol 466 MovieClip Frame 1 | Symbol 465 MovieClip |
"Jumping" | Symbol 467 MovieClip Frame 1 | Symbol 466 MovieClip |
"floor" | Symbol 482 MovieClip Frame 1 | Symbol 85 MovieClip |
"pool" | Symbol 482 MovieClip Frame 1 | Symbol 351 MovieClip |
"trampoline" | Symbol 482 MovieClip Frame 1 | Symbol 360 MovieClip |
"walls" | Symbol 482 MovieClip Frame 1 | Symbol 396 MovieClip |
"barbeque" | Symbol 482 MovieClip Frame 1 | Symbol 410 MovieClip |
"pagoda" | Symbol 482 MovieClip Frame 1 | Symbol 421 MovieClip |
"shed" | Symbol 482 MovieClip Frame 1 | Symbol 429 MovieClip |
"balls" | Symbol 482 MovieClip Frame 1 | Symbol 435 MovieClip |
"flowerbed" | Symbol 482 MovieClip Frame 1 | Symbol 439 MovieClip |
"vegetablebed" | Symbol 482 MovieClip Frame 1 | Symbol 443 MovieClip |
"chairs" | Symbol 482 MovieClip Frame 1 | Symbol 446 MovieClip |
"sofa" | Symbol 482 MovieClip Frame 1 | Symbol 453 MovieClip |
"staff2" | Symbol 482 MovieClip Frame 1 | Symbol 460 MovieClip |
"kids" | Symbol 482 MovieClip Frame 1 | Symbol 481 MovieClip |
"staffCleaner" | Symbol 582 MovieClip Frame 1 | Symbol 160 MovieClip |
"staffJanitor" | Symbol 582 MovieClip Frame 1 | Symbol 166 MovieClip |
"staffClubManager" | Symbol 582 MovieClip Frame 1 | Symbol 581 MovieClip |
"floor" | Symbol 620 MovieClip Frame 1 | Symbol 85 MovieClip |
"rug" | Symbol 620 MovieClip Frame 1 | Symbol 498 MovieClip |
"chairs" | Symbol 620 MovieClip Frame 1 | Symbol 506 MovieClip |
"sofa" | Symbol 620 MovieClip Frame 1 | Symbol 517 MovieClip |
"table" | Symbol 620 MovieClip Frame 1 | Symbol 544 MovieClip |
"walls" | Symbol 620 MovieClip Frame 1 | Symbol 128 MovieClip |
"shelf" | Symbol 620 MovieClip Frame 1 | Symbol 551 MovieClip |
"specialItems1" | Symbol 620 MovieClip Frame 1 | Symbol 564 MovieClip |
"tv" | Symbol 620 MovieClip Frame 1 | Symbol 571 MovieClip |
"stereo" | Symbol 620 MovieClip Frame 1 | Symbol 578 MovieClip |
"staff1" | Symbol 620 MovieClip Frame 1 | Symbol 582 MovieClip |
"kids" | Symbol 620 MovieClip Frame 1 | Symbol 619 MovieClip |
"eventTimer" | Symbol 626 MovieClip Frame 1 | Symbol 623 EditableText |
"eventName" | Symbol 626 MovieClip Frame 1 | Symbol 624 EditableText |
"eventValue" | Symbol 626 MovieClip Frame 1 | Symbol 625 EditableText |
"description" | Symbol 730 MovieClip Frame 2 | Symbol 646 EditableText |
"description" | Symbol 789 MovieClip Frame 2 | Symbol 738 EditableText |
"description" | Symbol 856 MovieClip Frame 2 | Symbol 797 EditableText |
"description" | Symbol 942 MovieClip Frame 2 | Symbol 864 EditableText |
"messageWindow" | Symbol 968 MovieClip Frame 1 | Symbol 967 EditableText |
Special Tags
ExportAssets (56) | Timeline Frame 1 | Symbol 1 as "win" |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "staff" |
ExportAssets (56) | Timeline Frame 1 | Symbol 3 as "remove" |
ExportAssets (56) | Timeline Frame 1 | Symbol 4 as "lose" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "kidAdd" |
ExportAssets (56) | Timeline Frame 1 | Symbol 6 as "item" |
ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "kid1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 8 as "coins" |
Labels
"win" | Frame 5 |
"lose" | Frame 6 |
"zone1" | Symbol 257 MovieClip Frame 1 |
"zone1" | Symbol 482 MovieClip Frame 1 |
"setup" | Symbol 730 MovieClip Frame 1 |
"furniture" | Symbol 730 MovieClip Frame 2 |
"wallsflooring" | Symbol 730 MovieClip Frame 3 |
"entertainment" | Symbol 730 MovieClip Frame 5 |
"zone1List" | Symbol 730 MovieClip Frame 6 |
"staff" | Symbol 730 MovieClip Frame 8 |
"events" | Symbol 730 MovieClip Frame 9 |
"setup" | Symbol 789 MovieClip Frame 1 |
"furniture" | Symbol 789 MovieClip Frame 2 |
"wallsflooring" | Symbol 789 MovieClip Frame 3 |
"entertainment" | Symbol 789 MovieClip Frame 5 |
"zone1List" | Symbol 789 MovieClip Frame 6 |
"staff" | Symbol 789 MovieClip Frame 7 |
"setup" | Symbol 856 MovieClip Frame 1 |
"furniture" | Symbol 856 MovieClip Frame 2 |
"wallsflooring" | Symbol 856 MovieClip Frame 3 |
"zone1List" | Symbol 856 MovieClip Frame 5 |
"staff" | Symbol 856 MovieClip Frame 8 |
"events" | Symbol 856 MovieClip Frame 9 |
"setup" | Symbol 942 MovieClip Frame 1 |
"furniture" | Symbol 942 MovieClip Frame 2 |
"wallsflooring" | Symbol 942 MovieClip Frame 4 |
"entertainment" | Symbol 942 MovieClip Frame 9 |
"zone1List" | Symbol 942 MovieClip Frame 10 |
"staff" | Symbol 942 MovieClip Frame 11 |
"events" | Symbol 942 MovieClip Frame 12 |
"done" | Symbol 1005 MovieClip Frame 3 |
"done" | Symbol 1018 MovieClip Frame 3 |
Dynamic Text Variables
_root.percentshow | Symbol 14 EditableText | "100%" |
_root.dayDisplay | Symbol 958 EditableText | "Day 100" |
_root.memberDisplay | Symbol 959 EditableText | "Members 100" |
_root.moneyDisplay | Symbol 960 EditableText | "£5000.00" |
_root.messages | Symbol 961 EditableText | " " |
_root.display | Symbol 963 EditableText | "Test" |
speech | Symbol 967 EditableText | "" |
index1 | Symbol 969 EditableText | "" |
name1 | Symbol 970 EditableText | " " |
score1 | Symbol 971 EditableText | " " |
index2 | Symbol 972 EditableText | "" |
name2 | Symbol 973 EditableText | " " |
score2 | Symbol 974 EditableText | " " |
index3 | Symbol 975 EditableText | "" |
name3 | Symbol 976 EditableText | " " |
score3 | Symbol 977 EditableText | " " |
index4 | Symbol 978 EditableText | "" |
name4 | Symbol 979 EditableText | " " |
score4 | Symbol 980 EditableText | " " |
index5 | Symbol 981 EditableText | "" |
name5 | Symbol 982 EditableText | " " |
score5 | Symbol 983 EditableText | " " |
index6 | Symbol 984 EditableText | "" |
name6 | Symbol 985 EditableText | " " |
score6 | Symbol 986 EditableText | " " |
index7 | Symbol 987 EditableText | "" |
name7 | Symbol 988 EditableText | " " |
score7 | Symbol 989 EditableText | " " |
index8 | Symbol 990 EditableText | "" |
name8 | Symbol 991 EditableText | " " |
score8 | Symbol 992 EditableText | " " |
index9 | Symbol 993 EditableText | "" |
name9 | Symbol 994 EditableText | " " |
score9 | Symbol 995 EditableText | " " |
index10 | Symbol 996 EditableText | "" |
name10 | Symbol 997 EditableText | " " |
score10 | Symbol 998 EditableText | " " |
_root.finalScore | Symbol 1014 EditableText | "£5000.00" |
uname | Symbol 1016 EditableText | "" |
|