STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229595 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2595 · P5190 |
This is the info page for Flash #13158 |
z |
sommer |
Sie haben es ja so gewollt - Wenn Sie meine Bilder |
dann auch keine anderen !!! |
nicht ausstellen, |
Ha Ha Ha !! |
Fangen Sie den Erpresser und bringen Sie die Bilder wieder in Ordnung! gez. Direktor |
superglue |
Inspector Wombat |
Inspector Wombat |
New Game |
Load Game |
Save Game |
Continue |
Intro |
Outro |
Instructions |
Menu |
speichern |
büro |
susi |
Südstadt |
Nordstadt |
exit |
e |
n |
i |
r |
a |
m |
The Story The director of the museum is in trouble: The pictures did change ovre night! And furthermore a crazy painter is blackmailing him! Only one can help him now: Inspector Wombat. And that's you. Save the pictures and catch the cunning criminal! |
Forward |
Control You can control Wombat by clicking with the mouse on certain things. The pointer shows you, wether you can take, use, open or close the object, or if you are simply going there. |
Nimm |
Back |
Take and use things When you takesomething, it appears in the "bag" below. You can move the bag using the arrows on the side. |
When you have taken an object, you can use it with others in the bag or in the room. Just click on the item in the bag first and then on anotherone in the bag or in the scene. |
Talk You can talk to the other characters in the game: Just click on them! Sometimes a choice of different sentences appears. Click on one of them to decide, what Wombat should say. |
Rede mit |
Load & Save With the menu-button you can jump back to the start page, while you are playing the game. Here you can load and save the game. When you have saved, the continue-buttons brings you back to the game. |
Help! If you are stuck somewhere you can ask other players in the help-forum. |
And now... have fun playing the game! |
Grafik & Animation Andrea Stubbe |
Interface-Design Roland Koch |
Programmierung Roland Koch Andrea Stubbe |
Texte Andrea Stubbe Roland Koch |
Dank an Rolando & MIchaela fürs Testen |
ein Spiel von greenzone.de |
ActionScript [AS1/AS2]
Frame 1Hand = function (mcAni) { this.mcAni = mcAni; if (myWorld.save_State) { this.save_SetData(); } this.txtAction = _level0.txtAction; this.txtMessage = _level0.txtMessage; this.actionText = ""; this.txtFormat = new textFormat(); this.actItem = undefined; this.scene = undefined; this.tfClearInterval = 3000; this.isInAction = false; }; hp = Hand.prototype; hp.actOver = function (item) { if (!myWorld.gameIsBlocked) { if (!this.actItem) { this.txtAction.text = (LANG.actType[item.actType] + " ") + item.label; } else { this.txtAction.text = (this.actionText + " ") + item.label; } var actType = item.actType; if (!this.actItem) { myTooltip.show(LANG.actType[actType]); } else { myTooltip.show(LANG.actType.withUse); } } }; hp.actOut = function (item) { if (!myWorld.gameIsBlocked) { this.txtAction.text = this.actionText; myTooltip.hide(); } }; hp.actRelease = function (item) { clearInterval(this.tid); if (!myWorld.gameIsBlocked) { if (item.inBag != undefined) { this.act(item); } else if ((((item.id != "itemWineglas") && (item.id != "itemBlanket")) && (item.id != "itemKnife")) && (myWorld.worldData.wearingBlanket)) { this.showText(LANG.wearingBlanket); } else { myTooltip.hide(); myWombat.goTo(item); } } }; hp.act = function (item) { var label = item.label; if (!this.actItem) { var actType = item.actType; switch (actType) { case "useWith" : case "put" : var t = LANG.act[actType].split("*"); this.actionText = (((t[0] + " ") + label) + " ") + t[1]; this.txtAction.text = this.actionText; this.actItem = item; break; case "use" : case "open" : case "close" : case "read" : item.doUse(); break; case "take" : myBag.addItem(item); item.doTake(); break; case "goToNope" : item.doGotoNope(); break; case "goto" : if (item.state == "open") { item.doGoto(); } else { actType = "closed"; item.doGotoClosed(); } break; case "watch" : item.doWatch(); break; case "talk" : item.doTalk(); break; } if (actType != "talk") { var t = LANG[item.id][actType]; if (typeof(t) == "string") { this.showText(t); } else { this.showText(LANG.default[actType]); } } } else { if ((((((item.actType == "use") || (item.actType == "useWith")) || (item.actType == "watch")) || (item.actType == "read")) || (item.actType == "goto")) || (item.actType == "talk")) { if (item.checkAbility(this.actItem)) { if (LANG[this.actItem.id]["msgWork_" + item.id] != undefined) { this.showText(LANG[this.actItem.id]["msgWork_" + item.id]); } else if (LANG[item.id]["msgWork_" + this.actItem.id] != undefined) { this.showText(LANG[item.id]["msgWork_" + this.actItem.id]); } else if (LANG[this.actItem.id].msgWork != undefined) { this.showText(LANG[this.actItem.id].msgWork); } else { this.showText(LANG[item.id].msgWork); } } else if (this.actItem.checkAbility(item)) { if (LANG[item.id]["msgWork_" + this.actItem.id] != undefined) { this.showText(LANG[item.id]["msgWork_" + this.actItem.id]); } else { this.showText(LANG[item.id].msgWork); } } else if (LANG[item.id]["msgNotWork_" + this.actItem.id] != undefined) { this.showText(LANG[item.id]["msgNotWork_" + this.actItem.id]); } else if (LANG[this.actItem.id]["msgNotWork_" + item.id] != undefined) { this.showText(LANG[this.actItem.id]["msgNotWork_" + item.id]); } else if (LANG[item.id].msgNotWork != undefined) { this.showText(LANG[item.id].msgNotWork); } else if (LANG[this.actItem.id].msgNotWork != undefined) { this.showText(LANG[this.actItem.id].msgNotWork); } else { var t = LANG.msgNotWork.split("*"); this.showText((((((((t[0] + ", ") + this.actItem.label) + " ") + t[1]) + " ") + item.label) + " ") + t[2]); } this.actionText = ""; } else { this.showText(LANG.msgFirstTake); } this.actItem = undefined; } this.scene.handleEvent(item); }; hp.setScene = function (scene) { clearInterval(this.tid); this.txtAction.text = ""; myTooltip.hide(); this.scene = scene; this.txtFormat.color = "0x" + this.scene.textCol; this.formatText(); myWorld.save_Scene = scene.name; }; hp.startMovie = function (id, initObj, noBlock) { aniMovie = this.mcAni.attachMovie(id, "xaniMovie", 10000, initObj); aniMovie._x = 222; aniMovie._y = 172; if (noBlock != true) { myWorld.blockGame(); } else { myWorld.unblockGame(); } }; hp.stopMovie = function (startDialog) { this.mcAni.xaniMovie.removeMovieClip(); if (startDialog) { myWorld.blockGame(1); } else { myWorld.unblockGame(); } _level0.switchDialog(); }; hp.formatText = function () { this.txtMessage.setNewTextFormat(this.txtFormat); }; hp.showText = function (text) { this.txtMessage.text = text; clearInterval(this.tid); this.tid = setInterval(this, "clearText", this.tfClearInterval); }; hp.clearText = function () { this.scene.handleEvent(); this.txtMessage.text = ""; this.txtAction.text = ""; clearInterval(this.tid); }; hp.blockAction = function (bool) { this.isInAction = bool; }; delete hp; _global.Bag = function (mc, xOffset, places) { this.places = places; this.mc = mc; this.items = new Array(); this.save_Items = new Array(); this.itemCount = 0; this.itemPos = 10; this.xOffset = xOffset; this.firstItem = 0; this.itemLevel = 1; }; bp = Bag.prototype; bp.addItem = function (item) { item.inBag = this.itemCount; this.itemCount++; var tMc = this.mc.attachMovie(item.id, item.id, this.itemLevel++); tMc._x = this.itemPos; this.itemPos = this.itemPos + this.xOffset; this.items.push(item); item.mc._visible = false; myHand.scene.removeItem(item); this.save_Items[item.id] = item.id; this.scaleItem(tMc); item.setMc(tMc); this.jumpToItem(); }; bp.removeItem = function (item) { this.itemCount--; this.items[item.inBag].mc.removeMovieClip(); this.items.splice(item.inBag, 1); delete this.save_Items[item.id]; this.itemPos = this.itemPos - this.xOffset; item.setMc(myHand.scene.showItem(item)); this.placeItems(item.inBag); }; bp.placeItems = function (val) { var len = this.items.length; var i = val; while (i < len) { this.items[i].mc._x = this.items[i].mc._x - this.xOffset; i++; } this.scrollBack(); }; bp.scaleItem = function (mc) { while ((mc._height > 35) || (mc._width > 35)) { mc._xscale = mc._xscale - 2; mc._yscale = mc._yscale - 2; } while ((mc._height < 35) && (mc._width < 35)) { mc._xscale = mc._xscale + 2; mc._yscale = mc._yscale + 2; } }; bp.showItem = function (item, nr) { if ((nr >= (this.firstItem + this.places)) || (nr < this.firstItem)) { item.mc._visible = false; } else { item.mc._visible = true; } }; bp.jumpToItem = function () { while ((this.firstItem + this.places) < this.itemCount) { this.scrollFwd(); } }; bp.scrollFwd = function () { if ((this.firstItem + this.places) < this.itemCount) { this.firstItem++; this.itemPos = this.itemPos - this.xOffset; var len = this.items.length; var i = 0; while (i < len) { this.items[i].mc._x = this.items[i].mc._x - this.xOffset; this.showItem(this.items[i], i); i++; } } }; bp.scrollBack = function () { if (this.firstItem > 0) { this.firstItem--; this.itemPos = this.itemPos + this.xOffset; var len = this.items.length; var i = 0; while (i < len) { this.items[i].mc._x = this.items[i].mc._x + this.xOffset; this.showItem(this.items[i], i); i++; } } }; bp.hide = function () { this.mc._parent._visible = false; }; bp.show = function () { this.mc._parent._visible = true; }; delete bp; Figure = function (format) { this.dialogFormat = format; this.talkState = 0; }; Fp = Figure.prototype; fp.setMc = function (mc, scene, point) { this.mc = mc; this.scene = scene; this.place(point); }; fp.goTo = function (item, index) { var point; if (index == undefined) { index = 0; } if (item.point.length != undefined) { var z = 0; while (z < item.point.length) { var txdiff = Math.abs((this.mc._x - item.point[z].x) / 10); var tydiff = Math.abs((this.mc._y - item.point[z].y) / 10); if ((txdiff < 1) && (tydiff < 1)) { if (z == (item.point.length - 1)) { index = z; } else { index = z + 1; } break; } z++; } point = item.point[index]; if ((index + 1) < item.point.length) { this.mc.index = index; } else { this.mc.index = null; } } else if (!item.point) { point = new Object(); point.x = this.mc._x; point.y = this.mc._y; point.s = this.mc._xscale; } else { point = item.point; } this.mc.xstart = this.mc._x; this.mc.ystart = this.mc._y; this.mc.sstart = this.mc._xscale; this.mc.xdiff = point.x - this.mc.xstart; this.mc.ydiff = point.y - this.mc.ystart; this.mc.sdiff = point.s - this.mc.sstart; this.mc.time = 0; this.mc.direction = point.d; var tx = Math.abs(this.mc.xdiff / 10); var ty = Math.abs(this.mc.ydiff / 10); if ((tx > 1) || (ty > 1)) { this.goMove(item); } else { myHand.act(item); } }; fp.goMove = function (item) { this.mc.refitem = item; this.mc.parent = this; if (this.mc.sdiff < -30) { this.mc.gotoAndStop("back"); } else if (this.mc.sdiff > 30) { this.mc.gotoAndStop("front"); } else if ((Math.abs(this.mc.xdiff) < 25) && (Math.abs(this.mc.ydiff) > 15)) { if (this.mc.ydiff < 0) { this.mc.gotoAndStop("back"); } else { this.mc.gotoAndStop("front"); } } else if (this.mc.xdiff < 0) { this.mc.gotoAndStop("left"); } else { this.mc.gotoAndStop("right"); } var z = ((point.y - (this.mc._height * (point.s / this.mc._xscale))) - (this.mc._y - this.mc._height)); var t = Math.sqrt((this.mc.xdiff * this.mc.xdiff) + (z * z)); this.mc.steps = Math.round(t / 10); if (this.mc.steps < 5) { this.mc.steps = 5; } if (this.mc._xscale < 50) { this.mc.steps = this.mc.steps * 3; } this.mc.fig.gotoAndPlay("walk"); this.mc.onEnterFrame = function () { with (this) { c = sstart - _xscale; if (c < 0) { steps = steps + (c / 50); } else if (c > 0) { steps = steps + (c / 100); } time++; _x = Math.linearTween(time, xstart, xdiff, steps); _y = Math.linearTween(time, ystart, ydiff, steps); _xscale = (_yscale = Math.linearTween(time, sstart, sdiff, steps)); if (time >= steps) { this.fig.gotoAndPlay("stop"); this.gotoAndStop(this.direction); delete this.onEnterFrame; if (this.index != undefined) { this.parent.goTo(this.refitem, this.index + 1); } else { myHand.act(refitem); } } } }; }; fp.place = function (point) { this.mc._x = point.x; this.mc._y = point.y; this.mc._xscale = (this.mc._yscale = point.s); }; fp.talkAnimation = function () { if (this.talkState == 1) { this.talkState = 0; this.mc.fig.head.mcMouth.gotoAndStop("silent"); } else { this.talkState = 1; this.mc.fig.head.mcMouth.gotoAndPlay("talk"); } }; delete fp; _global.Scene = function (name, textCol, eventHandler) { this.items = Array(); this.hideItems = Array(); this.removeItems = Array(); this.name = name; this.textCol = textCol; this.eventHandler = eventHandler; myWorld.save_AddScene(this.name); }; sp = Scene.prototype; sp.init = function () { myHand.clearText(); myHand.stopMovie(); if (myWorld.save_State) { if (myWorld.sObj.data.hideItems[this.name]) { for (var key in myWorld.sObj.data.hideItems[this.name]) { this.hideItems[key] = myWorld.sObj.data.hideItems[this.name][key]; } } if (myWorld.save_LoadedScenes.length > 0) { gotoAndStop(myWorld.save_LoadedScenes.shift()); } else { myWorld.save_State = false; gotoAndStop(myWorld.sObj.data.scene); } } this.setState(); this.setVisible(); }; sp.addItem = function (item) { this.items[item] = item; }; sp.removeItem = function (item) { this.hideItems[String(item.id)] = String(item.mc); delete this.items[item]; }; sp.hideItem = function (id, mc) { this.hideItems[id] = mc; }; sp.showItem = function (item) { t = this.hideItems[item.id]; t._visible = true; delete this.hideItems[item.id]; this.addItem(item); return(t); }; sp.setState = function () { for (var obj in this.items) { this.items[obj].set(); } }; sp.setVisible = function () { for (var key in this.hideItems) { eval (this.hideItems[key])._visible = false; } }; sp.toString = function () { return(this.scene); }; sp.handleEvent = function (item) { if (this.eventHandler) { this.eventHandler(item); } }; delete sp; Dialog = function (holder, textField, format, interval) { this.holder = holder; this.textField = textField; this.interval = interval; this.format = format; this.actPerson = undefined; this.actIndex = -1; this.breaked = false; }; dp = Dialog.prototype; dp.start = function (data, offset) { this.holder.selector.removeMovieClip(); this.data = data; myHand.clearText(); myBag.hide(); myWorld.blockGame(1); this.iid = setInterval(this, "displayText", offset, 0); }; dp.exit = function () { this.talkAnimation(null, "stop"); clearInterval(this.iid); myBag.show(); this.textField.text = ""; myHand.formatText(); myWorld.unblockGame(1); _level0.switchDialog(); }; dp.breakDialog = function (handler, pTalk) { clearInterval(this.iid); this.textField.text = ""; if (!this.breaked) { this.breaked = true; this.talkAnimation(null, "stop"); handler(this); } else { this.displayText(++this.actIndex); this.breaked = false; } }; dp.talkAnimation = function (person, type) { if (type == "talk") { if (person != this.actPerson) { this.actPerson.talkAnimation(); person.talkAnimation(); } } else { this.actPerson.talkAnimation(); } this.actPerson = person; }; dp.displayText = function (index) { this.actIndex = index; clearInterval(this.iid); var sel = this.data[index]; this.talkAnimation(sel.p, "talk"); this.textField.setNewTextFormat(sel.p.dialogFormat); this.textField.text = sel.text; if (sel.t) { this.iid = setInterval(this, "makeSelection", this.interval, sel.f); } else if (sel.f) { if (sel.a) { this.iid = setInterval(this, "breakDialog", this.interval, sel.a, sel.p); } else { this.iid = setInterval(this, "displayText", this.interval, sel.f[0]); } } else { this.iid = setInterval(this, "exit", this.interval); } }; dp.makeSelection = function (selection) { this.talkAnimation(null, "stop"); clearInterval(this.iid); this.textField.text = ""; var len = selection.length; var mc = this.holder.createEmptyMovieClip("selector", 1); var i = 0; while (i < len) { var mcText = mc.createEmptyMovieClip("text_" + i, i); with (mcText) { _y = i * 15; createTextField("txtText", i, 0, 0, 10, 10); txtText.autoSize = "Left"; txtText.selectable = false; txtText.setNewTextFormat(this.format.select); txtText.text = this.data[selection[i]].text; } mcText.ref = this; mcText.id = selection[i]; mcText.onRollOver = function () { this.txtText.setTextFormat(this.ref.format.hover); }; mcText.onRollOut = function () { this.txtText.setTextFormat(this.ref.format.select); }; mcText.onRelease = function () { this.ref.displayText(this.id); mc.removeMovieClip(); }; i++; } }; delete dp; _global.World = function () { this.gameIsBlocked = false; this.worldData = new Array(); this.worldData.buttonBlocked = false; this.worldData.wearingBlanket = false; this.worldData.happyBacts = false; this.worldData.cultureSmall = false; this.worldData.cultureCup = false; this.worldData.cultureVase = false; this.worldData.cultureBad = false; this.worldData.cultureBadTalk = false; this.worldData.cultureSmallTalk = false; this.worldData.needKey = false; this.worldData.zoomedDish = 0; this.worldData.zoomedPic = false; this.worldData.pipetteFilled = false; this.worldData.poisonedWine = false; this.worldData.poisonedWineTalk = false; this.worldData.savedPics = false; this.worldData.caughtCrim = false; this.save_Objects = new Array(); this.save_Scenes = new Array(); this.save_hideItems = new Array(); this.save_State = false; this.save_Scene; this.save_LoadedScenes = new Array(); }; wp = World.prototype; wp.changeState = function (item, newState, changeMc) { item.state = newState; if (LANG[item.id][item.state] != undefined) { item.label = LANG[item.id][item.state]; } else { item.label = LANG[item.id].label; } if (changeMc) { item.mc.gotoAndStop(newState); } }; wp.changeActType = function (item, newActType) { item.actType = newActType; }; wp.getState = function (item) { return(item.state); }; wp.blockGame = function (dialog) { myTooltip.hide(); if (dialog != undefined) { this.gameIsBlocked = true; } else { this.gameIsBlocked = true; Mouse.hide(); } }; wp.unblockGame = function (dialog) { this.gameIsBlocked = false; Mouse.show(); }; wp.startMovieBetween = function (id, initObj, noBlock) { if (initObj == undefined) { initObj = new Object(); } myHand.startMovie(id, initObj, noBlock); }; wp.stopMovieBetween = function () { myHand.stopMovie(); }; wp.save_SaveGame = function () { this.sObj = SharedObject.getLocal("game"); for (i in this.sObj.data) { delete this.sObj.data[i]; } var len = this.save_Objects.length; var i = 0; while (i < len) { this.sObj.data[this.save_Objects[i]] = _level0[this.save_Objects[i]].save_GetData(); i++; } this.sObj.data.scenes = this.save_Scenes; for (var key in this.save_Scenes) { this.save_hideItems[this.save_Scenes[key]] = _level0[this.save_Scenes[key]].hideItems; } this.sObj.data.hideItems = this.save_hideItems; this.sObj.data.worldData = this.worldData; this.sObj.data.bag = myBag.save_Items; this.sObj.data.scene = this.save_Scene; status = this.sObj.flush(5000); delete this.sObj; if (status == true) { _level0.sysmsg.text = LANG.sysmsg.saveOk; } else if (status == false) { _level0.sysmsg.text = LANG.sysmsg.saveNotAllowed; } else { System.showSettings(1); } this.sObj.onStatus = function (signal) { if (signal.code == "SharedObject.Flush.Success") { _level0.sysmsg.text = LANG.sysmsg.saveActivated; } else if (signal.code == "SharedObject.Flush.Failed") { _level0.sysmsg.text = LANG.sysmsg.saveNotActivated; } }; }; wp.save_LoadGame = function () { this.sObj = SharedObject.getLocal("game"); if (this.sObj.data.scene != null) { this.save_State = true; _level0.sysmsg.text = LANG.sysmsg.saveLoaded; for (var key in this.sObj.data.worldData) { this.worldData[key] = this.sObj.data.worldData[key]; } this.save_LoadedScenes = this.sObj.data.scenes.slice(0); if (this.save_LoadedScenes.length > 0) { _level0.gotoAndStop(this.save_LoadedScenes.shift()); } } else { _level0.sysmsg.text = LANG.sysmsg.saveNotFound; } }; wp.save_AddObject = function (value) { this.save_Objects.push(value); }; wp.save_addScene = function (value) { this.save_Scenes.push(value); }; delete wp; Tooltip = function (mc, mousepointer) { this.mc = mc; this.mp = mousepointer; }; tp = Tooltip.prototype; tp.show = function (text) { Mouse.hide(); this.mc._visible = true; this.mp._visible = true; this.tt = this.mc.createEmptyMovieClip("tt", 5000); this.tt._x = 0; this.tt._y = 0; this.tt.createTextField("message", 1, 0, 0, this.mc._width - 4, 20); this.tt.message.text = text; with (this.tt.message) { background = false; selectable = false; f = new TextFormat("Arial", 10, 0, true); f.align = "center"; setNewTextFormat(f); } this.tt.message.text = text; mp = this.mp; this.mc.onEnterFrame = function () { mp._x = _root._xmouse; mp._y = _root._ymouse; this._x = _root._xmouse; while (this._x > (437 - this._width)) { this._x = this._x - 2; } this._y = _root._ymouse + 20; }; }; tp.hide = function () { Mouse.show(); this.mc._visible = false; this.mp._visible = false; this.tt.removeMovieClip(); }; delete tp; _global.Item = function (id, mc, point, abilities) { this.point = point; this.label = LANG[id].label; this.id = id; this.setMc(mc); this.inBag = undefined; this.setAbilities(abilities); if (this.save_GetData) { myWorld.save_AddObject(this.id); if (myWorld.save_State == true) { this.save_SetData(); } } }; Item.prototype = new MovieClip(); io = Item.prototype; io.setAbilities = function (abilities) { for (var key in abilities) { this[abilities[key]] = true; } }; io.init = function () { this.mc.ref = this; this.mc.useHandCursor = false; this.mc.onRollOver = function () { myHand.actOver(this.ref); }; this.mc.onRollOut = function () { myHand.actOut(this.ref); }; this.mc.onDragOut = function () { myHand.actOut(this.ref); }; this.mc.onRelease = function () { myHand.actRelease(this.ref); }; }; io.setMc = function (mc) { var mc = eval (mc); mc._visible = true; if (this.mc == undefined) { myHand.scene.addItem(this); } mc.gotoAndStop(this.state); this.mc = mc; this.init(); }; io.newMc = function (item, id) { item.doTake(); myBag.addItem(item); }; io.set = function () { this.update(); this.init(); }; io.update = function () { if (this.mcType == "cupboard") { this.mc._parent.gotoAndStop(this.state); if (this.state == "closed") { this.hideContent(this.content); } } else { this.mc.gotoAndStop(this.state); } if (LANG[this.id][this.state] != undefined) { this.label = LANG[this.id][this.state]; } }; io.startMovie = function (id, initObj, noBlock) { if (initObj == undefined) { initObj = new Object(); } initObj.object = this; myHand.startMovie(id, initObj, noBlock); }; io.stopMovie = function (startDialog) { myHand.stopMovie(startDialog); }; io.toString = function () { return(this.id); }; io.save_SetData = function () { for (var key in myWorld.sObj.data[this.id]) { this[key] = myWorld.sObj.data[this.id][key]; } if (myWorld.sObj.data.bag[this.id] != undefined) { myBag.addItem(this); } this.update(); }; delete io; _global.LANG = new Array(); LANG.sysmsg = {saveOk:"Saved Game", saveNotAllowed:"Saving is not allowed", saveActivated:"Saving is deactivated", saveNotActivated:"Saving denied", saveLoaded:"Loaded Game", saveNotFound:"No Game found"}; LANG.filled = "filled"; LANG.actTake = "take"; LANG.actWatch = "watch"; LANG.actUse = "use"; LANG.msgNotWork = "No,*with*doesn't work."; LANG.msgFirstTake = "I have to take that first."; LANG.actType = {take:"take", use:"use", useWith:"use", put:"use", goTo:"go to", open:"open", close:"close", watch:"examine", read:"read", talk:"talk to", goToNope:"go to", withUse:"use with"}; LANG.act = {useWith:"use*with", put:"put*on"}; LANG.default = {take:"I'll take that.", watch:"Let's take a look at this.", read:"There's nothing interesting.", use:"Let's see what happens.", open:"Let's take a look what's inside.", closed:"It's locked!"}; LANG.itemDoorToStreet = {label:"door to the street"}; LANG.itemUndergroundSign = {label:"underground station"}; LANG.itemStairway = {label:"stairway to the street"}; LANG.itemSubDoor = {label:"underground"}; LANG.sceneOffice = {intro:"Okay, the crazy blackmailer has been caught. Now on to the pictures..."}; LANG.objDoorSign = {label:"door sign", read:"It says 'closed'. Well, I have to work."}; LANG.objPoster = {label:"Poster", read:"Alfred Hitchkock presents 'Rear Window'."}; LANG.objCupOffice = {label:"cup of coffee", watch:"Yuck! cold coffee!", msgNotWork:"No, I don't want to stain that with coffee."}; LANG.objChairOffice = {label:"chair"}; LANG.objTableOffice = {label:"desk", watch:"The desk is a heirloom from my great-grandfather."}; LANG.objPhone = {label:"phone", use:"I don't know who to call."}; LANG.itemTrunk = {label:"trunk", msgNotWork:"No, I don't want to put that into the trunk."}; LANG.itemMagnifier = {label:"magnifier", take:"I guess my magnifier might be useful.", msgWork:"Let's look at this...", msgWork_itemPic2:"I should take an assay.", msgWork_itemPic3:"I should take an assay.", msgWork_itemPic5:"I should take an assay.", msgWork_itemPic6:"I should take an assay.", msgNotWork:"Well, it doesn't look exciting even when it's small.", msgNotWork_itemPic1:"Hm, looks quite ordinary, doesn't it?", msgNotWork_itemPic4:"Hm, looks quite normal, doesn't it?."}; LANG.itemLetterDirector = {label:"letter from the director", read:""}; LANG.itemLetterThief = {label:"blackmail letter", read:"", msgWork:"Hmm, there is dust on it. Looks like from the underground!", msgNotWork_itemLighter:"Hey, I should not burn evidences!"}; LANG.itemCupboard_office = {label:"cupboard"}; LANG.itemDish = {label:"dish", watch:"I will take that, when I need it. It's quite heavy.", take:"Maybe I can use this for the germs...", msgWork_itemVase:"Yep, here they have enough space!", msgWork_itemCup:"Yep, here they have enough space!"}; LANG.itemPassage_livingroom = {label:"kitchen"}; LANG.persSusi = {label:"Susi", msgWork_itemFlowers:"Here, pretty flowers!"}; LANG.itemStereo = {label:"stereo", msgNotWork_itemCd1:"The compartment doesn't open. Well, of course, the stereo is turned off.", msgNotWork_itemCd2:"The stereo is turned off.", use:"I have to insert a CD first!"}; LANG.itemFlowers = {label:"flowers", mixed:"flower puree", msgWork_itemRedButton:"Disgusting.. nobody would like to touch this anymore!"}; LANG.itemVase = {label:"vase of flowers", take:"cute florets.", empty:"empty, dirty vase", clean:"clean vase", filledWsample:"germ-collection", use:"", msgWork_itemDuster:"Now this is spotlessly clean!", msgWork_itemPipette:"Yep, that's a good place for an assay."}; LANG.itemLavalamp = {label:"lava-lamp", use:"No, I don't need light.", wCultureBig:"grown-up bacteriological culture", wCultureSmall:"small bacteriological culture", wCultureFed:"fed bacteriological culture", wCultureHappy:"nice bacteriological culture", msgWork_itemCake:"sweets for my sweets...", msgWork_itemLighter:"Let's warm them up a bit.", msgWork_itemDish:"Okay... start proliferating!"}; LANG.objSofa = {label:"Sofa", watch:"A handsome, cuddly sofa."}; LANG.objLamp = {label:"standard lamp", msgNotWork_itemDish:"That's to big for me. I'd better take the small one."}; LANG.objPicture = {label:"modern image", watch:"Lush colors, I like it.", msgNotWork_itemMagnifier:"Well, it's not that enthralling."}; LANG.itemHairpin = {label:"hairpin", msgNotWork_persSusi:"That was a present! I don't want to give it back!"}; LANG.itemDoorKitchen = {label:"livingroom"}; LANG.itemMixer = {label:"mixer", use:"What shall I mix?", msgWork:"Wrrrrmmmm.... just like a Ferrari."}; LANG.itemDrawer1 = {label:"drawer", msgNotWork:"No, I don't want to put it there."}; LANG.itemDrawer2 = {label:"drawer", msgNotWork:"No, not in there."}; LANG.itemCupboard_kitchen = {label:"kitchen cabinet", open:"Empty.", msgNotWork:"No, I don't want to put something inside."}; LANG.itemBall = {label:"ball", take:"Hey, something to play!", msgWork:""}; LANG.objDiamond = {label:"diamond", watch:"Such a valueable diamond, just lying there in the drawer."}; LANG.objTowel = {label:"towel", watch:"A nice green, but a bit dirty.", msgNotWork:"I hate wiping."}; LANG.itemWrongKey = {label:"key", take:"Oh, a key! For number 23.", msgNotWork_itemDoorHideaway:"What a pity, it doesn't fit. How do I get in there now?"}; LANG.itemCorkscrew = {label:"corkscrew"}; LANG.itemLighter = {label:"lighter", msgWork_itemNewspaper:"Hopefully no one catches me!", msgNotWork:"No, I don't want to burn that.", msgNotWork_itemLetterThief:"Detective-rule no. 1: Don't burn evidences."}; LANG.itemKnife = {label:"knife", take:"Not especially sharp-edged..."}; LANG.itemCleaner = {label:"washingup liquid", take:"Something to clean up. O-kay..."}; LANG.itemPipette = {label:"pipette", full:"sucked-up germs", take:"Funny what lies around here...", msgNotWork_itemPic1:"Hm, looks quite ordinary, doesn't it?", msgNotWork_itemPic2:"What shall I suck here?", msgNotWork_itemPic3:"What shall I suck here?", msgNotWork_itemPic4:"Hm, looks quite ordinary, doesn't it?", msgNotWork_itemPic5:"What shall I suck here?", msgNotWork_itemPic6:"What shall I suck here?"}; LANG.itemDuster = {label:"cloth", wet:"damp cloth", dryAndClean:"cloth with washingup liquid", wetAndClean:"washingup cloth"}; LANG.itemTap = {label:"tap", use:"Why should I turn that on?"}; LANG.objTrash = {label:"dustbin", watch:"Yuck, that stinks!", msgNotWork:"No, I'm gonna keep that. Who knows..."}; LANG.itemNewspaper = {label:"newspaper", take:"What a pitty, it's yesterday's paper."}; LANG.itemCanalNorth = {label:"manhole cover"}; LANG.itemDoorOffice = {label:"agency"}; LANG.itemDoorHouse = {label:"Susi's house"}; LANG.itemPark = {label:"municipal park"}; LANG.objCar = {label:"delivery van", watch:"An old delivery van."}; LANG.objNote = {label:"note", read:"There's a great exhibition in the museum. Guess I should go there."}; LANG.objCanal = {label:"manhole cover", watch:"It is blocked."}; LANG.itemCake = {label:"chocolate cake", take:"I love chocolate cake!"}; LANG.itemCup = {label:"coffee cup", take:"Coffee reawakes the strongest man.", use:"Ugh, already cold!", empty:"empty, dirty cup", clean:"clean cup", filledWsample:"cup with germs", msgWork_itemDuster:"Incredible clean now.", msgWork_itemPipette:"The new place-to-be for bacteria."}; LANG.itemDoorHouse = {label:"door"}; LANG.itemBanana = {label:"banana peel", take:"Before someone slips..."}; LANG.itemEntranceUnderground = {label:"underground duct", goToNope:"Oops, I should better not do that..."}; LANG.objCamera = {label:"monitoring camera", watch:"I feel observed."}; LANG.objCamera2 = {label:"observation camera", watch:"I feel a bit observed."}; LANG.objChairs = {label:"orange chairs", watch:"Too far away! What a bummer, they look cosy."}; LANG.objSign_north = {label:"sign", read:"Nordstadt, here is my agency."}; LANG.objGarbage_north = {label:"garbage can", watch:"Nothing inside.", msgNotWork:"No, I don't want to through this away."}; LANG.objSign_south = {label:"sign", read:"S\u00FCdstadt, Susi is living here!"}; LANG.objGarbage_south = {label:"garbage can", watch:"That has been emptied not long ago.", msgNotWork:"Well, no. It's so pretty clean now..."}; LANG.objFireSign = {label:"decal information", watch:"No fire allowed here. Hummm...."}; LANG.objPole = {label:"grab pole", watch:"Nice thing f you don't want to fall."}; LANG.itemWindow = {label:"window"}; LANG.sceneUnderground = {intro:"Huh, it's dark in here!"}; LANG.itemLadder_underground = {label:"ladder to the surface"}; LANG.itemRat1 = {label:"brown rat", watch:"It looks like my neighbour's dog!"}; LANG.itemRat2 = {label:"rat", watch:"Oh, cute! A little rat!"}; LANG.itemGuideSouth = {label:"S\u00FCdstadt"}; LANG.itemGuideNorth = {label:"Nordstadt"}; LANG.itemDoorHideaway = {label:"door", closed:"Damn, the door is locked.", msgWork:"Now it's open."}; LANG.persCriminal = {label:"crazy painter"}; LANG.itemLadderHideaway = {label:"ladder to the surface"}; LANG.itemWineglas = {label:"wine glass", broken:"fragments", take:"Maybe that helps."}; LANG.itemBlanket = {label:"evil blanket"}; LANG.itemGlue = {label:"glue", msgNotWork:"rubbish, it's empty!"}; LANG.itemRedButton = {label:"red button", blocked_itemFlowers:"blocked button", blocked_itemCherries:"blocked button", glued:"glued button", use:"Better not, who knows what might happen!"}; LANG.objCriminalPic1 = {label:"beige picture ", watch:"It is calles: Spring Flowers. Well, you need a lot of imagination..."}; LANG.objCriminalPic2 = {label:"grey picture", watch:"'Self-portrait'. Okay, a little resemblance..."}; LANG.objCriminalPic3 = {label:"brown picture", watch:"Das ist 'November Rain'. I remember a song with the same name."}; LANG.objTableHideaway = {label:"table", watch:"Oh, I have the same one, I have the same one!"}; LANG.objPillar = {label:"marble column", watch:"Really tasteful."}; LANG.objArmchair = {label:"armchair", watch:"I also want to have one."}; LANG.itemBottle = {label:"red wine", take:"Oh, a good vintage.", msgWork_itemCorkscrew:"Aaaand.... open!", msgWork_itemPoison:"Hm, the one who drinks this, will sleep extra-well.", poisoned:"red wine with opium poppy powder"}; LANG.autoAni_blanket = {wombat:"I have to break free.", crim:"Oh, an unwanted visitor!"}; LANG.wearingBlanket = "I can't see! Let's take a look later."; LANG.scenePark = {intro:"Oh, the pipette drivels. All gone now."}; LANG.itemMuseum = {label:"museum for painting"}; LANG.itemGuideCity = {label:"the city"}; LANG.itemFountain = {label:"well-water", watch:"cold, clear water."}; LANG.objStatue = {label:"statue", watch:"Astro-Susi, she saved the world from little green aliens."}; LANG.objFlowersRed = {label:"blue florets", watch:"Cute little things!"}; LANG.objFlowersBlue = {label:"blue florets", watch:"Pretty little flowers."}; LANG.itemPoison = {label:"opium poppy", take:"Oh, opium poppy, if I have problems falling asleep again.", mixed:"opium poppy powder"}; LANG.itemGuideExit = {label:"exit"}; LANG.persDirector = {label:"director"}; LANG.itemPic1 = {label:"'Dancers' from Deags", watch:"Pretty picture. Pretty dancers..."}; LANG.itemPic2 = {label:"Self-portrait from Van Gogh", msgWork_itemMagnifier:"I should take an assay.", watch:"I can't remember Van Gogh had freckles..."}; LANG.itemPic3 = {label:"'Bathing' from Degas", msgWork_itemMagnifier:"I should take an assay.", watch:"Looks like she was cleaning the bath tub. Pffff..."}; LANG.itemPic4 = {label:"'Moulin de la Galette' from Renoir", watch:"Ah! A normal picture!"}; LANG.itemPic5 = {label:"'Absinth-Drinker' from Renoir", msgWork_itemMagnifier:"I should take an assay.", watch:"All that tickertape... the picture is about drinking, not about carnival!"}; LANG.itemPic6 = {label:"'Light' from Magritte ", msgWork_itemMagnifier:"I should take an assay.", watch:"Less disturbing than the original!"}; LANG.itemPlugSocket = {label:"plug socket", use:"'Don't put your fingers in the plug socket', my mummy always said!"}; LANG.itemBench_museum = {label:"bench", stereo:"stereo", plugged:"turned-on stereo", msgNotWork_itemCd1:"The compartment doesn't open. Well, of course, the stereo is turned off.", msgNotWork_itemCd2:"The stereo is turned off.", use:"No, I'm not tired."}; LANG.objChairMuseum = {label:"chair"}; LANG.sceneTrunk = {intro:"Ah, my good old trunk. Let's see what is inside..."}; LANG.itemCd1 = {label:"summer-music", take:"The Hits from summer 79. Hmmm...", msgWork:"Dum-di-dum. Happy summer-music...", msgNotWork:"Nope, you don't do that!"}; LANG.itemCd2 = {label:"music", take:"From my favorite band.", msgWork:"Dumdidum yeah, yeah, yeah... That has been music, then!", msgNotWork:"How should that work?"}; LANG.itemCherries = {label:"cherries", take:"Die sind auch schon ein paar Jahre alt. Yuck!", msgWork:"Disgusting.. nobody would like to touch this anymore!", msgNotWork:"Uuuh, maybe I want to use that later!"}; LANG.itemPlaster = {label:"plaster", take:"Plasters are always good to have...", msgWork:"Okay... glued. Hopefully he doesn't simply tear the plaster off!", msgNotWork:"Well, that isn't hurt, it doesn't need a plaster."}; LANG.dialogSusiA = {d0:"Hello Susi!", d1:"Hello Inspector Wombat.", d2:"How are you going on with the case?", d3:"Uhm... not that good.", d4:"I followed the traces of the blackmailer deep down underground.", d5:"Bye bye", d6:"Good bye Inspector", d7:"What's the problem?", d8:"Well, that sounds fine!", d9:"He does not open the door.", d10:"Oh. Hmmmm... I've got something for you.", d11:"Here, this hairpin opens all locks.", d12:"Oh, thank you, Susi. See you..."}; LANG.dialogSusiB = {d0:"Not really many bacteria, are they?", d1:"What can we do than?", d2:"Na dann sollen die sich mal vermehren!", d3:"Hmmm... red light might help.", d4:"Looks like they are not too delighted to do so.", d5:"Well, let's try this!", d6:"Sorry, I've got no time. Good bye Susi.", d7:"Okay. Also bye-bye."}; LANG.dialogSusiB2 = {d0:"Oh, you brought a bacteriological culture!", d1:"Really? I did?", d2:"Yes, a green one.", d3:"Yes, the stuff in the vase.", d4:"But they do have too little space there... ", d5:"Then I'll go and fetch a bigger one!"}; LANG.dialogSusiB3 = {d3:"Yes, the stuff in the cup!"}; LANG.dialogSusiC = {d0:"Hey Susi, what's going on?", d1:"Nothing, I'm just standing here...", d2:"Well, okay. See you later, than.", d3:"See you, Inspector!"}; LANG.dialogSusiD = {d0:"They really look evil!", d1:"Yes, they are little monsters.", d2:"That's why they destroy all the pictures.", d3:"How can we make them friendly again?", d4:"Maybe give them some chocholate? It works for me.", d5:"Some good music?", d6:"Hmmm...maybe it's too cold?", d7:"Okay, let's try it...", d8:"The germs are still evil."}; LANG.dialogCriminalA = {d0:"Ha, caught you, you evil criminal!", d1:"Now you follow me... to the prison.", d2:"Uhm... nope.", d3:"But yes!", d4:"I found you, now you have to come with me!", d5:"Nope. Catch me...", d6:"Puh, that's too trying for me.", d7:"Haha, then I'll stay here."}; LANG.dialogCriminalB = {d0:"Ha, caught you, you blackmailer!", d1:"Now go to jail!", d2:"What about a delicious wine?", d3:"Nope. I don't want to.", d4:"That would be nice. Well, it's mine, anyway.", d5:"Yes, you do!.", d6:"Catch me, if you can!", d7:"Puh, that's too trying for me now.", d8:"Well, then I stay here. Hehe.", d9:"Fine... Cheerio!"}; LANG.dialogDirector = {d0:"Ah, the Inspector! How is the case going?", d1:"What case?", d2:"I have a very promisingly trace.", d3:"I have no clue, do you know who the author is?", d4:"The one with the blackmailer and the pictures.", d5:"Then I don't want to disturb you any longer.", d6:"Well, you are the inspector, not me! But I have an assumption.", d7:"What was it all about again?", d8:"Someone changed the pictures in the museum.", d9:"They are covered with a strange substance, really disgusting.", d10:"Your job is to put things straight and catch the crazy criminal.", d11:"Okay, back to work....", d12:"I wish you luck, inspector!", d13:"Great, tell me!", d14:"Well, you better let me do my job.", d15:"The underground is full of ragtag and riff-raff.", d16:"You might be right. I should take a look."}; LANG.intro = {t0:"Hahaha!", t1:"That's my revenge, Director!"}; LANG.dialogIntro1 = {d0:"It's so good you're here, Inspector!", d1:"Hi, Director.", d2:"Look at the pictures, disgusting!", d3:"Yeah, indeed...", d4:"No, no, no, not THAT!", d5:"The one besides!", d6:"Oh... right. Of course.", d7:"Looks somehow different... all that tickertape...", d8:"Indeed! It hasn't been there yesterday.", d9:"Someone changed the pictures tonight.", d10:"But who would do...", d11:"...and in the morning this letter lay in front of the door.", d12:""}; LANG.dialogIntro2 = {d0:"Oh, that doesn't sound good.", d1:"...well, that is why I called you!", d2:"Catch the maniac, who committed that crime", d3:"and put things straight again.", d4:"Yep, I'll knuckle down to work immediately."}; LANG.dialogEnde = {d0:"Great job, Wombat.", d1:"Yep. It was a hard piece of work.", d2:"The images are okay again...", d3:"and the lunatic artist is behind bars.", d4:"That was my mission."}; LANG.end = {t0:"And again Inspector Wombat solved the case.", t1:"Lonely our hero rides toward the sunset.", t2:"Till the next case."}; _global.DefaultObject = function (id, mc, point, actType) { this.state = "empty"; this.label = LANG[id].label; this.actType = actType; super(id, mc, point); }; DefaultObject.prototype = new Item(); dp = DefaultObject.prototype; delete dp; _global.Door = function (id, mc, point, target, key) { if (key != undefined) { this.state = "close"; this.key = key; this.isKeyable = true; } else { this.state = "open"; } this.actType = "goto"; this.target = target; super(id, mc, point); }; Door.prototype = new Item(); dp = Door.prototype; dp.doGoto = function () { _level0.gotoAndStop(this.target); }; dp.doGotoClosed = function () { myWorld.worldData.needKey = true; }; dp.doKey = function (theKey) { this.isKeyable = false; this.state = "open"; this.startMovie("ani_itemDoor_" + theKey.id); myWorld.worldData.needKey = false; }; delete dp; _global.Cupboard = function (id, mc, point, content) { this.mcType = "cupboard"; this.actType = "open"; this.state = "closed"; super(id, mc, point); this.content = content; this.hideContent(this.content); }; Cupboard.prototype = new Item(); dp = Cupboard.prototype; dp.doUse = function () { if (this.state == "closed") { this.state = "open"; this.actType = "close"; this.showContent(this.content); this.mc._parent.goToAndStop("open"); } else { this.state = "closed"; this.actType = "open"; this.hideContent(this.content); this.mc._parent.goToAndStop("closed"); } }; dp.hideContent = function (content) { var i = 0; while (i < content.length) { this.mc._parent[content[i]]._visible = false; i++; } }; dp.showContent = function (content) { var i = 0; while (i < content.length) { this.mc._parent[content[i]]._visible = true; myHand.scene.setVisible(); i++; } }; dp.save_GetData = function () { return({actType:this.actType, state:this.state, content:this.content}); }; dp.save_SetData = function () { super.save_SetData(); if (this.state == "open") { this.showContent(this.content); } }; delete dp; _global.Trunk = function (id, mc, point, state, target) { this.state = state; if (this.state == "open") { this.actType = "open"; } else { this.actType = "close"; } this.target = target; super(id, mc, point); }; Trunk.prototype = new Item(); tp = Trunk.prototype; tp.doUse = function () { this.state = "open"; this.actType = "close"; _level0.gotoAndStop(this.target); }; tp.doClose = function () { this.state = "open"; this.actType = "close"; _level0.gotoAndStop(this.target); }; delete tp; _global.Magnifier = function (id, mc, point) { this.actType = "take"; super(id, mc, point); }; Magnifier.prototype = new Item(); mp = Magnifier.prototype; mp.doTake = function () { this.actType = "useWith"; }; mp.checkAbility = function (target) { if (target.isZoomable) { target.doZoom(this); return(true); } return(false); }; mp.save_GetData = function () { return({actType:this.actType}); }; delete mp; _global.Letter = function (id, mc, point, abilities) { this.actType = "read"; super(id, mc, point, abilities); }; Letter.prototype = new Item(); lp = Letter.prototype; lp.doUse = function () { this.startMovie("ani_" + this.id); }; lp.doZoom = function () { this.startMovie(("ani_" + this.id) + "_itemMagnifier"); }; lp.save_GetData = function () { return({actType:this.actType}); }; delete lp; _global.Dish = function (id, mc, point) { this.isFillableWsample = true; this.state = "empty"; this.actType = "watch"; super(id, mc, point); }; Dish.prototype = new Item(); dp = Dish.prototype; dp.doFillWsample = function (s) { this.isFillableWsample = false; this.isLightable = true; this.startMovie("ani_itemDish_" + s.id); myWorld.changeState(this, "wCultureSmall", true); myWorld.changeState(s, "clean", true); if (s.id == "itemVase") { myWorld.worldData.cultureVase = false; myWorld.worldData.cultureSmall = true; } else if (s.id == "itemCup") { myWorld.worldData.cultureCup = false; myWorld.worldData.cultureSmall = true; } myWorld.cultureSmall = true; }; dp.doTake = function () { this.actType = "useWith"; }; dp.save_GetData = function () { return({actType:this.actType, state:this.state, isLightable:this.isLightable, isFillableWsample:this.isFillableWsample}); }; delete dp; _global.Cleaner = function (id, mc, point) { this.actType = "take"; super(id, mc, point); }; Cleaner.prototype = new Item(); cp = Cleaner.prototype; cp.doTake = function () { this.actType = "useWith"; }; cp.checkAbility = function (target) { if (target.isSoapable) { target.doSoap(this); return(true); } return(false); }; cp.save_GetData = function () { return({actType:this.actType}); }; delete cp; _global.Duster = function (id, mc, point) { this.isSoapable = true; this.isWetable = true; this.state = "dry"; this.actType = "take"; super(id, mc, point); }; Duster.prototype = new Item(); dp = Duster.prototype; dp.checkAbility = function (target) { if (target.isCleanable && (this.state == "wetAndClean")) { target.doClean(this); return(true); } return(false); }; dp.doSoap = function () { this.isSoapable = false; var initObj = {state:this.state}; this.startMovie("ani_itemDuster_itemCleaner", initObj); if (this.state == "dry") { myWorld.changeState(this, "dryAndClean", true); } else if (this.state == "wet") { myWorld.changeState(this, "wetAndClean", true); } }; dp.doWet = function (w) { this.isWetable = false; var initObj = {state:this.state}; this.startMovie("ani_itemDuster_" + w.id, initObj); if (this.state == "dry") { myWorld.changeState(this, "wet", true); } else if (this.state == "dryAndClean") { myWorld.changeState(this, "wetAndClean", true); } }; dp.doTake = function () { this.actType = "useWith"; }; dp.save_GetData = function () { return({state:this.state, actType:this.actType, isSoapable:this.isSoapable, isWetable:this.isWetable}); }; delete dp; _global.Knife = function (id, mc, point) { this.actType = "take"; super(id, mc, point); }; Knife.prototype = new Item(); cp = Knife.prototype; cp.doTake = function () { this.actType = "useWith"; }; cp.checkAbility = function (target) { if (target.isCutable) { target.doCut(this); return(true); } return(false); }; cp.save_GetData = function () { return({actType:this.actType}); }; delete cp; _global.Pipette = function (id, mc, point) { this.state = "empty"; this.actType = "take"; super(id, mc, point); }; Pipette.prototype = new Item(); pp = Pipette.prototype; pp.doTake = function () { this.actType = "useWith"; }; pp.checkAbility = function (target) { if (target.isSuckable && (this.state == "empty")) { target.doSuck(); myWorld.changeState(this, "full", true); myWorld.worldData.pipetteFilled = true; return(true); } if (target.isFillableWpipette && (this.state == "full")) { target.doFillWpipette(); myWorld.changeState(this, "empty", true); myWorld.worldData.pipetteFilled = false; return(true); } return(false); }; pp.save_GetData = function () { return({actType:this.actType, state:this.state}); }; delete pp; _global.Lighter = function (id, mc, point) { this.actType = "take"; super(id, mc, point); }; Lighter.prototype = new Item(); cp = Lighter.prototype; cp.doTake = function () { this.actType = "useWith"; }; cp.checkAbility = function (target) { if (target.isInflameable) { target.doInflame(this); return(true); } return(false); }; cp.save_GetData = function () { return({actType:this.actType}); }; delete cp; _global.Drawer = function (id, mc, point, content) { this.mcType = "cupboard"; this.actType = "open"; this.state = "closed"; this.content = content; this.hideContent(this.content); super(id, mc, point); }; Drawer.prototype = new Item(); dp = Drawer.prototype; dp.doUse = function () { if (this.state == "closed") { this.state = "open"; this.actType = "close"; this.showContent(this.content); this.mc._parent.gotoAndStop("open"); } else { this.state = "closed"; this.actType = "open"; this.hideContent(this.content); this.mc._parent.gotoAndStop("closed"); } }; dp.hideContent = function (content) { var i = 0; while (i < content.length) { this.mc._parent[content[i]]._visible = false; i++; } }; dp.showContent = function (content) { var i = 0; while (i < content.length) { this.mc._parent[content[i]]._visible = true; myHand.scene.setVisible(); i++; } }; dp.save_GetData = function () { return({state:this.state, actType:this.actType, content:this.content}); }; dp.save_SetData = function () { super.save_SetData(); if (this.state == "open") { this.showContent(this.content); } }; delete dp; _global.Ball = function (id, mc, point) { this.actType = "take"; this.isRatable = true; super(id, mc, point); }; Ball.prototype = new Item(); bp = Ball.prototype; bp.doTake = function () { this.actType = "useWith"; }; bp.doRat = function () { this.startMovie("ani_itemRat_itemBall", initObj); }; bp.save_GetData = function () { return({actType:this.actType}); }; delete bp; _global.Corkscrew = function (id, mc, point) { this.actType = "take"; super(id, mc, point); }; Corkscrew.prototype = new Item(); cp = Corkscrew.prototype; cp.doTake = function () { this.actType = "useWith"; }; cp.checkAbility = function (target) { if (target.isScrewable) { target.doScrew(); return(true); } return(false); }; cp.save_GetData = function () { return({actType:this.actType}); }; delete cp; _global.WrongKey = function (id, mc, point) { this.actType = "take"; super(id, mc, point); }; WrongKey.prototype = new Item(); cp = WrongKey.prototype; cp.doTake = function () { this.actType = "useWith"; }; cp.save_GetData = function () { return({actType:this.actType}); }; delete cp; _global.Tap = function (id, mc, point) { this.actType = "use"; super(id, mc, point); }; Tap.prototype = new Item(); tp = Tap.prototype; tp.checkAbility = function (target) { if (target.isWetable) { target.doWet(this); return(true); } return(false); }; delete tp; _global.Mixer = function (id, mc, point) { this.actType = "use"; super(id, mc, point); }; Mixer.prototype = new Item(); mp = Mixer.prototype; mp.checkAbility = function (target) { if (target.isMixable) { target.doMix(this); return(true); } return(false); }; delete mp; _global.DoorKey = function (id, mc, point) { this.actType = "take"; super(id, mc, point); }; DoorKey.prototype = new Item(); cp = DoorKey.prototype; cp.doTake = function () { this.actType = "useWith"; }; cp.checkAbility = function (target) { if (target.isKeyable) { if (target.key == this.id) { target.doKey(this); return(true); } return(false); } return(false); }; cp.save_GetData = function () { return({actType:this.actType}); }; delete cp; _global.Stereo = function (id, mc, point) { this.state = "inLivingroom"; this.actType = "use"; super(id, mc, point); this.isPlugable = false; }; Stereo.prototype = new Item(); sp = Stereo.prototype; sp.checkAbility = function (target) { if (target.isPlayable && ((this.state == "inLivingroom") || (this.state == "plugged"))) { target.doPlay(this); return(true); } return(false); }; sp.doTake = function () { this.actType = "put"; this.isPutable = true; this.state = "inBag"; }; sp.save_GetData = function () { return({actType:this.actType, state:this.state, isPlugable:this.isPlugable, isPutable:this.isPutable}); }; delete sp; _global.Vase = function (id, mc, point) { this.state = "full"; this.actType = "take"; super(id, mc, point); }; Vase.prototype = new Item(); vp = Vase.prototype; vp.doTake = function () { this.actType = "use"; }; vp.checkAbility = function (target) { if (target.isFillableWsample && (this.state == "filledWsample")) { target.doFillWsample(this); return(true); } return(false); }; vp.doUse = function () { this.isCleanable = true; this.actType = "useWith"; myWorld.changeState(this, "empty", true); this.startMovie("ani_itemVase"); _root.takeFlowers(); }; vp.doClean = function () { this.isCleanable = false; this.isFillableWpipette = true; this.actType = "useWith"; myWorld.changeState(this, "clean", true); this.startMovie("ani_itemVase_itemDuster"); }; vp.doFillWpipette = function () { this.isFillableWpipette = false; this.actType = "useWith"; myWorld.worldData.cultureVase = true; myWorld.changeState(this, "filledWsample", true); this.startMovie("ani_itemVase_itemPipette"); }; vp.save_GetData = function () { return({actType:this.actType, isCleanable:this.isCleanable, isFillableWpipette:this.isFillableWpipette, state:this.state}); }; vp.save_SetData = function () { super.save_SetData(); if (this.state == "empty") { _root.takeFlowers(); } }; delete vp; _global.Lavalamp = function (id, mc, point) { this.actType = "use"; super(id, mc, point); }; Lavalamp.prototype = new Item(); lp = Lavalamp.prototype; lp.checkAbility = function (target) { if (target.isLightable) { this.doLight(target); return(true); } return(false); }; lp.doLight = function (target) { this.actType = "useWith"; this.isLightable = false; this.isZoomable = true; this.isFeedable = true; this.isInflameable = true; this.startMovie("ani_itemDish_itemLavalamp"); myBag.removeItem(target); myWorld.changeState(this, "wCultureBig", true); myWorld.worldData.cultureSmall = false; myWorld.worldData.cultureBad = true; }; lp.doInflame = function () { this.startMovie("ani_itemDish_itemLighter"); myWorld.changeState(this, "wCultureBig"); }; lp.doFeed = function () { this.startMovie("ani_itemDish_itemCake"); myWorld.changeState(this, "wCultureFed"); }; lp.doZoom = function () { if (myWorld.worldData.zoomedDish == 0) { myWorld.worldData.zoomedDish = 1; } var initObj = {state:this.state}; this.startMovie("ani_itemDish_itemMagnifier", initObj); }; lp.save_GetData = function () { return({actType:this.actType, state:this.state, isZoomable:this.isZoomable, isFeedable:this.isFeedable, isInflameable:this.isInflameable}); }; delete lp; _global.Person = function (id, mc, point, format, objDialog, abilities) { this.dialogFormat = format; this.actType = "talk"; this.objDialog = objDialog; this.data; this.talkState = 0; super(id, mc, point, abilities); }; Person.prototype = new Item(); pp = Person.prototype; pp.doTalk = function () { this.objDialog.start(this.data, 10); }; pp.doGift = function (g) { this.startMovie((("ani_" + g.id) + "_") + this.id); }; pp.doPoison = function () { myWorld.worldData.caughtCrim = true; this.startMovie("ani_itemBottle_persCriminal"); }; pp.talkAnimation = function () { if (this.talkState == 1) { this.talkState = 0; this.mc.head.mcMouth.gotoAndStop("silent"); } else { this.talkState = 1; this.mc.head.mcMouth.gotoAndPlay("talk"); } }; pp.setDialog = function (data, start) { this.data = data; if (start) { this.objDialog.start(this.data, start); } }; delete pp; _global.Flowers = function (id, mc, point) { this.actType = "useWith"; this.isMixable = true; super(id, mc, point); }; Flowers.prototype = new Item(); fp = Flowers.prototype; fp.doMix = function () { this.isMixable = false; this.actType = "useWith"; myWorld.changeState(this, "mixed", true); this.startMovie("ani_itemFlowers_itemMixer"); }; fp.checkAbility = function (target) { if (target.isMudable && (this.state == "mixed")) { target.doMud(this); return(true); } if (target.isGiftable && (this.state != "mixed")) { myBag.removeItem(this); target.doGift(this); return(true); } return(false); }; fp.save_GetData = function () { return({actType:this.actType, isMixable:this.isMixable, state:this.state}); }; delete fp; _global.Cake = function (id, mc, point) { this.actType = "take"; super(id, mc, point); }; Cake.prototype = new Item(); cp = Cake.prototype; cp.doTake = function () { this.actType = "useWith"; }; cp.checkAbility = function (target) { if (target.isFeedable) { target.doFeed(this); return(true); } return(false); }; cp.save_GetData = function () { return({actType:this.actType, isFeedable:this.isFeedable}); }; delete cp; _global.Cup = function (id, mc, point) { this.state = "full"; this.actType = "take"; super(id, mc, point); }; Cup.prototype = new Item(); cp = Cup.prototype; cp.doTake = function () { this.actType = "use"; }; cp.checkAbility = function (target) { if (target.isFillableWsample && (this.state == "filledWsample")) { target.doFillWsample(this); return(true); } return(false); }; cp.doUse = function () { this.isCleanable = true; this.actType = "useWith"; myWorld.changeState(this, "empty", true); this.startMovie("ani_itemCup"); }; cp.doClean = function () { this.isCleanable = false; this.isFillableWpipette = true; this.actType = "useWith"; myWorld.changeState(this, "clean", true); this.startMovie("ani_itemCup_itemDuster"); }; cp.doFillWpipette = function () { this.isFillableWpipette = false; this.actType = "useWith"; myWorld.changeState(this, "filledWsample", true); myWorld.worldData.cultureCup = true; this.startMovie("ani_itemCup_itemPipette"); }; cp.save_GetData = function () { return({actType:this.actType, state:this.state, isFillableWpipette:this.isFillableWpipette, isCleanable:this.isCleanable}); }; delete cp; _global.Newspaper = function (id, mc, point) { this.actType = "take"; super(id, mc, point); this.isInflameable = true; }; Newspaper.prototype = new Item(); np = Newspaper.prototype; np.doTake = function () { this.actType = "useWith"; }; np.doInflame = function () { this.startMovie("ani_itemNewspaper_itemLighter"); }; np.save_GetData = function () { return({actType:this.actType, isInflamable:this.isInflamable}); }; delete np; _global.Cd = function (id, mc, point) { this.isPlayable = true; this.actType = "take"; super(id, mc, point); }; Cd.prototype = new Item(); cp = Cd.prototype; cp.doTake = function () { this.actType = "useWith"; }; cp.doPlay = function (stereo) { var initObj = {name:this.id, place:stereo.state}; this.startMovie("ani_itemStereo_itemCD", initObj); var currentStateDish = myWorld.getState(itemLavalamp); if ((currentStateDish != "wCultureSmall") && (currentStateDish != "empty")) { switch (this.id) { case "itemCd2" : myWorld.changeState(itemLavalamp, "wCultureHappy"); myWorld.worldData.happyBacts = true; myWorld.worldData.cultureBad = false; break; case "itemCd1" : myWorld.changeState(itemLavalamp, "wCultureBig"); } } var currentStateStereo = myWorld.getState(itemStereo); var stateBench = myWorld.getState(itemBench_museum); if ((currentStateStereo == "inLivingroom") && (myWorld.worldData.happyBacts)) { myWorld.changeActType(itemStereo, "take"); } else if (((stateBench == "plugged") && (this.id == "itemCd2")) && (myWorld.worldData.happyBacts)) { myWorld.worldData.savedPics = true; } }; cp.save_GetData = function () { return({actType:this.actType, isPlayable:this.isPlayable}); }; delete cp; _global.Cherries = function (id, mc, point) { this.actType = "take"; super(id, mc, point); }; Cherries.prototype = new Item(); cp = Cherries.prototype; cp.doTake = function () { this.actType = "useWith"; }; cp.checkAbility = function (target) { if (target.isMudable) { target.doMud(this); return(true); } return(false); }; cp.save_GetData = function () { return({actType:this.actType}); }; delete cp; _global.Plaster = function (id, mc, point) { this.actType = "take"; super(id, mc, point); }; Plaster.prototype = new Item(); pp = Plaster.prototype; pp.doTake = function () { this.actType = "useWith"; }; pp.checkAbility = function (target) { if (target.isGlueable) { target.doGlue(this); return(true); } return(false); }; pp.save_GetData = function () { return({actType:this.actType}); }; delete pp; _global.Picture = function (id, mc, point, abilities) { this.actType = "watch"; super(id, mc, point, abilities); if (myWorld.worldData.zoomedPic) { this.isSuckable = true; } }; Picture.prototype = new Item(); pp = Picture.prototype; pp.doZoom = function () { myWorld.worldData.zoomedPic = true; this.isSuckable = true; this.startMovie("ani_itemPicture_itemMagnifier"); }; pp.doSuck = function () { this.startMovie("ani_itemPicture_itemPipette"); }; delete pp; _global.Bench_museum = function (id, mc, point) { this.actType = "use"; super(id, mc, point); }; Bench_museum.prototype = new Item(); bp = Bench_museum.prototype; bp.checkAbility = function (target) { if (target.isPutable) { this.doPut(target); return(true); } if (target.isPlayable && (this.state == "plugged")) { target.doPlay(this); return(true); } return(false); }; bp.doPut = function (target) { myBag.removeItem(target); this.actType = "useWith"; myWorld.changeState(this, "stereo", true); this.isPlugable = true; this.isPutable = false; }; bp.doPlug = function () { this.isPlugable = false; myWorld.changeState(this, "plugged", true); this.startMovie("ani_itemStereo_itemPlug"); }; bp.save_GetData = function () { return({actType:this.actType, state:this.state, isPlugable:this.isPlugable, isPutable:this.isPutable}); }; delete bp; _global.PlugSocket = function (id, mc, point) { this.actType = "use"; super(id, mc, point); }; PlugSocket.prototype = new Item(); pp = PlugSocket.prototype; pp.checkAbility = function (target) { if (target.isPlugable) { target.doPlug(); return(true); } return(false); }; delete pp; _global.Wineglas = function (id, mc, point) { this.state = "notBroken"; this.actType = "take"; super(id, mc, point); }; Wineglas.prototype = new Item(); wp = Wineglas.prototype; wp.doTake = function () { this.actType = "use"; }; wp.checkAbility = function (target) { if (target.isCutable && (this.state == "broken")) { target.doCut(this); return(true); } return(false); }; wp.doUse = function () { this.actType = "useWith"; myWorld.changeState(this, "broken", true); this.startMovie("ani_itemWineglas"); }; wp.save_GetData = function () { return({actType:this.actType, state:this.state}); }; delete wp; _global.Blanket = function (id, mc, point) { this.isCutable = true; this.state = "empty"; this.actType = "use"; super(id, mc, point); }; Blanket.prototype = new Item(); bp = Blanket.prototype; bp.doCut = function (c) { this.isCutable = false; var initObj = {cutter:c.id}; this.startMovie("ani_itemBlanket_cut", initObj); }; delete bp; _global.RedButton = function (id, mc, point) { this.isGlueable = true; this.state = "unblocked"; this.actType = "use"; super(id, mc, point); }; RedButton.prototype = new Item(); rp = RedButton.prototype; rp.doGlue = function () { this.isGlueable = false; this.isMudable = true; this.startMovie("ani_itemRedButton_itemPlaster"); myWorld.changeState(this, "glued", true); }; rp.doMud = function (item) { this.isMudable = false; this.startMovie("ani_itemRedButton_" + item.id); myWorld.changeState(this, "blocked_" + item.id, true); myWorld.worldData.buttonBlocked = true; }; rp.save_GetData = function () { return({state:this.state, isMudable:this.isMudable, isGlueable:this.isGlueable}); }; delete rp; _global.Glue = function (id, mc, point) { this.actType = "take"; super(id, mc, point); }; Glue.prototype = new Item(); gp = Glue.prototype; gp.doTake = function () { this.actType = "useWith"; }; gp.save_GetData = function () { return({actType:this.actType}); }; delete gp; _global.Bottle = function (id, mc, point) { this.state = "closed"; this.actType = "take"; this.isScrewable = true; this.isPoisable = false; super(id, mc, point); }; Bottle.prototype = new Item(); bp = Bottle.prototype; bp.doTake = function () { this.actType = "useWith"; }; bp.doScrew = function () { this.actType = "useWith"; this.isPoisable = true; this.isScrewable = false; this.startMovie("ani_itemBottle_itemCorkscrew"); myWorld.changeState(this, "open", true); }; bp.doPoison = function () { myWorld.changeState(this, "poisoned", false); myWorld.worldData.poisonedWine = true; this.startMovie("ani_itemBottle_itemPoison"); }; bp.checkAbility = function (target) { if (target.isPoisonable && (myWorld.worldData.poisonedWineTalk)) { target.doPoison(); return(true); } return(false); }; bp.save_GetData = function () { return({actType:this.actType, state:this.state, isPoisable:this.isPoisable, isScrewable:this.isScrewable}); }; delete bp; _global.Banana = function (id, mc, point) { this.actType = "take"; super(id, mc, point); }; Banana.prototype = new Item(); bp = Banana.prototype; bp.doTake = function () { this.actType = "useWith"; }; bp.save_GetData = function () { return({actType:this.actType}); }; delete bp; _global.EntranceUnderground = function (id, mc, point) { this.actType = "goToNope"; super(id, mc, point); }; EntranceUnderground.prototype = new Item(); bp = EntranceUnderground.prototype; bp.doGoToNope = function () { this.startMovie("autoAni_alarm", new Object(), true); }; delete bp; _global.FireSign = function (id, mc, point) { this.actType = "watch"; super(id, mc, point); }; FireSign.prototype = new Item(); cp = FireSign.prototype; cp.doWatch = function () { myWorld.viewedFireSign = true; }; delete cp; _global.Rat = function (id, mc, point) { this.actType = "watch"; super(id, mc, point); }; Rat.prototype = new Item(); rp = Rat.prototype; rp.checkAbility = function (target) { if (target.isRatable) { target.doRat(this); return(true); } return(false); }; delete rp; _global.Fountain = function (id, mc, point) { this.actType = "watch"; super(id, mc, point); }; Fountain.prototype = new Item(); fp = Fountain.prototype; fp.checkAbility = function (target) { if (target.isWetable) { target.doWet(this); return(true); } return(false); }; delete fp; _global.Poison = function (id, mc, point) { this.actType = "take"; this.isMixable = true; super(id, mc, point); }; Poison.prototype = new Item(); pp = Poison.prototype; pp.doMix = function () { this.isMixable = false; this.actType = "useWith"; myWorld.changeState(this, "mixed", true); this.startMovie("ani_itemFlowers_itemMixer"); this.label = LANG[this.id].mixed; }; pp.doTake = function () { this.actType = "useWith"; }; pp.checkAbility = function (target) { if (target.isPoisable) { target.doPoison(); return(true); } return(false); }; pp.save_GetData = function () { return({actType:this.actType, isMixable:this.isMixable, state:this.state}); }; delete fp; function wearBlanket() { myWorld.worldData.wearingBlanket = true; sceneMc.figureWombatBlanket._visible = true; sceneMc.figureWombat._visible = false; myWombat.setMc(sceneMc.figureWombatBlanket, mySceneHideaway, {x:40, y:116, s:87}); myItemBlanket = new Blanket("itemBlanket", sceneMc.figureWombatBlanket); } function notWearBlanket() { myWorld.worldData.wearingBlanket = false; sceneMc.figureWombatBlanket._visible = false; sceneMc.figureWombat._visible = true; var fx = sceneMc.figureWombatBlanket._x; var fy = (sceneMc.figureWombatBlanket._y - 15); var fs = sceneMc.figureWombatBlanket._xscale; myWombat.setMc(sceneMc.figureWombat, mySceneHideaway, {x:fx, y:fy, s:fs}); delete myItemBlanket; } function takeFlowers() { itemFlowers = new Flowers("itemFlowers"); if (!myWorld.save_State) { itemFlowers.newMc(itemFlowers, "itemFlowers"); } } Math.linearTween = function (t, b, c, d) { return(((c * t) / d) + b); }; menu.btnPlay.onRelease = function () { resetGame(); _level0.gotoAndPlay("startGame"); }; menu.btnLoad.onRelease = function () { resetGame(); myWorld.save_LoadGame(); }; menu.btnSave.onRelease = function () { myWorld.save_SaveGame(); }; menu.btnPlayOn.onRelease = function () { if (myHand.scene.name != undefined) { _level0.gotoAndStop(myHand.scene.name); } }; menu.btnIntro.onRelease = function () { _level0.frameNr = new Array("dir_close", "w_renoir", "w_schwenk", "w_close", "ende", "letter"); _level0.gotoAndStop("intro"); }; menu.btnEnd.onRelease = function () { _level0.gotoAndStop("credits"); }; menu.btnInstr.onRelease = function () { _level0.gotoAndStop("instr"); }; btnMenu.onRelease = function () { myDialog.exit(); delete _level0.frameNr; _level0.gotoAndStop("menu"); }; initGame = function () { isInit = true; _global.myHand = new Hand(_level0.ani); _global.myWorld = new World(); _global.myBag = new Bag(mcBag.mcBag, 55, 7); _global.myTooltip = new Tooltip(mc_tooltip, mc_mouse); var f = new TextFormat("Comic Sans MS", 14, 26265, true); _global.myWombat = new Figure(f); format = new Array(); format.select = new TextFormat("Comic Sans MS", 14, 6697830, true); format.hover = new TextFormat("Comic Sans MS", 14, 13421772, true); _global.myDialog = new Dialog(mcDialog, txtMessage, format, 2500); _level0.frameEnd = new Array("w_close", "dir_close", "totale", "fadeOut"); }; resetGame = function () { delete _level0.sceneOffice; _level0.sceneOfficeItems = false; delete _level0.sceneHouseLivingroom; _level0.sceneHouseLivingroomItems = false; delete _level0.sceneKitchen; _level0.sceneKitchenItems = false; delete _level0.sceneStreetNorth; _level0.sceneStreetNorthItems = false; delete _level0.sceneStreetSouth; _level0.sceneStreetSouthItems = false; delete _level0.sceneSubNorth; _level0.sceneSubNorthItems = false; delete _level0.sceneSubSouth; _level0.sceneSubSouthItems = false; delete _level0.sceneTrain; _level0.sceneTrainItems = false; delete _level0.sceneHideawayEntrance; _level0.sceneHideawayEntranceItems = false; delete _level0.sceneUnderground; _level0.sceneUndergroundItems = false; delete _level0.sceneHideaway; _level0.sceneHideawayItems = false; delete _level0.scenePark; _level0.sceneParkItems = false; delete _level0.sceneMuseum; _level0.sceneMuseumItems = false; delete _level0.sceneTrunk; _level0.sceneTrunkItems = false; for (var i in myBag.items) { myBag.items[i].mc.removeMovieClip(); } delete itemStereo; initGame(); }; if (!isInit) { initGame(); } stop();Frame 2play();Frame 3stop(); if (!sceneOffice) { sceneOffice = new Scene("sceneOffice", "000066"); } switch (myHand.scene.name) { case "sceneStreetNorth" : point = {x:50, y:110, s:105}; break; case "sceneTrunk" : point = {x:250, y:95, s:100}; break; default : point = {x:250, y:95, s:100}; } myWombat.setMc(sceneMc.figureWombat, sceneOffice, point); myHand.setScene(sceneOffice); if (!sceneOfficeItems) { sceneOfficeItems = true; itemLetterDirector = new Letter("itemLetterDirector"); if (!myWorld.save_State) { itemLetterDirector.newMc(itemLetterDirector, "itemLetterDirector"); } itemLetterThief = new Letter("itemLetterThief", undefined, {}, ["isZoomable"]); if (!myWorld.save_State) { itemLetterThief.newMc(itemLetterThief, "itemLetterThief"); } objDoorSign = new DefaultObject("objDoorSign", sceneMc.objDoorSign, {x:60, y:100, s:100, d:"left"}, "read"); objPoster = new DefaultObject("objPoster", sceneMc.objPoster, {x:280, y:100, s:100, d:"right"}, "read"); objCupOffice = new DefaultObject("objCupOffice", sceneMc.objCupOffice, {x:110, y:110, s:110, d:"front"}, "watch"); objPhone = new DefaultObject("objPhone", sceneMc.objPhone, {x:180, y:110, s:110, d:"front"}, "use"); objChairOffice = new DefaultObject("objChairOffice", sceneMc.objChairOffice, {x:200, y:110, s:110, d:"front"}, "watch"); objTableOffice = new DefaultObject("objTableOffice", sceneMc.objTableOffice, {x:232, y:117, s:115, d:"left"}, "watch"); itemMagnifier = new Magnifier("itemMagnifier", sceneMc.pencilHolder.itemMagnifier, {x:60, y:110, s:110}); var contentCupboard = new Array("itemDish"); itemCupboard_office = new Cupboard("itemCupboard_office", sceneMc.itemCupboard_office.door, {x:250, y:113, s:110, d:"right"}, contentCupboard); itemDish = new Dish("itemDish", sceneMc.itemCupboard_office.itemDish, {x:250, y:113, s:115, d:"right"}); } itemDoorOffice = new Door("itemDoorToStreet", sceneMc.itemDoorOffice, {x:50, y:110, s:105}, "sceneStreetNorth"); itemTrunk = new Trunk("itemTrunk", sceneMc.itemTrunk, {x:250, y:95, s:100, d:"back"}, "open", "sceneTrunk"); sceneOffice.init(); if ((!myWorld.save_state) && (crimInJail)) { myHand.showText(LANG.sceneOffice.intro); crimInJail = false; }Frame 4function handler(obj) { itemHairpin.newMc(itemHairpin, "itemHairpin"); myWorld.worldData.needKey = false; myDialog.breakDialog(); } stop(); if (!sceneHouseLivingroom) { sceneHouseLivingroom = new Scene("sceneHouseLivingroom", "0F6479"); } switch (myHand.scene.name) { case "sceneStreetSouth" : point = {x:325, y:125, s:120}; break; case "sceneKitchen" : point = {x:290, y:101, s:105}; break; default : point = {x:290, y:101, s:105}; } myWombat.setMc(sceneMc.figureWombat, sceneHouseLivingroom, point); myHand.setScene(sceneHouseLivingroom); if (!sceneHouseLivingroomItems) { sceneHouseLivingroomItems = true; itemHairpin = new DoorKey("itemHairpin"); objPicture = new DefaultObject("objPicture", sceneMc.objPicture, new Array({x:195, y:110, s:100}, {x:200, y:95, s:90, d:"back"}), "watch"); objSofa = new DefaultObject("objSofa", sceneMc.objSofa, {x:20, y:117, s:115, d:"back"}, "watch"); objLamp = new DefaultObject("objLamp", sceneMc.objLamp, new Array({x:195, y:110, s:100}, {x:53, y:125, s:120, d:"left"}), "watch"); itemVase = new Vase("itemVase", sceneMc.itemVase, {x:180, y:105, s:100}); itemStereo = new Stereo("itemStereo", sceneMc.itemStereo, {x:225, y:95, s:95, d:"right"}); itemLavalamp = new Lavalamp("itemLavalamp", sceneMc.itemLavalamp, {x:291, y:95, s:95, d:"right"}); var f = new TextFormat("Comic Sans MS", 14, 12399104, true); persSusi = new Person("persSusi", sceneMc.persSusi, {x:185, y:120, s:100, d:"left"}, f, myDialog, ["isGiftable"]); } itemDoorLivingroom_1 = new Door("itemDoorToStreet", sceneMc.itemEntrance_livingroom, {x:325, y:125, s:120, d:"right"}, "sceneStreetSouth"); itemDoorLivingroom_2 = new Door("itemPassage_livingroom", sceneMc.itemPassage_livingroom, {x:290, y:101, s:105, d:"right"}, "sceneKitchen"); var rand = Math.floor((Math.random() * 3) + 1); sceneMc.persSusi.gotoAndStop(rand); sceneHouseLivingroom.init(); var w = myWombat; var s = persSusi; var d = new Array(); d[0] = {p:w, text:LANG.dialogSusiA.d0, f:[1]}; d[1] = {p:s, text:LANG.dialogSusiA.d1, f:[2]}; d[2] = {p:s, text:LANG.dialogSusiA.d2, f:[3, 4, 5], t:1}; d[3] = {p:w, text:LANG.dialogSusiA.d3, f:[7]}; d[4] = {p:w, text:LANG.dialogSusiA.d4, f:[8]}; d[5] = {p:w, text:LANG.dialogSusiA.d5, f:[6]}; d[6] = {p:s, text:LANG.dialogSusiA.d6}; d[7] = {p:s, text:LANG.dialogSusiA.d7, f:[4, 5], t:1}; d[8] = {p:s, text:LANG.dialogSusiA.d8, f:[9, 5], t:1}; d[9] = {p:w, text:LANG.dialogSusiA.d9, f:[10]}; d[10] = {p:s, text:LANG.dialogSusiA.d10, f:[11]}; d[11] = {p:s, text:LANG.dialogSusiA.d11, f:[12], a:handler}; d[12] = {p:w, text:LANG.dialogSusiA.d12}; var d2 = new Array(); d2[0] = {p:s, text:LANG.dialogSusiB.d0, f:[1, 2, 6], t:1}; d2[1] = {p:w, text:LANG.dialogSusiB.d1, f:[3]}; d2[2] = {p:w, text:LANG.dialogSusiB.d2, f:[4]}; d2[3] = {p:s, text:LANG.dialogSusiB.d3, f:[5]}; d2[4] = {p:s, text:LANG.dialogSusiB.d4, f:[1, 6], t:1}; d2[5] = {p:w, text:LANG.dialogSusiB.d5}; d2[6] = {p:w, text:LANG.dialogSusiB.d6, f:[7]}; d2[7] = {p:s, text:LANG.dialogSusiB.d7}; var d3 = new Array(); d3[0] = {p:w, text:LANG.dialogSusiC.d0, f:[1]}; d3[1] = {p:s, text:LANG.dialogSusiC.d1, f:[2]}; d3[2] = {p:w, text:LANG.dialogSusiC.d2, f:[3]}; d3[3] = {p:s, text:LANG.dialogSusiC.d3}; var d4 = new Array(); d4[0] = {p:s, text:LANG.dialogSusiD.d0, f:[1]}; d4[1] = {p:w, text:LANG.dialogSusiD.d1, f:[2]}; d4[2] = {p:s, text:LANG.dialogSusiD.d2, f:[3]}; d4[3] = {p:s, text:LANG.dialogSusiD.d3, f:[4, 5, 6], t:1}; d4[4] = {p:w, text:LANG.dialogSusiD.d4, f:[7]}; d4[5] = {p:w, text:LANG.dialogSusiD.d5, f:[7]}; d4[6] = {p:w, text:LANG.dialogSusiD.d6, f:[7]}; d4[7] = {p:s, text:LANG.dialogSusiD.d7}; var d5 = new Array(); d5[0] = {p:s, text:LANG.dialogSusiB2.d0, f:[1, 2, 10], t:1}; d5[1] = {p:w, text:LANG.dialogSusiB2.d1, f:[3]}; d5[2] = {p:w, text:LANG.dialogSusiB2.d2, f:[4]}; d5[3] = {p:s, text:LANG.dialogSusiB2.d3, f:[4]}; d5[4] = {p:s, text:LANG.dialogSusiB2.d4, f:[5]}; d5[5] = {p:w, text:LANG.dialogSusiB2.d5}; var d6 = new Array(); d6[0] = {p:s, text:LANG.dialogSusiB2.d0, f:[1, 2, 10], t:1}; d6[1] = {p:w, text:LANG.dialogSusiB2.d1, f:[3]}; d6[2] = {p:w, text:LANG.dialogSusiB2.d2, f:[4]}; d6[3] = {p:s, text:LANG.dialogSusiB3.d3, f:[4]}; d6[4] = {p:s, text:LANG.dialogSusiB2.d4, f:[5]}; d6[5] = {p:w, text:LANG.dialogSusiB2.d5}; var d7 = new Array(); d7[0] = {p:w, text:LANG.dialogSusiD.d8, f:[1]}; d7[1] = {p:s, text:LANG.dialogSusiD.d3, f:[2, 3, 4], t:1}; d7[2] = {p:w, text:LANG.dialogSusiD.d4, f:[5]}; d7[3] = {p:w, text:LANG.dialogSusiD.d5, f:[5]}; d7[4] = {p:w, text:LANG.dialogSusiD.d6, f:[5]}; d7[5] = {p:s, text:LANG.dialogSusiD.d7}; if ((!myWorld.worldData.cultureSmallTalk) && (!myWorld.save_State)) { if (myWorld.worldData.cultureVase) { if (itemDish.actType == "watch") { itemDish.actType = "take"; } myDialog.start(d5, 500); myWorld.worldData.cultureSmallTalk = true; } else if (myWorld.worldData.cultureCup) { if (itemDish.actType == "watch") { itemDish.actType = "take"; } myDialog.start(d6, 500); myWorld.worldData.cultureSmallTalk = true; } } switchDialog = function () { if (myWorld.worldData.needKey) { persSusi.setDialog(d, false); } else if (myWorld.worldData.cultureBad) { if (myWorld.worldData.cultureBadTalk) { persSusi.setDialog(d7, false); } else { persSusi.setDialog(d4, false); myWorld.worldData.cultureBadTalk = true; } } else if (myWorld.worldData.cultureSmall) { persSusi.setDialog(d2, false); } else if (myWorld.worldData.cultureVase && (myWorld.worldData.cultureSmallTalk)) { if (itemDish.actType == "watch") { itemDish.actType = "take"; } persSusi.setDialog(d5, false); } else if (myWorld.worldData.cultureCup && (myWorld.worldData.cultureSmallTalk)) { if (itemDish.actType == "watch") { itemDish.actType = "take"; } persSusi.setDialog(d6, false); } else { persSusi.setDialog(d3, false); } }; switchDialog();Frame 5stop(); if (!sceneKitchen) { sceneKitchen = new Scene("sceneKitchen", "000000"); } myWombat.setMc(sceneMc.figureWombat, sceneKitchen, {x:-10, y:120, s:120}); myHand.setScene(sceneKitchen); if (!sceneKitchenItems) { sceneKitchenItems = true; objTowel = new DefaultObject("objTowel", sceneMc.objTowel, {x:310, y:82, s:105}, "watch"); itemCleaner = new Cleaner("itemCleaner", sceneMc.itemCleaner, {x:300, y:70, s:100}); itemKnife = new Knife("itemKnife", sceneMc.itemKnife, {x:195, y:120, s:120}); itemMixer = new Mixer("itemMixer", sceneMc.itemMixer, {x:140, y:75, s:105, d:"left"}); itemDuster = new Duster("itemDuster", sceneMc.itemDuster, {x:285, y:120, s:120, d:"front"}); itemTap = new Tap("itemTap", sceneMc.itemTap, {x:215, y:82, s:105, d:"back"}); var contentDrawer1 = new Array("itemLighter", "itemBall", "objDiamond"); itemDrawer1 = new Drawer("itemDrawer1", sceneMc.itemDrawer1.itemDrawer_front, {x:110, y:95, s:110, d:"left"}, contentDrawer1); itemLighter = new Lighter("itemLighter", sceneMc.itemDrawer1.itemLighter, {x:110, y:95, s:110, d:"left"}); itemBall = new Ball("itemBall", sceneMc.itemDrawer1.itemBall, {x:110, y:95, s:110, d:"left"}); objDiamond = new DefaultObject("objDiamond", sceneMc.itemDrawer1.objDiamond, {x:110, y:95, s:110, d:"left"}, "watch"); var contentDrawer2 = new Array("itemPipette", "itemWrongKey", "itemCorkscrew"); itemDrawer2 = new Drawer("itemDrawer2", sceneMc.itemDrawer2.itemDrawer_front, {x:110, y:95, s:110, d:"left"}, contentDrawer2); itemPipette = new Pipette("itemPipette", sceneMc.itemDrawer2.itemPipette, {x:110, y:95, s:110, d:"left"}); itemWrongKey = new WrongKey("itemWrongKey", sceneMc.itemDrawer2.itemWrongKey, {x:110, y:95, s:110, d:"left"}); itemCorkscrew = new Corkscrew("itemCorkscrew", sceneMc.itemDrawer2.itemCorkscrew, {x:110, y:95, s:110, d:"left"}); itemCupboardKitchen = new Cupboard("itemCupboard_kitchen", sceneMc.itemCupboard_kitchen.door, {x:165, y:80, s:105, d:"left"}, []); } itemDoorKitchen = new Door("itemDoorKitchen", sceneMc.itemDoorKitchen, {x:-10, y:120, s:120}, "sceneHouseLivingroom"); sceneKitchen.init();Frame 6stop(); if (!sceneStreetNorth) { sceneStreetNorth = new Scene("sceneStreetNorth", "000000"); } switch (myHand.scene.name) { case "sceneOffice" : point = {x:310, y:155, s:25}; break; case "sceneSubNorth" : point = {x:290, y:135, s:20}; break; case "sceneUnderground" : point = {x:225, y:137, s:80}; break; default : point = {x:225, y:137, s:80}; } myWombat.setMc(sceneMc.figureWombat, sceneStreetNorth, point); myHand.setScene(sceneStreetNorth); if (!sceneStreetNorthItems) { sceneStreetNorthItems = true; objTrash = new DefaultObject("objTrash", sceneMc.objTrash, {x:10, y:140, s:100, d:"front"}, "watch"); itemNewspaper = new Newspaper("itemNewspaper", sceneMc.itemNewspaper, {x:260, y:152, s:85}); } itemDoorOffice = new Door("itemDoorOffice", sceneMc.itemDoorOffice, {x:310, y:155, s:25}, "sceneOffice"); itemCanalNorth = new Door("itemCanalNorth", sceneMc.itemCanalNorth, {x:225, y:137, s:80}, "sceneUnderground"); itemSubNorth = new Door("itemUndergroundSign", sceneMc.itemSubNorth, {x:290, y:135, s:20}, "sceneSubNorth"); sceneStreetNorth.init();Frame 7stop(); if (!sceneStreetSouth) { sceneStreetSouth = new Scene("sceneStreetSouth", "000000"); } switch (myHand.scene.name) { case "scenePark" : point = {x:160, y:135, s:10}; break; case "sceneSubSouth" : point = {x:248, y:138, s:60}; break; case "sceneHouseLivingroom" : point = {x:45, y:155, s:50}; break; case "sceneHideaway" : point = {x:248, y:138, s:60}; break; default : point = {x:248, y:138, s:60}; } myWombat.setMc(sceneMc.figureWombat, sceneStreetSouth, point); myHand.setScene(sceneStreetSouth); if (!sceneStreetSouthItems) { sceneStreetSouthItems = true; objCar = new DefaultObject("objCar", sceneMc.objCar, {x:175, y:145, s:12}, "watch"); objNote = new DefaultObject("objNote", sceneMc.objNote, {x:305, y:170, s:95}, "read"); itemCake = new Cake("itemCake", sceneMc.itemCake, {x:56, y:163, s:70, d:"front"}); itemCup = new Cup("itemCup", sceneMc.itemCup, {x:110, y:180, s:80}); objCanal = new DefaultObject("objCanal", sceneMc.objCanal, {x:248, y:138, s:60}, "watch"); } itemDoorHouse = new Door("itemDoorHouse", sceneMc.itemDoorHouse, {x:45, y:160, s:50}, "sceneHouseLivingroom"); itemSubSouth = new Door("itemUndergroundSign", sceneMc.itemSubSouth, {x:248, y:138, s:60}, "sceneSubSouth"); itemPark = new Door("itemPark", sceneMc.itemPark, {x:160, y:135, s:10}, "scenePark"); sceneStreetSouth.init();Frame 8stop(); if (!sceneSubSouth) { sceneSubSouth = new Scene("sceneSubSouth", "5F1101"); } switch (myHand.scene.name) { case "sceneStreetSouth" : point = {x:220, y:50, s:35}; break; case "sceneTrain" : point = {x:310, y:85, s:35}; break; case "sceneHideawayEntrance" : point = {x:117, y:85, s:35}; break; default : point = {x:117, y:85, s:35}; } myWombat.setMc(sceneMc.figureWombat, sceneSubSouth, point); myHand.setScene(sceneSubSouth); if (!sceneSubSouthItems) { sceneSubSouthItems = true; itemEntranceUnderground = new EntranceUnderground("itemEntranceUnderground", sceneMc.itemEntranceUnderground, {x:120, y:60, s:33}); objCamera2 = new DefaultObject("objCamera2", sceneMc.objCamera, {x:130, y:60, s:38, d:"left"}, "watch"); objChairs2 = new DefaultObject("objChairs", sceneMc.objChairs, {x:117, y:100, s:60, d:"left"}, "watch"); objSignSouth = new DefaultObject("objSign_south", sceneMc.objSign_south, {x:150, y:100, s:80, d:"right"}, "read"); objGarbage_south = new DefaultObject("objGarbage_south", sceneMc.objGarbage_south, {x:150, y:100, s:80, d:"front"}, "watch"); } itemStairway = new Door("itemStairway", sceneMc.itemStairway, {x:220, y:60, s:32}, "sceneStreetSouth"); itemSubDoor = new Door("itemSubDoor", sceneMc.train.itemSubDoor, {x:310, y:85, s:38}, "sceneTrain"); sceneSubSouth.init();Frame 9stop(); if (!sceneSubNorth) { sceneSubNorth = new Scene("sceneSubNorth", "5F1101"); } switch (myHand.scene.name) { case "sceneStreetNorth" : point = {x:220, y:50, s:35}; break; case "sceneTrain" : point = {x:310, y:85, s:35}; break; case "sceneHideawayEntrance" : point = {x:117, y:85, s:35}; break; default : point = {x:310, y:85, s:35}; } myWombat.setMc(sceneMc.figureWombat, sceneSubNorth, point); myHand.setScene(sceneSubNorth); if (!sceneSubNorthItems) { sceneSubNorthItems = true; objCamera = new DefaultObject("objCamera", sceneMc.objCamera, {x:280, y:85, s:35, d:"right"}, "watch"); objChairs1 = new DefaultObject("objChairs", sceneMc.objChairs, {x:117, y:100, s:60, d:"left"}, "watch"); itemBanana = new Banana("itemBanana", sceneMc.itemBanana, new Array({x:150, y:100, s:80}, {x:105, y:120, s:90, d:"front"})); objSign_north = new DefaultObject("objSign_north", sceneMc.objSign_north, {x:150, y:100, s:80, d:"right"}, "read"); objGarbage_north = new DefaultObject("objGarbage_north", sceneMc.objGarbage_north, {x:150, y:100, s:80, d:"front"}, "watch"); itemEntranceUnderground = new EntranceUnderground("itemEntranceUnderground", sceneMc.itemEntranceUnderground, {x:120, y:60, s:33}); } itemStairway = new Door("itemStairway", sceneMc.itemStairway, {x:220, y:50, s:33}, "sceneStreetNorth"); itemSubDoor = new Door("itemSubDoor", sceneMc.train.itemSubDoor, {x:310, y:85, s:38}, "sceneTrain"); sceneSubNorth.init();Frame 10function handler(item) { if (breaker) { breaker = false; return(undefined); } clearInterval(iid); if (item) { var il = item.id; var al = actItem.id; if (((al == "itemNewspaper") && (il == "itemLighter")) || ((al == "itemLighter") && (il == "itemNewspaper"))) { breaker = true; iid2 = setInterval(doAction, 2000); } actItem = item; } else if (!myWorld.save_State) { iid = setInterval(moveTrain, 3000); } } function moveTrain() { clearInterval(iid); clearInterval(iid2); clearInterval(iid3); if (!myWorld.save_State) { gotoAndStop(trainDir); } } function doAction() { clearInterval(iid); clearInterval(iid2); clearInterval(iid3); obj = new Object(); myWorld.startMovieBetween("autoAni_fire", obj, true); iid3 = setInterval(doAction2, 1000); } function doAction2() { clearInterval(iid); clearInterval(iid2); clearInterval(iid3); sceneMc.objFg.gotoAndPlay("stopTrain"); sceneMc.objBg.gotoAndPlay("stopTrain"); sceneMc.objTrainMask.gotoAndPlay("stopTrain"); itemWindow1 = new Door("itemWindow", sceneMc.itemWindow1, {x:40, y:70, s:100}, "sceneHideawayEntrance"); itemWindow2 = new Door("itemWindow", sceneMc.itemWindow2, {x:200, y:70, s:100}, "sceneHideawayEntrance"); } stop(); actItem = undefined; switch (myHand.scene.name) { case "sceneSubSouth" : trainDir = "sceneSubNorth"; break; case "sceneSubNorth" : trainDir = "sceneSubSouth"; } if (!sceneTrain) { sceneTrain = new Scene("sceneTrain", "FFFF99", handler); } myWombat.setMc(sceneMc.figureWombat, sceneTrain, {x:215, y:70, s:100}); myHand.setScene(sceneTrain); if (!sceneTrainItems) { sceneTrainItems = true; objFireSign = new FireSign("objFireSign", sceneMc.objFireSign, {x:71, y:70, s:100, d:"right"}); objPole = new DefaultObject("objPole", sceneMc.objPole, {x:215, y:70, s:100}, "watch"); } if (!myWorld.save_State) { iid = setInterval(moveTrain, 4500); } sceneTrain.init();Frame 11stop(); if (!sceneHideawayEntrance) { sceneHideawayEntrance = new Scene("sceneHideawayEntrance", "A7CAD1"); } delete itemWindow1; delete itemWindow2; switch (myHand.scene.name) { case "sceneHideaway" : point = {x:60, y:125, s:90}; break; case "sceneTrain" : point = {x:310, y:125, s:90}; break; default : point = {x:310, y:125, s:90}; } myWombat.setMc(sceneMc.figureWombat, sceneHideawayEntrance, point); myHand.setScene(sceneHideawayEntrance); if (!sceneHideawayEntranceItems) { sceneHideawayEntranceItems = true; objWood = new DefaultObject("objWood", sceneMc.objWood, {x:160, y:125, s:90}, "watch"); } itemGuideSouth = new Door("itemGuideSouth", sceneMc.itemGuideSouth, {x:-10, y:125, s:90}, "sceneSubSouth"); itemGuideNorth = new Door("itemGuideNorth", sceneMc.itemGuideNorth, {x:370, y:125, s:90}, "sceneSubNorth"); itemDoorHideaway = new Door("itemDoorHideaway", sceneMc.itemDoorHideaway, {x:30, y:125, s:90, d:"back"}, "sceneHideaway", "itemHairpin"); sceneHideawayEntrance.init();Frame 12stop(); if (!sceneUnderground) { sceneUnderground = new Scene("sceneUnderground", "A7CAD1"); } myWombat.setMc(sceneMc.figureWombat, sceneUnderground, {x:200, y:108, s:100}); myHand.setScene(sceneUnderground); if (!sceneUndergroundItems) { sceneUndergroundItems = true; itamRat1 = new Rat("itemRat1", sceneMc.itemRat1, {x:115, y:100, s:100}); itemRat2 = new Rat("itemRat2", sceneMc.itemRat2, {x:200, y:115, s:105}); } itemLadder_underground = new Door("itemLadder_underground", sceneMc.itemLadder_underground, {x:155, y:100, s:90}, "sceneStreetNorth"); sceneUnderground.init(); if (!myWorld.save_State) { myHand.showText(LANG.sceneUnderground.intro); }Frame 13function handler(obj) { myWorld.worldData.poisonedWineTalk = true; myDialog.breakDialog(); } stop(); if (!sceneHideaway) { sceneHideaway = new Scene("sceneHideaway", "000000"); } sceneMc.figureWombatBlanket._visible = false; myWombat.setMc(sceneMc.figureWombat, sceneHideaway, {x:40, y:116, s:87}); myHand.setScene(sceneHideaway); if (!sceneHideawayItems) { sceneHideawayItems = true; itemGlue = new Glue("itemGlue", sceneMc.itemGlue, new Array({x:180, y:108, s:100}, {x:265, y:135, s:108, d:"front"})); itemWineglas = new Wineglas("itemWineglas", sceneMc.itemWineglas, new Array({x:180, y:108, s:100}, {x:80, y:135, s:108, d:"front"})); itemRedButton = new RedButton("itemRedButton", sceneMc.itemRedButton, new Array({x:180, y:108, s:100}, {x:340, y:125, s:110, d:"front"})); objCriminalPic1 = new DefaultObject("objCriminalPic1", sceneMc.objCriminalPic1, {x:185, y:90, s:60, d:"right"}, "watch"); objCriminalPic2 = new DefaultObject("objCriminalPic2", sceneMc.objCriminalPic2, {x:265, y:95, s:68, d:"right"}, "watch"); objCriminalPic3 = new DefaultObject("objCriminalPic3", sceneMc.objCriminalPic3, {x:232, y:100, s:65, d:"right"}, "watch"); objArmchair = new DefaultObject("objArmchair", sceneMc.objArmchair, new Array({x:180, y:108, s:100}, {x:80, y:135, s:108, d:"right"}), "watch"); objTableHideaway = new DefaultObject("objTableHideaway", sceneMc.objTableHideaway, new Array({x:180, y:108, s:100}, {x:305, y:135, s:115, d:"left"}), "watch"); objPillar = new DefaultObject("objPillar", sceneMc.objPillar, new Array({x:180, y:108, s:100}, {x:5, y:140, s:120, d:"front"}), "watch"); var f = new TextFormat("Comic Sans MS", 14, 17408, true); persCriminal = new Person("persCriminal", sceneMc.persCriminal, new Array({x:180, y:108, s:100}, {x:310, y:108, s:100}, {x:340, y:125, s:110, d:"left"}), f, myDialog, ["isPoisonable"]); itemBottle = new Bottle("itemBottle", sceneMc.itemBottle, new Array({x:180, y:108, s:100}, {x:80, y:130, s:108, d:"front"})); } itemLadderHideaway = new Door("itemLadderHideaway", sceneMc.itemLadderHideaway, {x:134, y:85, s:55}, "sceneStreetSouth"); itemDoorHideaway = new Door("itemDoorToStreet", sceneMc.itemDoorHideaway, {x:40, y:95, s:87}, "sceneHideawayEntrance"); sceneHideaway.init(); if ((!myWorld.worldData.buttonBlocked) && (!myWorld.save_State)) { myWorld.startMovieBetween("autoAni_blanket"); sceneMc.persCriminal._visible = false; } if (myWorld.worldData.caughtCrim) { sceneMc.persCriminal._visible = false; } var w = myWombat; var c = persCriminal; var d1 = new Array(); d1[0] = {p:w, text:LANG.dialogCriminalA.d0, f:[1]}; d1[1] = {p:w, text:LANG.dialogCriminalA.d1, f:[2]}; d1[2] = {p:c, text:LANG.dialogCriminalA.d2, f:[3, 4], t:1}; d1[3] = {p:w, text:LANG.dialogCriminalA.d3, f:[5]}; d1[4] = {p:w, text:LANG.dialogCriminalA.d4, f:[5]}; d1[5] = {p:c, text:LANG.dialogCriminalA.d5, f:[6]}; d1[6] = {p:w, text:LANG.dialogCriminalA.d6, f:[7]}; d1[7] = {p:c, text:LANG.dialogCriminalA.d7}; var d2 = new Array(); d2[0] = {p:w, text:LANG.dialogCriminalB.d0, f:[1, 2], t:1}; d2[1] = {p:w, text:LANG.dialogCriminalB.d1, f:[3]}; d2[2] = {p:w, text:LANG.dialogCriminalB.d2, f:[4]}; d2[3] = {p:c, text:LANG.dialogCriminalB.d3, f:[9, 2], t:1}; d2[4] = {p:c, text:LANG.dialogCriminalB.d4, f:[5], a:handler}; d2[5] = {p:w, text:LANG.dialogCriminalB.d9}; d2[6] = {p:c, text:LANG.dialogCriminalB.d6, f:[7, 2], t:1}; d2[7] = {p:w, text:LANG.dialogCriminalB.d7}; d2[8] = {p:c, text:LANG.dialogCriminalB.d8}; d2[9] = {p:w, text:LANG.dialogCriminalB.d5, f:[6]}; if (myWorld.worldData.poisonedWine) { persCriminal.setDialog(d2, false); } else { persCriminal.setDialog(d1, false); }Frame 14stop(); if (!scenePark) { scenePark = new Scene("scenePark", "000000"); } switch (myHand.scene.name) { case "sceneStreetSouth" : point = {x:65, y:105, s:35}; break; case "sceneMuseum" : point = {x:340, y:120, s:32}; break; default : point = {x:65, y:105, s:35}; } myWombat.setMc(sceneMc.figureWombat, scenePark, point); myHand.setScene(scenePark); if (!sceneParkItems) { sceneParkItems = true; itemFountain = new Fountain("itemFountain", sceneMc.itemFountain.water, {x:70, y:70, s:90, d:"front"}); objStatue = new DefaultObject("objStatue", sceneMc.itemFountain.statue, {x:70, y:70, s:90, d:"front"}, "watch"); objFlowersRed2 = new DefaultObject("objFlowersRed", sceneMc.objFlowers_red2, new Array({x:65, y:105, s:35}, {x:40, y:96, s:60, d:"front"}), "watch"); objFlowersRed3 = new DefaultObject("objFlowersRed", sceneMc.objFlowers_red3, new Array({x:65, y:105, s:35}, {x:40, y:96, s:60, d:"front"}), "watch"); objFlowersBlue1 = new DefaultObject("objFlowersBlue", sceneMc.objFlowers_blue1, new Array({x:275, y:75, s:90}, {x:275, y:93, s:90, d:"left"}), "watch"); objFlowersBlue2 = new DefaultObject("objFlowersBlue", sceneMc.objFlowers_blue2, new Array({x:275, y:75, s:90}, {x:275, y:93, s:90, d:"left"}), "watch"); itemPoison = new Poison("itemPoison", sceneMc.itemPoison, {x:275, y:85, s:95, d:"front"}, "take"); } itemMuseum = new Door("itemMuseum", sceneMc.itemMuseum, {x:340, y:110, s:30}, "sceneMuseum"); itemGuideCity = new Door("itemGuideCity", sceneMc.itemGuideCity, {x:65, y:105, s:35}, "sceneStreetSouth"); scenePark.init(); if (myWorld.worldData.pipetteFilled && (!myWorld.save_State)) { myWorld.changeState(itemPipette, "empty", true); myWorld.worldData.pipetteFilled = false; myHand.showText(LANG.scenePark.intro); }Frame 15stop(); if (!sceneMuseum) { sceneMuseum = new Scene("sceneMuseum", "000000"); } myWombat.setMc(sceneMc.figureWombat, sceneMuseum, {x:280, y:120, s:95}); myHand.setScene(sceneMuseum); if (!sceneMuseumItems) { sceneMuseumItems = true; itemBench_museum = new Bench_museum("itemBench_museum", sceneMc.itemBench_museum, {x:50, y:140, s:108, d:"front"}); itemPlugSocket = new PlugSocket("itemPlugSocket", sceneMc.itemPlugSocket, {x:50, y:110, s:90, d:"left"}); itemPic1 = new Picture("itemPic1", sceneMc.itemPic1, {x:27, y:110, s:92, d:"left"}); itemPic2 = new Picture("itemPic2", sceneMc.itemPic2, {x:103, y:97, s:85, d:"left"}, ["isZoomable"]); itemPic3 = new Picture("itemPic3", sceneMc.itemPic3, {x:175, y:95, s:75, d:"left"}, ["isZoomable"]); itemPic4 = new Picture("itemPic4", sceneMc.itemPic4, {x:243, y:100, s:65, d:"left"}); itemPic5 = new Picture("itemPic5", sceneMc.itemPic5, {x:265, y:96, s:60, d:"right"}, ["isZoomable"]); itemPic6 = new Picture("itemPic6", sceneMc.itemPic6, {x:305, y:75, s:80, d:"right"}, ["isZoomable"]); objChairMuseum = new DefaultObject("objChairMuseum", sceneMc.objChairMuseum, {x:270, y:120, s:108, d:"right"}, "watch"); var f = new TextFormat("Comic Sans MS", 14, 3381504, true); persDirector = new Person("persDirector", sceneMc.persDirector, {x:150, y:132, s:108, d:"right"}, f, myDialog); } itemGuideExit = new Door("itemGuideExit", sceneMc.itemGuideExit, {x:360, y:63, s:90}, "scenePark"); var w = myWombat; var d = persDirector; var d3 = new Array(); d3[0] = {p:d, text:LANG.dialogDirector.d0, f:[1, 2, 3], t:1}; d3[1] = {p:w, text:LANG.dialogDirector.d1, f:[4]}; d3[2] = {p:w, text:LANG.dialogDirector.d2, f:[5]}; d3[3] = {p:w, text:LANG.dialogDirector.d3, f:[6]}; d3[4] = {p:d, text:LANG.dialogDirector.d4, f:[2, 3, 7], t:1}; d3[5] = {p:d, text:LANG.dialogDirector.d5}; d3[6] = {p:d, text:LANG.dialogDirector.d6, f:[13, 14], t:1}; d3[7] = {p:w, text:LANG.dialogDirector.d7, f:[8]}; d3[8] = {p:d, text:LANG.dialogDirector.d8, f:[9]}; d3[9] = {p:d, text:LANG.dialogDirector.d9, f:[10]}; d3[10] = {p:d, text:LANG.dialogDirector.d10, f:[11]}; d3[11] = {p:w, text:LANG.dialogDirector.d11, f:[12]}; d3[12] = {p:d, text:LANG.dialogDirector.d12}; d3[13] = {p:w, text:LANG.dialogDirector.d13, f:[15]}; d3[14] = {p:w, text:LANG.dialogDirector.d14, f:[5]}; d3[15] = {p:d, text:LANG.dialogDirector.d15, f:[16]}; d3[16] = {p:w, text:LANG.dialogDirector.d16}; persDirector.setDialog(d3, false); sceneMuseum.init(); if (myWorld.worldData.savedPics) { sceneMc.itemPic2.bact._alpha = 0; sceneMc.itemPic3.bact._alpha = 0; sceneMc.itemPic5.bact._alpha = 0; sceneMc.itemPic6.bact._alpha = 0; }Frame 16stop(); if (!sceneTrunk) { sceneTrunk = new Scene("sceneTrunk", "FFFF99"); } myWombat.setMc(sceneMc.figureWombat, sceneTrunk, {x:-300, y:0, s:10}); myHand.setScene(sceneTrunk); if (!sceneTrunkItems) { sceneTrunkItems = true; itemCd1 = new Cd("itemCd1", sceneMc.itemCd1, {x:-300, y:0, s:10}); itemCd2 = new Cd("itemCd2", sceneMc.itemCd2, {x:-300, y:0, s:10}); itemCherries = new Cherries("itemCherries", sceneMc.itemCherries, {x:-300, y:0, s:10}); itemPlaster = new Plaster("itemPlaster", sceneMc.itemPlaster, {x:-300, y:0, s:10}); } itemTrunk = new Trunk("itemTrunkOpen", sceneMc.itemTrunkOpen, {x:-300, y:0, s:10}, "close", "sceneOffice"); sceneTrunk.init(); if (!myWorld.save_State) { myHand.showText(LANG.sceneTrunk.intro); }Frame 17function handler1() { x = frameNr.shift(); introMc.gotoAndPlay(x); myDialog.breakDialog(); } function handler2() { iid = setInterval(stopIntro, 1500); } function stopIntro() { clearInterval(iid); gotoAndStop (1); } stop(); startIntroDialog = function (dialog) { myDialog.start(dialog, 750); }; myWorld.blockGame(1); var tfD = new TextFormat("Comic Sans MS", 14, 3381504, true); var tfW = new TextFormat("Comic Sans MS", 14, 26265, true); persDirector = new Person("persDirector", introMc.persDirector, {}, tfD, myDialog); persWombat = new Person("persWombat", introMc.persWombat, {}, tfW, myDialog); var w = persWombat; var d = persDirector; var d_intro1 = new Array(); d_intro1[0] = {p:d, text:LANG.dialogIntro1.d0, f:[1]}; d_intro1[1] = {p:w, text:LANG.dialogIntro1.d1, f:[2], a:handler1}; d_intro1[2] = {p:d, text:LANG.dialogIntro1.d2, f:[3], a:handler1}; d_intro1[3] = {p:w, text:LANG.dialogIntro1.d3, f:[4]}; d_intro1[4] = {p:d, text:LANG.dialogIntro1.d4, f:[5], a:handler1}; d_intro1[5] = {p:d, text:LANG.dialogIntro1.d5, f:[6], a:handler1}; d_intro1[6] = {p:w, text:LANG.dialogIntro1.d6, f:[7]}; d_intro1[7] = {p:w, text:LANG.dialogIntro1.d7, f:[8], a:handler1}; d_intro1[8] = {p:d, text:LANG.dialogIntro1.d8, f:[9]}; d_intro1[9] = {p:d, text:LANG.dialogIntro1.d9, f:[10]}; d_intro1[10] = {p:w, text:LANG.dialogIntro1.d10, f:[11]}; d_intro1[11] = {p:d, text:LANG.dialogIntro1.d11, f:[12], a:handler1}; d_intro1[12] = {p:s, text:LANG.dialogIntro1.d12}; var d_intro2 = new Array(); d_intro2[0] = {p:w, text:LANG.dialogIntro2.d0, f:[1]}; d_intro2[1] = {p:d, text:LANG.dialogIntro2.d1, f:[2]}; d_intro2[2] = {p:d, text:LANG.dialogIntro2.d2, f:[3]}; d_intro2[3] = {p:d, text:LANG.dialogIntro2.d3, f:[4]}; d_intro2[4] = {p:w, text:LANG.dialogIntro2.d4, f:[5], a:handler2}; d_intro2[5] = {p:s, text:LANG.dialogIntro1.d12};Frame 18function handler1() { x = frameEnd.shift(); endMc.gotoAndPlay(x); myDialog.breakDialog(); } stop(); startEndDialog = function () { myDialog.start(d_ende, 750); }; myWorld.blockGame(1); var tfD = new TextFormat("Comic Sans MS", 14, 3381504, true); var tfW = new TextFormat("Comic Sans MS", 14, 26265, true); persDirector = new Person("persDirector", endMc.persDirector, {}, tfD, myDialog); persWombat = new Person("persWombat", endMc.persWombat, {}, tfW, myDialog); var w = persWombat; var d = persDirector; var d_ende = new Array(); d_ende[0] = {p:d, text:LANG.dialogEnde.d0, f:[1], a:handler1}; d_ende[1] = {p:w, text:LANG.dialogEnde.d1, f:[2], a:handler1}; d_ende[2] = {p:d, text:LANG.dialogEnde.d2, f:[3]}; d_ende[3] = {p:d, text:LANG.dialogEnde.d3, f:[4], a:handler1}; d_ende[4] = {p:w, text:LANG.dialogEnde.d4, f:[5], a:handler1}; d_ende[5] = {p:s, text:LANG.dialogIntro1.d12};Frame 19stop();Frame 20stop();Symbol 16 MovieClip Frame 1stop();Symbol 16 MovieClip Frame 2play();Symbol 16 MovieClip Frame 8gotoAndPlay (2);Symbol 29 MovieClip [autoAni_jail] Frame 1play();Symbol 29 MovieClip [autoAni_jail] Frame 55stop(); if (myWorld.worldData.savedPics) { _level0.gotoAndStop("end"); } else { _level0.gotoAndStop("sceneOffice"); _level0.crimInJail = true; } myWorld.stopMovieBetween();Symbol 35 MovieClip [itemBottle] Frame 1stop();Symbol 35 MovieClip [itemBottle] Frame 2stop();Symbol 35 MovieClip [itemBottle] Frame 3stop();Symbol 49 MovieClip [ani_itemBottle_persCriminal] Frame 1play();Symbol 49 MovieClip [ani_itemBottle_persCriminal] Frame 38_level0.sceneMc.persCriminal._visible = false;Symbol 49 MovieClip [ani_itemBottle_persCriminal] Frame 42criminal.head.eye1.gotoAndPlay("sleep"); criminal.head.eye2.gotoAndPlay("sleep"); criminal.head._rotation = 2; criminal.head._x = criminal.head._x + 1; criminal.head._y = criminal.head._y + 1;Symbol 49 MovieClip [ani_itemBottle_persCriminal] Frame 45criminal.head._rotation = 3;Symbol 49 MovieClip [ani_itemBottle_persCriminal] Frame 48criminal.head._rotation = 4;Symbol 49 MovieClip [ani_itemBottle_persCriminal] Frame 51criminal.head.eye1.gotoAndPlay("sleep"); criminal.head.eye2.gotoAndPlay("sleep"); criminal.head._rotation = 5; criminal.head._x = criminal.head._x + 1; criminal.head._y = criminal.head._y + 1;Symbol 49 MovieClip [ani_itemBottle_persCriminal] Frame 53criminal.head._rotation = 6;Symbol 49 MovieClip [ani_itemBottle_persCriminal] Frame 55criminal.head._rotation = 7; criminal.head._x = criminal.head._x + 1;Symbol 49 MovieClip [ani_itemBottle_persCriminal] Frame 57criminal.head._rotation = 9;Symbol 49 MovieClip [ani_itemBottle_persCriminal] Frame 59criminal.head.eye1.gotoAndPlay("sleep"); criminal.head.eye2.gotoAndPlay("sleep"); criminal.head._rotation = 11; criminal.head._x = criminal.head._x + 1; criminal.head._y = criminal.head._y + 1;Symbol 49 MovieClip [ani_itemBottle_persCriminal] Frame 60criminal.head._rotation = 13;Symbol 49 MovieClip [ani_itemBottle_persCriminal] Frame 61criminal.head._rotation = 14; criminal.head._x = criminal.head._x + 1; criminal.head._y = criminal.head._y + 1;Symbol 49 MovieClip [ani_itemBottle_persCriminal] Frame 62criminal.head._rotation = 16;Symbol 49 MovieClip [ani_itemBottle_persCriminal] Frame 63criminal.head._rotation = 18;Symbol 49 MovieClip [ani_itemBottle_persCriminal] Frame 64criminal.head.eye1.gotoAndStop("sleep"); criminal.head.eye2.gotoAndStop("sleep"); criminal.head._rotation = 20; criminal.head._x = criminal.head._x + 1; criminal.head._y = criminal.head._y + 1;Symbol 49 MovieClip [ani_itemBottle_persCriminal] Frame 86stop(); myWorld.startMovieBetween("autoAni_jail");Symbol 90 MovieClip Frame 1stop();Symbol 90 MovieClip Frame 2play();Symbol 90 MovieClip Frame 8gotoAndPlay (2);Symbol 99 MovieClip Frame 1stop();Symbol 99 MovieClip Frame 2play();Symbol 99 MovieClip Frame 18gotoAndPlay (2);Symbol 100 MovieClip [autoAni_blanket] Frame 1play(); t = LANG.autoAni_blanket.crim;Symbol 100 MovieClip [autoAni_blanket] Frame 39t = LANG.autoAni_blanket.wombat;Symbol 100 MovieClip [autoAni_blanket] Frame 56stop(); _root.wearBlanket(); myWorld.stopMovieBetween();Symbol 103 MovieClip [autoAni_music] Frame 1if ((place == "inMuseum") || (place == "plugged")) { this._x = -15; this._y = 250; }Symbol 103 MovieClip [autoAni_music] Frame 27stop(); if ((place == "inMuseum") || (place == "plugged")) { myWorld.startMovieBetween("autoAni_pictures"); } object.stopMovie();Symbol 119 MovieClip [autoAni_fire] Frame 36gotoAndPlay (15);Symbol 125 MovieClip [ani_itemBottle_itemCorkscrew] Frame 1play();Symbol 125 MovieClip [ani_itemBottle_itemCorkscrew] Frame 35stop(); object.stopMovie();Symbol 130 MovieClip Frame 1gotoAndPlay(Math.round((Math.random() * 15) + 2));Symbol 130 MovieClip Frame 2play();Symbol 130 MovieClip Frame 21gotoAndPlay (2);Symbol 143 MovieClip [ani_itemRat_itemBall] Frame 1rat.gotoAndStop(2);Symbol 143 MovieClip [ani_itemRat_itemBall] Frame 9rat.gotoAndStop(15);Symbol 143 MovieClip [ani_itemRat_itemBall] Frame 14rat.gotoAndStop(2);Symbol 143 MovieClip [ani_itemRat_itemBall] Frame 50stop(); object.stopMovie();Symbol 157 MovieClip [ani_itemBottle_itemPoison] Frame 27stop(); object.stopMovie();Symbol 160 MovieClip [itemWineglas] Frame 1stop();Symbol 161 MovieClip [ani_itemWineglas] Frame 10glas.gotoAndStop(2); glas._y = 40; glas._x = 0; glas._rotation = 0;Symbol 161 MovieClip [ani_itemWineglas] Frame 16stop(); object.stopMovie();Symbol 176 MovieClip [ani_itemDish_itemVase] Frame 25stop(); object.stopMovie();Symbol 181 MovieClip [itemFlowers] Frame 1stop();Symbol 181 MovieClip [itemFlowers] Frame 2stop();Symbol 192 MovieClip [ani_itemFlowers_itemMixer] Frame 15stop(); object.stopMovie();Symbol 195 MovieClip [ani_itemVase] Frame 23stop(); object.stopMovie();Symbol 211 MovieClip [ani_itemCup] Frame 23stop(); object.stopMovie();Symbol 219 MovieClip [ani_itemDish_itemCup] Frame 20stop(); object.stopMovie();Symbol 227 MovieClip [ani_itemStereo_itemPlug] Frame 20stop(); object.stopMovie();Symbol 243 MovieClip Frame 1stop();Symbol 243 MovieClip Frame 2stop();Symbol 249 MovieClip [ani_itemStereo_itemCD] Frame 1if (name == "itemCd1") { h1._visible = true; h2._visible = false; cd.gotoAndStop(1); } else { h2._visible = true; h1._visible = false; cd.gotoAndStop(2); }Symbol 249 MovieClip [ani_itemStereo_itemCD] Frame 23stop(); myWorld.startMovieBetween("autoAni_music", {place:place}, true); object.stopMovie();Symbol 258 MovieClip [ani_itemDish_itemCake] Frame 1myHand.txtMessage.text = "Hm, hoffentlich funktioniert das...";Symbol 258 MovieClip [ani_itemDish_itemCake] Frame 19stop(); object.stopMovie();Symbol 273 MovieClip [ani_itemVase_itemPipette] Frame 24stop(); object.stopMovie();Symbol 283 MovieClip [ani_itemCup_itemPipette] Frame 24stop(); object.stopMovie();Symbol 338 MovieClip [ani_itemLetterThief_itemMagnifier] Frame 27stop(); object.stopMovie();Symbol 341 MovieClip [ani_itemLetterDirector] Frame 23stop(); object.stopMovie();Symbol 347 MovieClip Frame 1stop();Symbol 347 MovieClip Frame 2stop();Symbol 347 MovieClip Frame 3stop();Symbol 347 MovieClip Frame 4stop();Symbol 353 MovieClip [ani_itemRedButton_itemPlaster] Frame 14stop(); object.stopMovie();Symbol 360 MovieClip Frame 1stop();Symbol 360 MovieClip Frame 2stop();Symbol 368 MovieClip [ani_itemBlanket_cut] Frame 1cutItem.gotoAndStop(cutter);Symbol 368 MovieClip [ani_itemBlanket_cut] Frame 20stop(); _root.notWearBlanket(); object.stopMovie();Symbol 378 MovieClip Frame 1stop();Symbol 378 MovieClip Frame 2stop();Symbol 378 MovieClip Frame 3stop();Symbol 384 MovieClip [ani_itemDish_itemMagnifier] Frame 1switch (state) { case "wCultureFed" : bact1.bactFace.gotoAndStop("angry"); bact2.bactFace.gotoAndStop("angry"); bact3.bactFace.gotoAndStop("angry"); break; case "wCultureBig" : bact1.bactFace.gotoAndStop("normal"); bact2.bactFace.gotoAndStop("normal"); bact3.bactFace.gotoAndStop("normal"); break; case "wCultureHappy" : bact1.bactFace.gotoAndStop("happy"); bact2.bactFace.gotoAndStop("happy"); bact3.bactFace.gotoAndStop("happy"); }Instance of Symbol 379 MovieClip "bact1" in Symbol 384 MovieClip [ani_itemDish_itemMagnifier] Frame 1onClipEvent (load) { x = 1; i = 1; } onClipEvent (enterFrame) { i++; _rotation = (_rotation + x); if (i == 20) { x = x * -1; i = 1; } }Instance of Symbol 381 MovieClip "bact2" in Symbol 384 MovieClip [ani_itemDish_itemMagnifier] Frame 1onClipEvent (load) { x = -0.8; i = 1; } onClipEvent (enterFrame) { i++; _rotation = (_rotation + x); if (i == 25) { x = x * -1; i = 1; } }Instance of Symbol 383 MovieClip "bact3" in Symbol 384 MovieClip [ani_itemDish_itemMagnifier] Frame 1onClipEvent (load) { x = 0.5; i = 1; } onClipEvent (enterFrame) { i++; _rotation = (_rotation + x); if (i == 13) { x = x * -1; i = 1; } }Symbol 384 MovieClip [ani_itemDish_itemMagnifier] Frame 11if (state == "wCultureHappy") { myHand.txtMessage.text = "Juhu, es funktioniert! So m\u00FCsste das bei den Bildern auch gehen."; }Symbol 384 MovieClip [ani_itemDish_itemMagnifier] Frame 32stop(); if ((myWorld.worldData.zoomedDish == 1) && (!myWorld.worldData.happyBacts)) { myDialog.start(_level0.d4, 1000); myWorld.worldData.zoomedDish = 2; myWorld.worldData.cultureBadTalk = true; object.stopMovie(true); } else { object.stopMovie(); }Symbol 415 MovieClip [itemDish] Frame 1stop();Symbol 415 MovieClip [itemDish] Frame 2stop();Symbol 415 MovieClip [itemDish] Frame 3stop();Symbol 415 MovieClip [itemDish] Frame 4stop();Symbol 415 MovieClip [itemDish] Frame 5stop();Symbol 423 MovieClip [ani_itemDish_itemLavalamp] Frame 33stop(); object.stopMovie();Symbol 434 MovieClip [ani_itemVase_itemDuster] Frame 24stop(); object.stopMovie();Symbol 441 MovieClip [ani_itemCup_itemDuster] Frame 25stop(); object.stopMovie();Symbol 449 MovieClip [ani_itemRedButton_itemFlowers] Frame 21stop(); object.stopMovie();Symbol 457 MovieClip [ani_itemRedButton_itemCherries] Frame 21stop(); object.stopMovie();Symbol 476 MovieClip [itemDuster] Frame 1stop();Symbol 476 MovieClip [itemDuster] Frame 2stop();Symbol 476 MovieClip [itemDuster] Frame 3stop();Symbol 476 MovieClip [itemDuster] Frame 4stop();Symbol 478 MovieClip [ani_itemDuster_itemFountain] Frame 1if (state == "dryAndClean") { duster.gotoAndStop(2); }Symbol 478 MovieClip [ani_itemDuster_itemFountain] Frame 11if (state == "dryAndClean") { duster.gotoAndStop(4); } else { duster.gotoAndStop(3); }Symbol 478 MovieClip [ani_itemDuster_itemFountain] Frame 28stop(); object.stopMovie();Symbol 496 MovieClip [ani_itemDuster_itemTap] Frame 1if (state == "dryAndClean") { duster.gotoAndStop(2); }Symbol 496 MovieClip [ani_itemDuster_itemTap] Frame 7if (state == "dryAndClean") { foam._visible = true; } else { foam._visible = false; }Symbol 496 MovieClip [ani_itemDuster_itemTap] Frame 19if (state == "dryAndClean") { duster.gotoAndStop(4); } else { duster.gotoAndStop(3); }Symbol 496 MovieClip [ani_itemDuster_itemTap] Frame 28stop(); object.stopMovie();Symbol 514 MovieClip Frame 1stop();Symbol 514 MovieClip Frame 2play();Symbol 514 MovieClip Frame 9gotoAndPlay (2);Symbol 527 MovieClip [ani_itemFlowers_persSusi] Frame 36stop(); object.stopMovie();Symbol 549 MovieClip Frame 25_parent.object.stopMovie();Symbol 558 MovieClip Frame 25_parent.object.stopMovie();Symbol 559 MovieClip [ani_itemDuster_itemCleaner] Frame 1if (state == "wet") { duster.gotoAndStop(3); }Symbol 559 MovieClip [ani_itemDuster_itemCleaner] Frame 13gotoAndPlay(state);Symbol 559 MovieClip [ani_itemDuster_itemCleaner] Frame 19stop();Symbol 559 MovieClip [ani_itemDuster_itemCleaner] Frame 26stop();Symbol 569 MovieClip [ani_itemDoor_itemHairpin] Frame 20stop(); object.stopMovie();Symbol 571 MovieClip [ani_itemDish_itemLighter] Frame 1myHand.txtMessage.text = "Mal sehen... vielleicht hilft das ja.";Symbol 571 MovieClip [ani_itemDish_itemLighter] Frame 23stop(); object.stopMovie();Symbol 581 MovieClip [ani_itemNewspaper_itemLighter] Frame 26stop(); object.stopMovie();Symbol 587 MovieClip [itemPipette] Frame 1stop();Symbol 587 MovieClip [itemPipette] Frame 2stop();Symbol 589 MovieClip [ani_itemPicture_itemPipette] Frame 29stop(); object.stopMovie();Instance of Symbol 381 MovieClip in Symbol 594 MovieClip [ani_itemPicture_itemMagnifier] Frame 1onClipEvent (load) { x = -0.8; i = 1; } onClipEvent (enterFrame) { i++; _rotation = (_rotation + x); if (i == 25) { x = x * -1; i = 1; } }Instance of Symbol 383 MovieClip in Symbol 594 MovieClip [ani_itemPicture_itemMagnifier] Frame 1onClipEvent (load) { x = 0.5; i = 1; } onClipEvent (enterFrame) { i++; _rotation = (_rotation + x); if (i == 13) { x = x * -1; i = 1; } }Instance of Symbol 379 MovieClip in Symbol 594 MovieClip [ani_itemPicture_itemMagnifier] Frame 1onClipEvent (load) { x = 1; i = 1; } onClipEvent (enterFrame) { i++; _rotation = (_rotation + x); if (i == 20) { x = x * -1; i = 1; } }Instance of Symbol 379 MovieClip in Symbol 594 MovieClip [ani_itemPicture_itemMagnifier] Frame 1onClipEvent (load) { x = 1; i = 1; } onClipEvent (enterFrame) { i++; _rotation = (_rotation + x); if (i == 20) { x = x * -1; i = 1; } }Instance of Symbol 383 MovieClip in Symbol 594 MovieClip [ani_itemPicture_itemMagnifier] Frame 1onClipEvent (load) { x = 0.5; i = 1; } onClipEvent (enterFrame) { i++; _rotation = (_rotation + x); if (i == 13) { x = x * -1; i = 1; } }Instance of Symbol 593 MovieClip in Symbol 594 MovieClip [ani_itemPicture_itemMagnifier] Frame 1onClipEvent (load) { x = 0.3; i = 1; } onClipEvent (enterFrame) { i++; _rotation = (_rotation + x); if (i == 20) { x = x * -1; i = 1; } }Instance of Symbol 593 MovieClip in Symbol 594 MovieClip [ani_itemPicture_itemMagnifier] Frame 1onClipEvent (load) { x = 0.9; i = 1; } onClipEvent (enterFrame) { i++; _rotation = (_rotation + x); if (i == 6) { x = x * -1; i = 1; } }Symbol 594 MovieClip [ani_itemPicture_itemMagnifier] Frame 26stop(); object.stopMovie();Symbol 595 MovieClip [autoAni_pictures] Frame 1big = false; clean = false; small = false; startX = _level0.sceneMc._x;Symbol 595 MovieClip [autoAni_pictures] Frame 2if (_level0.sceneMc._xscale < 140) { _level0.sceneMc._xscale = _level0.sceneMc._xscale + 2; _level0.sceneMc._yscale = _level0.sceneMc._yscale + 2; _level0.sceneMc._x = _level0.sceneMc._x - 5; } else { big = true; }Symbol 595 MovieClip [autoAni_pictures] Frame 3if (big == true) { play(); } else { gotoAndPlay (2); }Symbol 595 MovieClip [autoAni_pictures] Frame 8if (_level0.sceneMc.itemPic2.bact._alpha > 0) { _level0.sceneMc.itemPic2.bact._alpha = _level0.sceneMc.itemPic2.bact._alpha - 2.5; _level0.sceneMc.itemPic3.bact._alpha = _level0.sceneMc.itemPic3.bact._alpha - 2.5; _level0.sceneMc.itemPic5.bact._alpha = _level0.sceneMc.itemPic5.bact._alpha - 2.5; _level0.sceneMc.itemPic6.bact._alpha = _level0.sceneMc.itemPic6.bact._alpha - 2.5; _level0.sceneMc._x = _level0.sceneMc._x - 1; } else { clean = true; }Symbol 595 MovieClip [autoAni_pictures] Frame 9if (clean == true) { play(); } else { gotoAndPlay (8); }Symbol 595 MovieClip [autoAni_pictures] Frame 10myHand.showText("Juhu, es klappt! Die Bilder werden wieder normal!");Symbol 595 MovieClip [autoAni_pictures] Frame 16if (_level0.sceneMc._xscale > 100) { _level0.sceneMc._xscale = _level0.sceneMc._xscale - 2; _level0.sceneMc._yscale = _level0.sceneMc._yscale - 2; _level0.sceneMc._x = _level0.sceneMc._x + 7; } else { _level0.sceneMc._xscale = 100; _level0.sceneMc._yscale = 100; _level0.sceneMc._x = startX; small = true; }Symbol 595 MovieClip [autoAni_pictures] Frame 17if (small == true) { if (myWorld.worldData.caughtCrim) { _level0.gotoAndStop("end"); } myWorld.stopMovieBetween(); } else { gotoAndPlay (16); }Symbol 596 MovieClip [ani_itemLetterThief] Frame 1play();Symbol 596 MovieClip [ani_itemLetterThief] Frame 28stop(); object.stopMovie();Symbol 605 MovieClip [itemCup] Frame 1stop();Symbol 605 MovieClip [itemCup] Frame 2stop();Symbol 605 MovieClip [itemCup] Frame 3stop();Symbol 605 MovieClip [itemCup] Frame 4stop();Symbol 610 MovieClip [itemPoison] Frame 1stop();Symbol 610 MovieClip [itemPoison] Frame 2stop();Symbol 615 MovieClip [itemLighter] Frame 1stop();Symbol 615 MovieClip [itemLighter] Frame 2stop();Symbol 624 MovieClip [itemStereo] Frame 1stop();Symbol 624 MovieClip [itemStereo] Frame 3stop();Symbol 624 MovieClip [itemStereo] Frame 4stop();Symbol 626 MovieClip [itemLavalamp] Frame 1stop();Symbol 626 MovieClip [itemLavalamp] Frame 2stop();Symbol 626 MovieClip [itemLavalamp] Frame 3stop();Symbol 626 MovieClip [itemLavalamp] Frame 4stop();Symbol 626 MovieClip [itemLavalamp] Frame 5stop();Symbol 626 MovieClip [itemLavalamp] Frame 6stop();Symbol 629 MovieClip [itemVase] Frame 1stop();Symbol 629 MovieClip [itemVase] Frame 2stop();Symbol 629 MovieClip [itemVase] Frame 3stop();Symbol 629 MovieClip [itemVase] Frame 4stop();Symbol 633 MovieClip Frame 1stop();Symbol 633 MovieClip Frame 2stop();Symbol 635 MovieClip [itemCupboard_office] Frame 1stop(); door.gotoAndStop(1);Symbol 635 MovieClip [itemCupboard_office] Frame 2stop(); door.gotoAndStop(2);Symbol 642 Buttonon (release) { myBag.scrollBack(); }Symbol 643 Buttonon (release) { myBag.scrollFwd(); }Symbol 718 MovieClip Frame 1stop();Symbol 718 MovieClip Frame 2play();Symbol 718 MovieClip Frame 18gotoAndPlay (2);Symbol 731 MovieClip Frame 1stop();Symbol 731 MovieClip Frame 2play();Symbol 731 MovieClip Frame 18gotoAndPlay (2);Symbol 732 MovieClip Frame 1stop();Symbol 732 MovieClip Frame 2stop();Symbol 732 MovieClip Frame 3stop();Symbol 732 MovieClip Frame 4stop();Symbol 766 MovieClip Frame 1stop();Symbol 766 MovieClip Frame 2stop();Symbol 766 MovieClip Frame 3stop();Symbol 779 MovieClip Frame 1stop();Symbol 779 MovieClip Frame 2stop();Symbol 784 MovieClip Frame 1stop();Symbol 784 MovieClip Frame 2stop();Symbol 787 MovieClip Frame 1stop();Symbol 787 MovieClip Frame 2stop();Symbol 789 MovieClip Frame 1stop(); door.gotoAndStop(1);Symbol 789 MovieClip Frame 2stop(); door.gotoAndStop(2);Symbol 816 MovieClip Frame 1stop();Symbol 816 MovieClip Frame 2play();Symbol 816 MovieClip Frame 18gotoAndPlay (2);Symbol 831 MovieClip Frame 1stop();Symbol 831 MovieClip Frame 2play();Symbol 831 MovieClip Frame 18gotoAndPlay (2);Symbol 842 MovieClip Frame 1stop();Symbol 842 MovieClip Frame 2play();Symbol 842 MovieClip Frame 18gotoAndPlay (2);Symbol 843 MovieClip Frame 1stop();Symbol 843 MovieClip Frame 2stop();Symbol 843 MovieClip Frame 3stop();Symbol 843 MovieClip Frame 4stop();Symbol 846 MovieClip Frame 1cloudsFront.onEnterFrame = function () { if (this._x < 460) { this._x = this._x + 2; } else { this._x = -450; } if (cloudsFront2._x < 850) { cloudsFront2._x = cloudsFront2._x + 2; } else { cloudsFront2._x = -50; } if (cloudsBack._x < 460) { cloudsBack._x = cloudsBack._x + 1; } else { cloudsBack._x = -180; } if (cloudsBack2._x < 460) { cloudsBack2._x = cloudsBack2._x + 1; } else { cloudsBack2._x = -180; } };Symbol 874 MovieClip Frame 1cloudsBack.onEnterFrame = function () { if (this._x < 400) { this._x = this._x + 2; } else { this._x = -460; } if (cloudsBack2._x < 350) { cloudsBack2._x = cloudsBack2._x + 1; } else { cloudsBack2._x = -240; } };Symbol 885 MovieClip Frame 1stop();Symbol 907 MovieClip Frame 1play();Symbol 907 MovieClip Frame 10gotoAndPlay (1);Symbol 907 MovieClip Frame 11play();Symbol 907 MovieClip Frame 19stop();Symbol 923 MovieClip Frame 1play();Symbol 923 MovieClip Frame 6gotoAndPlay (1);Symbol 923 MovieClip Frame 7play();Symbol 923 MovieClip Frame 15stop();Symbol 926 MovieClip Frame 1play();Symbol 926 MovieClip Frame 10gotoAndPlay (1);Symbol 926 MovieClip Frame 11play();Symbol 926 MovieClip Frame 19stop();Symbol 974 MovieClip Frame 1stop();Symbol 974 MovieClip Frame 18gotoAndPlay (2);Symbol 979 MovieClip Frame 1stop();Symbol 979 MovieClip Frame 2play();Symbol 979 MovieClip Frame 18gotoAndPlay (2);Symbol 984 MovieClip Frame 1stop();Symbol 984 MovieClip Frame 18gotoAndPlay (2);Symbol 985 MovieClip Frame 1stop();Symbol 985 MovieClip Frame 2stop();Symbol 985 MovieClip Frame 3stop();Symbol 985 MovieClip Frame 4stop();Symbol 1014 MovieClip Frame 1cloudsFront.onEnterFrame = function () { if (this._x < 460) { this._x = this._x + 2; } else { this._x = -450; } if (cloudsFront2._x < 850) { cloudsFront2._x = cloudsFront2._x + 2; } else { cloudsFront2._x = -50; } };Symbol 1038 MovieClip Frame 1stop();Symbol 1038 MovieClip Frame 2stop();Symbol 1038 MovieClip Frame 3stop();Symbol 1061 MovieClip Frame 1stop();Symbol 1061 MovieClip Frame 2play();Symbol 1061 MovieClip Frame 8gotoAndPlay (2);Symbol 1070 MovieClip Frame 1stop();Symbol 1070 MovieClip Frame 2play();Symbol 1070 MovieClip Frame 18gotoAndPlay (2);Symbol 1099 MovieClip Frame 1this._alpha = this._alpha + 1;Symbol 1099 MovieClip Frame 11this._alpha = this._alpha - 2;Symbol 1113 MovieClip Frame 1persWombat._visible = false; persDirector._visible = false; myHand.txtMessage.setNewTextFormat(new TextFormat("Comic Sans MS", 14, 17408, true));Symbol 1113 MovieClip Frame 92clean = false; big = false; mc.itemPic2.bact._alpha = 0; mc.itemPic3.bact._alpha = 0; mc.itemPic5.bact._alpha = 0; mc.itemPic6.bact._alpha = 0; mc.glow._alpha = 0;Symbol 1113 MovieClip Frame 107myHand.showText(LANG.intro.t0);Symbol 1113 MovieClip Frame 108mc.glow._alpha = 40;Symbol 1113 MovieClip Frame 109if (mc._xscale < 150) { mc._xscale = mc._xscale + 1.5; mc._yscale = mc._yscale + 1.5; } else { big = true; }Symbol 1113 MovieClip Frame 110if (big == true) { play(); } else { gotoAndPlay (109); }Symbol 1113 MovieClip Frame 111if (mc._x < 200) { mc.itemPic2.bact._alpha = mc.itemPic2.bact._alpha + 1.5; mc.itemPic3.bact._alpha = mc.itemPic3.bact._alpha + 3; mc.itemPic5.bact._alpha = mc.itemPic5.bact._alpha + 6; mc.itemPic6.bact._alpha = mc.itemPic6.bact._alpha + 8; mc.glow._alpha = mc.glow._alpha + 2; mc._x = mc._x + 1.5; } else { clean = true; myHand.showText(LANG.intro.t1); }Symbol 1113 MovieClip Frame 112if (clean == true) { play(); } else { gotoAndPlay (110); }Symbol 1113 MovieClip Frame 162persWombat._visible = true; persDirector._visible = true; big = false; moved = false; _parent.startIntroDialog(_parent.d_intro1); stop();Symbol 1113 MovieClip Frame 163mc._xscale = 140; mc._yscale = 140; mc._y = -100; stop();Symbol 1113 MovieClip Frame 168if ((-mc._x) < 95) { i = i + 0.25; mc._x = mc._x - (4 + i); mc._xscale = mc._xscale + (i / 2); mc._yscale = mc._yscale + (i / 2); persDirector._x = persDirector._x - (4 + i); persDirector._y = persDirector._y + (2 + i); persDirector._xscale = persDirector._xscale + (1 + i); persDirector._yscale = persDirector._yscale + (1 + i); persWombat._x = persWombat._x - (9 + i); persWombat._y = persWombat._y + (2 + i); persWombat._xscale = persWombat._xscale + i; persWombat._yscale = persWombat._yscale + i; } else { moved = true; i = 0; }Symbol 1113 MovieClip Frame 169if (moved == true) { stop(); } else { gotoAndPlay(this._currentframe - 1); }Symbol 1113 MovieClip Frame 170mc._xscale = 180; mc._yscale = 180; mc._x = -185; mc._y = -110; persWombat._xscale = persWombat._xscale * 1.8; persWombat._yscale = persWombat._yscale * 1.8; persWombat._x = 130; persWombat._y = 350; persDirector._xscale = persDirector._xscale * 1.8; persDirector._yscale = persDirector._yscale * 1.8; persDirector._x = 320; persDirector._y = 350;Symbol 1113 MovieClip Frame 193if (unsharp._xscale < 120) { unsharp._xscale = unsharp._xscale + 1; unsharp._yscale = unsharp._yscale + 1; unsharp._x = unsharp._x + 1; persDirector._xscale = persDirector._xscale + 1; persDirector._yscale = persDirector._yscale + 1; persDirector._x = persDirector._x + 1; persWombat._xscale = persWombat._xscale + 1; persWombat._yscale = persWombat._yscale + 1; persWombat._x = persWombat._x - 0.5; } else { big = true; }Symbol 1113 MovieClip Frame 194if (big == true) { stop(); } else { gotoAndPlay(this._currentframe - 1); }Symbol 1113 MovieClip Frame 195stop();Symbol 1113 MovieClip Frame 201stop();Symbol 1113 MovieClip Frame 204play(); persWombat._visible = false; persDirector._visible = false;Symbol 1113 MovieClip Frame 246myDialog.exit(); _parent.startIntroDialog(_parent.d_intro2); stop(); persDirector._visible = true; persDirector._xscale = 125; persDirector._yscale = 125; persDirector._x = 280; persDirector._y = 245; persWombat._visible = true; persWombat._xscale = 120; persWombat._yscale = 120; persWombat._x = 160; persWombat._y = 250; mc._xscale = 100; mc._yscale = 100; mc._x = -1; mc._y = -2;Symbol 1113 MovieClip Frame 252stop();Symbol 1119 MovieClip Frame 1w.gotoAndPlay("walk");Symbol 1119 MovieClip Frame 20myHand.showText(LANG.end.t0);Symbol 1119 MovieClip Frame 63myHand.showText(LANG.end.t1);Symbol 1119 MovieClip Frame 85w.gotoAndPlay("walk");Symbol 1119 MovieClip Frame 99w.gotoAndPlay("walk"); myHand.showText(LANG.end.t2);Symbol 1119 MovieClip Frame 127w.gotoAndPlay("walk");Symbol 1119 MovieClip Frame 136stop(); _level0.gotoAndStop("credits");Symbol 1120 MovieClip Frame 1myHand.txtMessage.setNewTextFormat(new TextFormat("Comic Sans MS", 14, 17408, true)); mc.itemPic5.bact._alpha = 0; mc.itemPic6.bact._alpha = 0; _parent.startEndDialog(); stop();Symbol 1120 MovieClip Frame 2stop();Symbol 1120 MovieClip Frame 4stop();Symbol 1120 MovieClip Frame 6stop();Symbol 1120 MovieClip Frame 8play(); fade._alpha = 0;Symbol 1120 MovieClip Frame 9play();Symbol 1120 MovieClip Frame 10if (fade._alpha < 100) { fade._alpha = fade._alpha + 6; gotoAndPlay(_currentframe - 1); } else { gotoAndPlay (11); }Symbol 1120 MovieClip Frame 12play();Symbol 1120 MovieClip Frame 13if (fade._alpha > 0) { fade._alpha = fade._alpha - 6; gotoAndPlay(_currentframe - 1); } else { gotoAndStop (18); }Symbol 1120 MovieClip Frame 18stop(); myDialog.exit();Symbol 1149 MovieClip Frame 1stop(); w.onRelease = function () { nextFrame(); };Symbol 1149 MovieClip Frame 2mc.itemDrawer2.itemBall._visible = false; mc.itemDrawer1.itemPipette._visible = false; mc.itemDrawer1.itemWrongKey._visible = false; mc.figureWombat._visible = false; z.onRelease = function () { prevFrame(); };Symbol 1161 MovieClip Frame 1function step() { doStep(); } function doStep() { nextFrame(); } stop(); mc.persSusi._visible = false; iid = setInterval(step, 2500);Symbol 1161 MovieClip Frame 2mc.figureWombat._visible = false;Symbol 1161 MovieClip Frame 4clearInterval(iid);
Library Items
Symbol 1 Graphic | Used by:2 | |
Symbol 2 MovieClip | Uses:1 | Used by:29 49 125 143 157 161 176 192 195 211 219 227 249 258 273 283 338 341 353 368 384 423 434 441 449 457 478 496 527 559 569 571 581 589 594 596 1113 |
Symbol 3 Graphic | Used by:28 | |
Symbol 4 Graphic | Used by:28 | |
Symbol 5 Graphic | Used by:6 | |
Symbol 6 MovieClip | Uses:5 | Used by:28 46 49 100 1095 1101 |
Symbol 7 Graphic | Used by:9 83 523 680 | |
Symbol 8 Graphic | Used by:9 | |
Symbol 9 MovieClip | Uses:7 8 | Used by:28 46 49 100 1095 1101 |
Symbol 10 Graphic | Used by:11 | |
Symbol 11 MovieClip | Uses:10 | Used by:28 46 49 100 1095 1101 |
Symbol 12 Graphic | Used by:26 | |
Symbol 13 Graphic | Used by:16 | |
Symbol 14 Graphic | Used by:16 90 | |
Symbol 15 Graphic | Used by:16 | |
Symbol 16 MovieClip | Uses:13 14 15 | Used by:26 |
Symbol 17 Graphic | Used by:19 | |
Symbol 18 Graphic | Used by:19 24 92 | |
Symbol 19 MovieClip | Uses:17 18 | Used by:26 |
Symbol 20 Graphic | Used by:24 | |
Symbol 21 Graphic | Used by:23 | |
Symbol 22 Graphic | Used by:23 | |
Symbol 23 MovieClip | Uses:21 22 | Used by:24 |
Symbol 24 MovieClip | Uses:20 23 18 | Used by:26 |
Symbol 25 Graphic | Used by:26 | |
Symbol 26 MovieClip | Uses:12 16 19 24 25 | Used by:28 46 49 100 1095 1101 |
Symbol 27 Graphic | Used by:28 | |
Symbol 28 MovieClip | Uses:3 4 6 9 11 26 27 | Used by:29 |
Symbol 29 MovieClip [autoAni_jail] | Uses:2 28 | |
Symbol 30 Graphic | Used by:31 | |
Symbol 31 MovieClip | Uses:30 | Used by:49 125 143 157 161 176 192 195 211 219 227 249 258 273 283 338 341 353 368 384 423 434 441 449 457 478 496 527 559 569 571 581 589 594 596 683 |
Symbol 32 Graphic | Used by:33 | |
Symbol 33 MovieClip | Uses:32 | Used by:35 125 157 |
Symbol 34 Graphic | Used by:35 125 157 | |
Symbol 35 MovieClip [itemBottle] | Uses:33 34 | Used by:49 748 992 1149 |
Symbol 36 Graphic | Used by:49 | |
Symbol 37 Graphic | Used by:46 100 1101 | |
Symbol 38 Graphic | Used by:39 | |
Symbol 39 MovieClip | Uses:38 | Used by:46 100 1095 1101 |
Symbol 40 Graphic | Used by:41 | |
Symbol 41 MovieClip | Uses:40 | Used by:43 |
Symbol 42 Graphic | Used by:43 | |
Symbol 43 MovieClip | Uses:41 42 | Used by:46 100 1095 1101 |
Symbol 44 Graphic | Used by:45 | |
Symbol 45 MovieClip | Uses:44 | Used by:46 100 1095 1101 |
Symbol 46 MovieClip | Uses:37 39 43 45 6 11 9 26 | Used by:49 992 |
Symbol 47 Font | Used by:48 52 638 639 687 751 | |
Symbol 48 Text | Uses:47 | Used by:49 |
Symbol 49 MovieClip [ani_itemBottle_persCriminal] | Uses:2 31 11 9 6 26 35 36 46 48 | |
Symbol 50 Graphic | Used by:100 | |
Symbol 51 ShapeTweening | Used by:100 | |
Symbol 52 EditableText | Uses:47 | Used by:100 |
Symbol 53 ShapeTweening | Used by:100 | |
Symbol 54 Graphic | Used by:100 | |
Symbol 55 Graphic | Used by:56 | |
Symbol 56 MovieClip | Uses:55 | Used by:100 979 |
Symbol 57 Graphic | Used by:100 | |
Symbol 58 ShapeTweening | Used by:100 | |
Symbol 59 Graphic | Used by:100 | |
Symbol 60 Graphic | Used by:100 | |
Symbol 61 Graphic | Used by:100 | |
Symbol 62 Graphic | Used by:100 | |
Symbol 63 Graphic | Used by:100 | |
Symbol 64 Graphic | Used by:100 | |
Symbol 65 Graphic | Used by:67 | |
Symbol 66 Graphic | Used by:67 | |
Symbol 67 MovieClip | Uses:65 66 | Used by:100 |
Symbol 68 Graphic | Used by:100 1072 | |
Symbol 69 Graphic | Used by:100 | |
Symbol 70 Graphic | Used by:100 | |
Symbol 71 ShapeTweening | Used by:99 | |
Symbol 72 Graphic | Used by:73 | |
Symbol 73 MovieClip | Uses:72 | Used by:99 683 816 |
Symbol 74 Graphic | Used by:77 | |
Symbol 75 Graphic | Used by:76 | |
Symbol 76 MovieClip | Uses:75 | Used by:77 521 |
Symbol 77 MovieClip | Uses:74 76 | Used by:99 683 731 816 842 974 984 |
Symbol 78 Graphic | Used by:79 | |
Symbol 79 MovieClip | Uses:78 | Used by:99 683 816 974 |
Symbol 80 Graphic | Used by:81 | |
Symbol 81 MovieClip | Uses:80 | Used by:99 683 816 |
Symbol 82 Graphic | Used by:83 | |
Symbol 83 MovieClip | Uses:82 7 | Used by:99 731 |
Symbol 84 Graphic | Used by:85 | |
Symbol 85 MovieClip | Uses:84 | Used by:99 731 |
Symbol 86 Graphic | Used by:94 | |
Symbol 87 Graphic | Used by:90 | |
Symbol 88 Graphic | Used by:90 | |
Symbol 89 Graphic | Used by:90 | |
Symbol 90 MovieClip | Uses:87 88 14 89 | Used by:94 519 |
Symbol 91 Graphic | Used by:92 | |
Symbol 92 MovieClip | Uses:91 18 | Used by:94 519 |
Symbol 93 Graphic | Used by:94 | |
Symbol 94 MovieClip | Uses:86 90 92 93 | Used by:99 368 683 816 |
Symbol 95 ShapeTweening | Used by:99 | |
Symbol 96 ShapeTweening | Used by:99 | |
Symbol 97 ShapeTweening | Used by:99 | |
Symbol 98 Graphic | Used by:99 683 731 816 842 974 984 1070 | |
Symbol 99 MovieClip | Uses:71 73 77 79 81 83 85 94 95 96 97 98 | Used by:100 732 1113 1120 |
Symbol 100 MovieClip [autoAni_blanket] | Uses:50 37 51 39 43 45 11 6 9 26 52 53 54 56 57 58 59 60 61 62 63 64 67 68 69 70 99 | |
Symbol 101 Graphic | Used by:102 | |
Symbol 102 MovieClip | Uses:101 | Used by:103 |
Symbol 103 MovieClip [autoAni_music] | Uses:102 | |
Symbol 104 Graphic | Used by:105 | |
Symbol 105 MovieClip [itemNewspaper] | Uses:104 | Used by:119 846 |
Symbol 106 Graphic | Used by:119 | |
Symbol 107 ShapeTweening | Used by:116 | |
Symbol 108 ShapeTweening | Used by:116 | |
Symbol 109 ShapeTweening | Used by:116 | |
Symbol 110 ShapeTweening | Used by:116 | |
Symbol 111 ShapeTweening | Used by:116 | |
Symbol 112 ShapeTweening | Used by:116 | |
Symbol 113 ShapeTweening | Used by:116 | |
Symbol 114 ShapeTweening | Used by:116 | |
Symbol 115 Graphic | Used by:116 | |
Symbol 116 MovieClip | Uses:107 108 109 110 111 112 113 114 115 | Used by:119 571 581 615 991 |
Symbol 117 Graphic | Used by:118 | |
Symbol 118 MovieClip | Uses:117 | Used by:119 |
Symbol 119 MovieClip [autoAni_fire] | Uses:105 106 116 118 | |
Symbol 120 Graphic | Used by:121 | |
Symbol 121 MovieClip [autoAni_alarm] | Uses:120 | |
Symbol 122 Graphic | Used by:125 | |
Symbol 123 Graphic | Used by:124 | |
Symbol 124 MovieClip | Uses:123 | Used by:125 |
Symbol 125 MovieClip [ani_itemBottle_itemCorkscrew] | Uses:2 31 122 33 124 34 | |
Symbol 126 Graphic | Used by:143 | |
Symbol 127 Graphic | Used by:130 | |
Symbol 128 Graphic | Used by:130 | |
Symbol 129 Graphic | Used by:130 | |
Symbol 130 MovieClip | Uses:127 128 129 | Used by:143 947 |
Symbol 131 Graphic | Used by:143 | |
Symbol 132 Graphic | Used by:143 | |
Symbol 133 Graphic | Used by:134 | |
Symbol 134 MovieClip | Uses:133 | Used by:143 |
Symbol 135 ShapeTweening | Used by:143 | |
Symbol 136 ShapeTweening | Used by:143 | |
Symbol 137 ShapeTweening | Used by:143 | |
Symbol 138 ShapeTweening | Used by:143 | |
Symbol 139 ShapeTweening | Used by:143 | |
Symbol 140 ShapeTweening | Used by:143 | |
Symbol 141 ShapeTweening | Used by:143 | |
Symbol 142 ShapeTweening | Used by:143 | |
Symbol 143 MovieClip [ani_itemRat_itemBall] | Uses:2 31 126 130 131 132 134 135 136 137 138 139 140 141 142 | |
Symbol 144 Graphic | Used by:157 | |
Symbol 145 Graphic | Used by:157 | |
Symbol 146 Graphic | Used by:157 | |
Symbol 147 ShapeTweening | Used by:157 | |
Symbol 148 ShapeTweening | Used by:157 | |
Symbol 149 ShapeTweening | Used by:157 | |
Symbol 150 Graphic | Used by:157 | |
Symbol 151 Graphic | Used by:157 | |
Symbol 152 Graphic | Used by:157 | |
Symbol 153 Graphic | Used by:157 | |
Symbol 154 Graphic | Used by:157 | |
Symbol 155 Graphic | Used by:157 | |
Symbol 156 Graphic | Used by:157 | |
Symbol 157 MovieClip [ani_itemBottle_itemPoison] | Uses:2 31 144 33 34 145 146 147 148 149 150 151 152 153 154 155 156 | |
Symbol 158 Graphic | Used by:160 | |
Symbol 159 Graphic | Used by:160 | |
Symbol 160 MovieClip [itemWineglas] | Uses:158 159 | Used by:161 992 |
Symbol 161 MovieClip [ani_itemWineglas] | Uses:2 31 160 | |
Symbol 162 Graphic | Used by:176 219 415 | |
Symbol 163 Graphic | Used by:176 195 273 434 629 | |
Symbol 164 Graphic | Used by:165 | |
Symbol 165 MovieClip | Uses:164 | Used by:176 |
Symbol 166 ShapeTweening | Used by:176 | |
Symbol 167 Graphic | Used by:176 219 | |
Symbol 168 ShapeTweening | Used by:176 | |
Symbol 169 ShapeTweening | Used by:176 | |
Symbol 170 ShapeTweening | Used by:176 | |
Symbol 171 Graphic | Used by:176 | |
Symbol 172 ShapeTweening | Used by:176 | |
Symbol 173 ShapeTweening | Used by:176 | |
Symbol 174 Graphic | Used by:176 219 | |
Symbol 175 Graphic | Used by:176 219 | |
Symbol 176 MovieClip [ani_itemDish_itemVase] | Uses:2 31 162 163 165 166 167 168 169 170 171 172 173 174 175 | |
Symbol 177 Graphic | Used by:192 | |
Symbol 178 Graphic | Used by:192 | |
Symbol 179 Graphic | Used by:181 | |
Symbol 180 Graphic | Used by:181 347 | |
Symbol 181 MovieClip [itemFlowers] | Uses:179 180 | Used by:192 195 527 629 |
Symbol 182 Graphic | Used by:192 | |
Symbol 183 Graphic | Used by:192 | |
Symbol 184 ShapeTweening | Used by:192 | |
Symbol 185 ShapeTweening | Used by:192 | |
Symbol 186 Graphic | Used by:192 | |
Symbol 187 ShapeTweening | Used by:192 | |
Symbol 188 ShapeTweening | Used by:192 | |
Symbol 189 Graphic | Used by:192 | |
Symbol 190 Graphic | Used by:192 | |
Symbol 191 Graphic | Used by:192 | |
Symbol 192 MovieClip [ani_itemFlowers_itemMixer] | Uses:2 31 177 178 181 182 183 184 185 186 187 188 189 190 191 | |
Symbol 193 Graphic | Used by:195 434 629 | |
Symbol 194 Graphic | Used by:195 | |
Symbol 195 MovieClip [ani_itemVase] | Uses:2 31 163 193 181 194 | |
Symbol 196 Graphic | Used by:197 | |
Symbol 197 MovieClip | Uses:196 | Used by:211 219 |
Symbol 198 Graphic | Used by:211 219 283 441 605 | |
Symbol 199 Graphic | Used by:211 219 441 605 | |
Symbol 200 ShapeTweening | Used by:211 | |
Symbol 201 ShapeTweening | Used by:211 | |
Symbol 202 ShapeTweening | Used by:211 | |
Symbol 203 ShapeTweening | Used by:211 | |
Symbol 204 ShapeTweening | Used by:211 | |
Symbol 205 ShapeTweening | Used by:211 | |
Symbol 206 ShapeTweening | Used by:211 | |
Symbol 207 Graphic | Used by:211 | |
Symbol 208 Graphic | Used by:211 | |
Symbol 209 ShapeTweening | Used by:211 | |
Symbol 210 Graphic | Used by:211 | |
Symbol 211 MovieClip [ani_itemCup] | Uses:2 31 197 198 199 200 201 202 203 204 205 206 207 208 209 210 | |
Symbol 212 ShapeTweening | Used by:219 | |
Symbol 213 ShapeTweening | Used by:219 | |
Symbol 214 ShapeTweening | Used by:219 | |
Symbol 215 ShapeTweening | Used by:219 | |
Symbol 216 ShapeTweening | Used by:219 | |
Symbol 217 Graphic | Used by:219 | |
Symbol 218 ShapeTweening | Used by:219 | |
Symbol 219 MovieClip [ani_itemDish_itemCup] | Uses:2 31 162 197 198 199 212 167 213 214 215 216 217 218 174 175 | |
Symbol 220 Graphic | Used by:221 | |
Symbol 221 MovieClip | Uses:220 | Used by:227 1071 |
Symbol 222 Graphic | Used by:223 | |
Symbol 223 MovieClip | Uses:222 | Used by:227 624 1038 |
Symbol 224 Graphic | Used by:227 | |
Symbol 225 ShapeTweening | Used by:227 | |
Symbol 226 Graphic | Used by:227 | |
Symbol 227 MovieClip [ani_itemStereo_itemPlug] | Uses:2 31 221 223 224 225 226 | |
Symbol 228 Graphic | Used by:249 624 | |
Symbol 229 Graphic | Used by:230 | |
Symbol 230 MovieClip | Uses:229 | Used by:249 624 |
Symbol 231 Graphic | Used by:249 624 | |
Symbol 232 Graphic | Used by:233 | |
Symbol 233 MovieClip | Uses:232 | Used by:249 624 |
Symbol 234 Graphic | Used by:238 | |
Symbol 235 Font | Used by:236 324 647 648 1122 1128 1135 1136 1139 1141 1144 1145 1150 1151 1152 1153 1156 1159 | |
Symbol 236 Text | Uses:235 | Used by:238 |
Symbol 237 Graphic | Used by:238 | |
Symbol 238 MovieClip [itemCd1] | Uses:234 236 237 | Used by:249 1086 |
Symbol 239 Graphic | Used by:240 | |
Symbol 240 MovieClip [itemCd2] | Uses:239 | Used by:249 1086 |
Symbol 241 Graphic | Used by:243 | |
Symbol 242 Graphic | Used by:243 | |
Symbol 243 MovieClip | Uses:241 242 | Used by:249 |
Symbol 244 ShapeTweening | Used by:249 | |
Symbol 245 Graphic | Used by:249 | |
Symbol 246 Graphic | Used by:247 | |
Symbol 247 MovieClip | Uses:246 | Used by:249 |
Symbol 248 Graphic | Used by:249 | |
Symbol 249 MovieClip [ani_itemStereo_itemCD] | Uses:2 31 228 230 231 233 238 240 243 244 245 247 248 | |
Symbol 250 Graphic | Used by:251 | |
Symbol 251 MovieClip | Uses:250 | Used by:258 384 |
Symbol 252 Graphic | Used by:253 | |
Symbol 253 MovieClip | Uses:252 | Used by:258 |
Symbol 254 ShapeTweening | Used by:258 | |
Symbol 255 ShapeTweening | Used by:258 | |
Symbol 256 Graphic | Used by:258 | |
Symbol 257 Graphic | Used by:258 | |
Symbol 258 MovieClip [ani_itemDish_itemCake] | Uses:2 31 251 253 254 255 256 257 | |
Symbol 259 Graphic | Used by:273 283 587 | |
Symbol 260 Graphic | Used by:261 | |
Symbol 261 MovieClip | Uses:260 | Used by:273 283 589 |
Symbol 262 Graphic | Used by:273 283 587 | |
Symbol 263 Graphic | Used by:273 | |
Symbol 264 ShapeTweening | Used by:273 | |
Symbol 265 ShapeTweening | Used by:273 | |
Symbol 266 ShapeTweening | Used by:273 | |
Symbol 267 ShapeTweening | Used by:273 | |
Symbol 268 ShapeTweening | Used by:273 | |
Symbol 269 ShapeTweening | Used by:273 | |
Symbol 270 Graphic | Used by:273 | |
Symbol 271 ShapeTweening | Used by:273 | |
Symbol 272 Graphic | Used by:273 | |
Symbol 273 MovieClip [ani_itemVase_itemPipette] | Uses:2 31 163 259 261 262 263 264 265 266 267 268 269 270 271 272 | |
Symbol 274 ShapeTweening | Used by:283 | |
Symbol 275 ShapeTweening | Used by:283 | |
Symbol 276 ShapeTweening | Used by:283 | |
Symbol 277 ShapeTweening | Used by:283 | |
Symbol 278 ShapeTweening | Used by:283 | |
Symbol 279 Graphic | Used by:283 | |
Symbol 280 Graphic | Used by:283 | |
Symbol 281 ShapeTweening | Used by:283 | |
Symbol 282 Graphic | Used by:283 | |
Symbol 283 MovieClip [ani_itemCup_itemPipette] | Uses:2 31 198 259 261 262 274 275 276 277 278 279 280 281 282 | |
Symbol 284 Graphic | Used by:285 | |
Symbol 285 MovieClip | Uses:284 | Used by:332 340 |
Symbol 286 Font | Used by:313 331 | |
Symbol 287 Font | Used by:313 324 | |
Symbol 288 Font | Used by:313 324 | |
Symbol 289 Font | Used by:313 324 329 331 | |
Symbol 290 Font | Used by:313 324 | |
Symbol 291 Font | Used by:313 331 1130 1140 | |
Symbol 292 Font | Used by:313 324 | |
Symbol 293 Font | Used by:313 | |
Symbol 294 Font | Used by:313 | |
Symbol 295 Font | Used by:313 324 329 | |
Symbol 296 Font | Used by:313 329 | |
Symbol 297 Font | Used by:313 | |
Symbol 298 Font | Used by:313 329 | |
Symbol 299 Font | Used by:313 | |
Symbol 300 Font | Used by:313 324 331 | |
Symbol 301 Font | Used by:313 324 329 | |
Symbol 302 Font | Used by:313 | |
Symbol 303 Font | Used by:313 324 | |
Symbol 304 Font | Used by:313 329 | |
Symbol 305 Font | Used by:313 | |
Symbol 306 Font | Used by:313 324 331 | |
Symbol 307 Font | Used by:313 329 805 | |
Symbol 308 Font | Used by:313 | |
Symbol 309 Font | Used by:313 | |
Symbol 310 Font | Used by:313 324 331 | |
Symbol 311 Font | Used by:313 | |
Symbol 312 Font | Used by:313 | |
Symbol 313 Text | Uses:286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 | Used by:332 |
Symbol 314 Font | Used by:324 858 | |
Symbol 315 Font | Used by:324 329 339 | |
Symbol 316 Font | Used by:324 329 | |
Symbol 317 Font | Used by:324 | |
Symbol 318 Font | Used by:324 | |
Symbol 319 Font | Used by:324 329 | |
Symbol 320 Font | Used by:324 | |
Symbol 321 Font | Used by:324 | |
Symbol 322 Font | Used by:324 331 | |
Symbol 323 Font | Used by:324 | |
Symbol 324 Text | Uses:300 288 314 301 289 315 287 295 316 310 317 318 319 235 303 290 306 320 292 321 322 323 | Used by:332 |
Symbol 325 Font | Used by:329 | |
Symbol 326 Font | Used by:329 | |
Symbol 327 Font | Used by:329 | |
Symbol 328 Font | Used by:329 | |
Symbol 329 Text | Uses:325 307 296 301 295 316 319 326 315 327 328 298 304 289 | Used by:332 |
Symbol 330 Font | Used by:331 | |
Symbol 331 Text | Uses:310 286 289 330 291 300 306 322 | Used by:332 |
Symbol 332 MovieClip [itemLetterThief] | Uses:285 313 324 329 331 | Used by:338 596 |
Symbol 333 Graphic | Used by:334 683 | |
Symbol 334 MovieClip | Uses:333 | Used by:338 384 594 |
Symbol 335 Graphic | Used by:336 | |
Symbol 336 MovieClip [itemMagnifier] | Uses:335 | Used by:338 384 594 652 655 658 661 664 667 670 683 686 739 1127 1134 |
Symbol 337 Graphic | Used by:338 | |
Symbol 338 MovieClip [ani_itemLetterThief_itemMagnifier] | Uses:2 31 332 334 336 337 | |
Symbol 339 Text | Uses:315 | Used by:340 |
Symbol 340 MovieClip [itemLetterDirector] | Uses:285 339 | Used by:341 |
Symbol 341 MovieClip [ani_itemLetterDirector] | Uses:2 31 340 | |
Symbol 342 Graphic | Used by:347 | |
Symbol 343 Graphic | Used by:344 | |
Symbol 344 MovieClip [itemPlaster] | Uses:343 | Used by:347 449 457 1086 |
Symbol 345 Graphic | Used by:346 | |
Symbol 346 MovieClip [itemCherries] | Uses:345 | Used by:347 1086 |
Symbol 347 MovieClip | Uses:342 344 346 180 | Used by:353 992 |
Symbol 348 Graphic | Used by:353 | |
Symbol 349 Graphic | Used by:353 | |
Symbol 350 Graphic | Used by:353 449 457 | |
Symbol 351 Graphic | Used by:353 | |
Symbol 352 Graphic | Used by:353 | |
Symbol 353 MovieClip [ani_itemRedButton_itemPlaster] | Uses:2 31 347 348 349 350 351 352 | |
Symbol 354 Graphic | Used by:368 | |
Symbol 355 Graphic | Used by:368 | |
Symbol 356 Graphic | Used by:368 | |
Symbol 357 ShapeTweening | Used by:368 | |
Symbol 358 Graphic | Used by:360 | |
Symbol 359 Graphic | Used by:360 | |
Symbol 360 MovieClip | Uses:358 359 | Used by:368 |
Symbol 361 Graphic | Used by:368 | |
Symbol 362 ShapeTweening | Used by:368 | |
Symbol 363 ShapeTweening | Used by:368 | |
Symbol 364 ShapeTweening | Used by:368 | |
Symbol 365 Graphic | Used by:368 | |
Symbol 366 Graphic | Used by:368 | |
Symbol 367 Graphic | Used by:368 | |
Symbol 368 MovieClip [ani_itemBlanket_cut] | Uses:2 31 94 354 355 356 357 360 361 362 363 364 365 366 367 | |
Symbol 369 Graphic | Used by:370 | |
Symbol 370 MovieClip | Uses:369 | Used by:372 |
Symbol 371 Graphic | Used by:372 | |
Symbol 372 MovieClip | Uses:370 371 | Used by:379 381 383 593 |
Symbol 373 Graphic | Used by:378 | |
Symbol 374 Graphic | Used by:375 | |
Symbol 375 MovieClip | Uses:374 | Used by:378 |
Symbol 376 Graphic | Used by:378 | |
Symbol 377 Graphic | Used by:378 | |
Symbol 378 MovieClip | Uses:373 375 376 377 | Used by:379 381 383 593 |
Symbol 379 MovieClip | Uses:372 378 | Used by:384 594 |
Symbol 380 Graphic | Used by:381 | |
Symbol 381 MovieClip | Uses:372 378 380 | Used by:384 594 |
Symbol 382 Graphic | Used by:383 | |
Symbol 383 MovieClip | Uses:372 378 382 | Used by:384 594 |
Symbol 384 MovieClip [ani_itemDish_itemMagnifier] | Uses:2 31 251 334 379 381 383 336 | |
Symbol 385 Graphic | Used by:386 | |
Symbol 386 MovieClip | Uses:385 | Used by:387 |
Symbol 387 MovieClip | Uses:386 | Used by:398 423 |
Symbol 388 Graphic | Used by:423 626 | |
Symbol 389 Graphic | Used by:398 | |
Symbol 390 ShapeTweening | Used by:398 | |
Symbol 391 ShapeTweening | Used by:398 | |
Symbol 392 ShapeTweening | Used by:398 | |
Symbol 393 Graphic | Used by:398 | |
Symbol 394 ShapeTweening | Used by:398 | |
Symbol 395 ShapeTweening | Used by:398 | |
Symbol 396 ShapeTweening | Used by:398 | |
Symbol 397 Graphic | Used by:398 | |
Symbol 398 MovieClip | Uses:389 390 391 392 393 387 394 395 396 397 | Used by:423 626 |
Symbol 399 Graphic | Used by:423 626 | |
Symbol 400 Graphic | Used by:415 626 | |
Symbol 401 ShapeTweening | Used by:404 | |
Symbol 402 ShapeTweening | Used by:404 | |
Symbol 403 Graphic | Used by:404 | |
Symbol 404 MovieClip | Uses:401 402 403 | Used by:415 423 571 626 |
Symbol 405 Graphic | Used by:406 | |
Symbol 406 MovieClip | Uses:405 | Used by:415 571 626 |
Symbol 407 ShapeTweening | Used by:414 | |
Symbol 408 ShapeTweening | Used by:414 | |
Symbol 409 ShapeTweening | Used by:414 | |
Symbol 410 ShapeTweening | Used by:414 | |
Symbol 411 ShapeTweening | Used by:414 | |
Symbol 412 ShapeTweening | Used by:414 | |
Symbol 413 Graphic | Used by:414 | |
Symbol 414 MovieClip | Uses:407 408 409 410 411 412 413 | Used by:415 423 571 626 |
Symbol 415 MovieClip [itemDish] | Uses:162 400 404 406 414 | Used by:423 571 635 |
Symbol 416 ShapeTweening | Used by:423 | |
Symbol 417 Graphic | Used by:423 | |
Symbol 418 Graphic | Used by:423 | |
Symbol 419 Graphic | Used by:423 | |
Symbol 420 Graphic | Used by:423 | |
Symbol 421 ShapeTweening | Used by:423 | |
Symbol 422 Graphic | Used by:423 | |
Symbol 423 MovieClip [ani_itemDish_itemLavalamp] | Uses:2 31 387 388 398 399 415 416 417 418 419 404 420 421 414 422 | |
Symbol 424 Graphic | Used by:434 441 476 | |
Symbol 425 Graphic | Used by:434 441 476 | |
Symbol 426 Graphic | Used by:434 | |
Symbol 427 ShapeTweening | Used by:434 | |
Symbol 428 ShapeTweening | Used by:434 | |
Symbol 429 ShapeTweening | Used by:434 | |
Symbol 430 Graphic | Used by:434 441 | |
Symbol 431 ShapeTweening | Used by:434 | |
Symbol 432 ShapeTweening | Used by:434 | |
Symbol 433 Graphic | Used by:434 441 | |
Symbol 434 MovieClip [ani_itemVase_itemDuster] | Uses:2 31 163 193 424 425 426 427 428 429 430 431 432 433 | |
Symbol 435 Graphic | Used by:441 | |
Symbol 436 ShapeTweening | Used by:441 | |
Symbol 437 ShapeTweening | Used by:441 | |
Symbol 438 ShapeTweening | Used by:441 | |
Symbol 439 ShapeTweening | Used by:441 | |
Symbol 440 ShapeTweening | Used by:441 | |
Symbol 441 MovieClip [ani_itemCup_itemDuster] | Uses:2 31 198 199 424 425 435 436 437 438 439 433 440 430 | |
Symbol 442 Graphic | Used by:449 | |
Symbol 443 ShapeTweening | Used by:449 | |
Symbol 444 ShapeTweening | Used by:449 | |
Symbol 445 ShapeTweening | Used by:449 | |
Symbol 446 Graphic | Used by:447 | |
Symbol 447 MovieClip | Uses:446 | Used by:449 |
Symbol 448 Graphic | Used by:449 | |
Symbol 449 MovieClip [ani_itemRedButton_itemFlowers] | Uses:2 31 350 344 442 443 444 445 447 448 | |
Symbol 450 Graphic | Used by:457 | |
Symbol 451 ShapeTweening | Used by:457 | |
Symbol 452 ShapeTweening | Used by:457 | |
Symbol 453 ShapeTweening | Used by:457 | |
Symbol 454 Graphic | Used by:455 | |
Symbol 455 MovieClip | Uses:454 | Used by:457 |
Symbol 456 Graphic | Used by:457 | |
Symbol 457 MovieClip [ani_itemRedButton_itemCherries] | Uses:2 31 350 344 450 451 452 453 455 456 | |
Symbol 458 Graphic | Used by:478 | |
Symbol 459 Graphic | Used by:473 | |
Symbol 460 ShapeTweening | Used by:469 | |
Symbol 461 ShapeTweening | Used by:469 | |
Symbol 462 ShapeTweening | Used by:469 | |
Symbol 463 ShapeTweening | Used by:469 | |
Symbol 464 ShapeTweening | Used by:469 | |
Symbol 465 ShapeTweening | Used by:469 | |
Symbol 466 ShapeTweening | Used by:469 | |
Symbol 467 Graphic | Used by:469 | |
Symbol 468 Graphic | Used by:469 | |
Symbol 469 MovieClip | Uses:460 461 462 463 464 465 466 467 468 | Used by:473 |
Symbol 470 Graphic | Used by:473 | |
Symbol 471 Graphic | Used by:472 | |
Symbol 472 MovieClip | Uses:471 | Used by:473 |
Symbol 473 MovieClip | Uses:459 469 470 472 | Used by:478 1014 1095 |
Symbol 474 Graphic | Used by:476 | |
Symbol 475 Graphic | Used by:476 | |
Symbol 476 MovieClip [itemDuster] | Uses:474 475 424 425 | Used by:478 496 559 796 |
Symbol 477 Graphic | Used by:478 | |
Symbol 478 MovieClip [ani_itemDuster_itemFountain] | Uses:2 31 458 473 476 477 | |
Symbol 479 Graphic | Used by:496 | |
Symbol 480 Graphic | Used by:483 | |
Symbol 481 Graphic | Used by:482 | |
Symbol 482 MovieClip | Uses:481 | Used by:483 |
Symbol 483 MovieClip | Uses:480 482 | Used by:496 796 |
Symbol 484 ShapeTweening | Used by:496 | |
Symbol 485 ShapeTweening | Used by:496 | |
Symbol 486 Graphic | Used by:496 | |
Symbol 487 Graphic | Used by:488 | |
Symbol 488 MovieClip | Uses:487 | Used by:496 |
Symbol 489 ShapeTweening | Used by:496 | |
Symbol 490 ShapeTweening | Used by:496 | |
Symbol 491 ShapeTweening | Used by:496 | |
Symbol 492 Graphic | Used by:496 | |
Symbol 493 ShapeTweening | Used by:496 | |
Symbol 494 ShapeTweening | Used by:496 | |
Symbol 495 Graphic | Used by:496 | |
Symbol 496 MovieClip [ani_itemDuster_itemTap] | Uses:2 31 479 483 476 484 485 486 488 489 490 491 492 493 494 495 | |
Symbol 497 Graphic | Used by:498 | |
Symbol 498 MovieClip | Uses:497 | Used by:527 766 |
Symbol 499 Graphic | Used by:500 | |
Symbol 500 MovieClip | Uses:499 | Used by:527 766 |
Symbol 501 Graphic | Used by:502 | |
Symbol 502 MovieClip | Uses:501 | Used by:527 766 |
Symbol 503 Graphic | Used by:504 | |
Symbol 504 MovieClip | Uses:503 | Used by:527 766 |
Symbol 505 Graphic | Used by:507 | |
Symbol 506 Graphic | Used by:507 | |
Symbol 507 MovieClip | Uses:505 506 | Used by:527 765 |
Symbol 508 Graphic | Used by:510 | |
Symbol 509 Graphic | Used by:510 | |
Symbol 510 MovieClip | Uses:508 509 | Used by:527 765 |
Symbol 511 Graphic | Used by:514 | |
Symbol 512 Graphic | Used by:514 | |
Symbol 513 Graphic | Used by:514 | |
Symbol 514 MovieClip | Uses:511 512 513 | Used by:527 765 |
Symbol 515 Graphic | Used by:516 | |
Symbol 516 MovieClip | Uses:515 | Used by:527 718 831 |
Symbol 517 Graphic | Used by:519 | |
Symbol 518 Graphic | Used by:519 | |
Symbol 519 MovieClip | Uses:517 92 90 518 | Used by:527 718 831 |
Symbol 520 Graphic | Used by:521 | |
Symbol 521 MovieClip | Uses:76 520 | Used by:527 718 831 979 |
Symbol 522 Graphic | Used by:524 | |
Symbol 523 MovieClip | Uses:7 | Used by:524 718 831 |
Symbol 524 MovieClip | Uses:522 523 | Used by:527 718 |
Symbol 525 ShapeTweening | Used by:527 | |
Symbol 526 Graphic | Used by:527 | |
Symbol 527 MovieClip [ani_itemFlowers_persSusi] | Uses:2 31 498 500 502 504 507 510 514 516 519 521 181 524 525 526 | |
Symbol 528 Graphic | Used by:529 | |
Symbol 529 MovieClip | Uses:528 | Used by:559 |
Symbol 530 Graphic | Used by:559 | |
Symbol 531 Graphic | Used by:559 | |
Symbol 532 Graphic | Used by:559 | |
Symbol 533 Graphic | Used by:559 | |
Symbol 534 Graphic | Used by:559 | |
Symbol 535 Graphic | Used by:559 | |
Symbol 536 Graphic | Used by:559 | |
Symbol 537 Graphic | Used by:559 | |
Symbol 538 Graphic | Used by:559 | |
Symbol 539 Graphic | Used by:559 | |
Symbol 540 Graphic | Used by:559 | |
Symbol 541 ShapeTweening | Used by:549 | |
Symbol 542 ShapeTweening | Used by:549 | |
Symbol 543 ShapeTweening | Used by:549 | |
Symbol 544 ShapeTweening | Used by:549 | |
Symbol 545 Graphic | Used by:549 | |
Symbol 546 ShapeTweening | Used by:549 | |
Symbol 547 ShapeTweening | Used by:549 | |
Symbol 548 Graphic | Used by:549 | |
Symbol 549 MovieClip | Uses:541 542 543 544 545 546 547 548 | Used by:559 |
Symbol 550 ShapeTweening | Used by:558 | |
Symbol 551 ShapeTweening | Used by:558 | |
Symbol 552 ShapeTweening | Used by:558 | |
Symbol 553 ShapeTweening | Used by:558 | |
Symbol 554 Graphic | Used by:558 | |
Symbol 555 ShapeTweening | Used by:558 | |
Symbol 556 ShapeTweening | Used by:558 | |
Symbol 557 Graphic | Used by:558 | |
Symbol 558 MovieClip | Uses:550 551 552 553 554 555 556 557 | Used by:559 |
Symbol 559 MovieClip [ani_itemDuster_itemCleaner] | Uses:2 31 476 529 530 531 532 533 534 535 536 537 538 539 540 549 558 | |
Symbol 560 Graphic | Used by:561 | |
Symbol 561 MovieClip [itemHairpin] | Uses:560 | Used by:569 |
Symbol 562 Graphic | Used by:569 | |
Symbol 563 Graphic | Used by:564 | |
Symbol 564 MovieClip | Uses:563 | Used by:569 930 |
Symbol 565 Graphic | Used by:566 | |
Symbol 566 MovieClip | Uses:565 | Used by:569 633 696 776 787 804 846 855 859 874 930 958 |
Symbol 567 Graphic | Used by:569 | |
Symbol 568 Graphic | Used by:569 | |
Symbol 569 MovieClip [ani_itemDoor_itemHairpin] | Uses:2 31 562 564 566 561 567 568 | |
Symbol 570 Graphic | Used by:571 581 615 | |
Symbol 571 MovieClip [ani_itemDish_itemLighter] | Uses:2 31 415 406 414 404 570 116 | |
Symbol 572 Graphic | Used by:581 | |
Symbol 573 Graphic | Used by:581 | |
Symbol 574 ShapeTweening | Used by:581 | |
Symbol 575 ShapeTweening | Used by:581 | |
Symbol 576 ShapeTweening | Used by:581 | |
Symbol 577 ShapeTweening | Used by:581 | |
Symbol 578 Graphic | Used by:581 | |
Symbol 579 Graphic | Used by:581 | |
Symbol 580 Graphic | Used by:581 | |
Symbol 581 MovieClip [ani_itemNewspaper_itemLighter] | Uses:2 31 570 116 572 573 574 575 576 577 578 579 580 | |
Symbol 582 Graphic | Used by:589 | |
Symbol 583 Graphic | Used by:586 | |
Symbol 584 Graphic | Used by:585 | |
Symbol 585 MovieClip | Uses:584 | Used by:586 |
Symbol 586 MovieClip | Uses:583 585 | Used by:589 594 1071 1101 |
Symbol 587 MovieClip [itemPipette] | Uses:259 262 | Used by:589 779 |
Symbol 588 Graphic | Used by:589 | |
Symbol 589 MovieClip [ani_itemPicture_itemPipette] | Uses:2 31 582 586 587 261 588 | |
Symbol 590 Graphic | Used by:594 | |
Symbol 591 Graphic | Used by:593 | |
Symbol 592 Graphic | Used by:593 | |
Symbol 593 MovieClip | Uses:372 378 591 592 | Used by:594 |
Symbol 594 MovieClip [ani_itemPicture_itemMagnifier] | Uses:2 31 590 586 334 381 383 379 593 336 | |
Symbol 595 MovieClip [autoAni_pictures] | ||
Symbol 596 MovieClip [ani_itemLetterThief] | Uses:2 31 332 | Used by:1113 |
Symbol 597 Graphic | Used by:600 | |
Symbol 598 Font | Used by:599 | |
Symbol 599 Text | Uses:598 | Used by:600 |
Symbol 600 MovieClip [itemGlue] | Uses:597 599 | Used by:992 1149 |
Symbol 601 Graphic | Used by:602 | |
Symbol 602 MovieClip [itemBanana] | Uses:601 | Used by:904 |
Symbol 603 Graphic | Used by:605 | |
Symbol 604 Graphic | Used by:605 | |
Symbol 605 MovieClip [itemCup] | Uses:198 603 199 604 | Used by:874 |
Symbol 606 Graphic | Used by:607 | |
Symbol 607 MovieClip [itemCake] | Uses:606 | Used by:874 |
Symbol 608 Graphic | Used by:610 | |
Symbol 609 Graphic | Used by:610 | |
Symbol 610 MovieClip [itemPoison] | Uses:608 609 | Used by:855 1014 |
Symbol 611 Graphic | Used by:612 | |
Symbol 612 MovieClip [itemKnife] | Uses:611 | Used by:796 |
Symbol 613 Graphic | Used by:614 | |
Symbol 614 MovieClip [itemBall] | Uses:613 | Used by:784 |
Symbol 615 MovieClip [itemLighter] | Uses:570 116 | Used by:784 |
Symbol 616 Graphic | Used by:617 | |
Symbol 617 MovieClip [itemCorkscrew] | Uses:616 | Used by:779 |
Symbol 618 Graphic | Used by:619 | |
Symbol 619 MovieClip [itemWrongKey] | Uses:618 | Used by:779 |
Symbol 620 Graphic | Used by:621 | |
Symbol 621 MovieClip [itemCleaner] | Uses:620 | Used by:796 |
Symbol 622 Graphic | Used by:624 | |
Symbol 623 Graphic | Used by:624 1038 | |
Symbol 624 MovieClip [itemStereo] | Uses:228 230 231 233 622 623 223 | Used by:769 1038 |
Symbol 625 Graphic | Used by:626 | |
Symbol 626 MovieClip [itemLavalamp] | Uses:388 399 398 625 400 404 406 414 | Used by:769 |
Symbol 627 Graphic | Used by:629 | |
Symbol 628 Graphic | Used by:629 | |
Symbol 629 MovieClip [itemVase] | Uses:163 181 627 193 628 | Used by:769 |
Symbol 630 Graphic | Used by:635 | |
Symbol 631 Graphic | Used by:633 | |
Symbol 632 Graphic | Used by:633 | |
Symbol 633 MovieClip | Uses:631 566 632 | Used by:635 |
Symbol 634 Graphic | Used by:635 | |
Symbol 635 MovieClip [itemCupboard_office] | Uses:630 415 633 634 | Used by:748 |
Symbol 636 Graphic | Used by:Timeline | |
Symbol 637 MovieClip | Used by:Timeline | |
Symbol 638 EditableText | Uses:47 | Used by:Timeline |
Symbol 639 EditableText | Uses:47 | Used by:Timeline |
Symbol 640 Graphic | Used by:645 | |
Symbol 641 Graphic | Used by:642 643 | |
Symbol 642 Button | Uses:641 | Used by:645 |
Symbol 643 Button | Uses:641 | Used by:645 |
Symbol 644 MovieClip | Used by:645 | |
Symbol 645 MovieClip | Uses:640 642 643 644 | Used by:1149 Timeline |
Symbol 646 Graphic | Used by:Timeline | |
Symbol 647 Text | Uses:235 | Used by:683 |
Symbol 648 Text | Uses:235 | Used by:683 |
Symbol 649 Graphic | Used by:652 | |
Symbol 650 Font | Used by:651 654 657 660 663 666 669 685 1126 1133 | |
Symbol 651 Text | Uses:650 | Used by:652 |
Symbol 652 MovieClip | Uses:649 336 651 | Used by:683 |
Symbol 653 Graphic | Used by:655 | |
Symbol 654 Text | Uses:650 | Used by:655 |
Symbol 655 MovieClip | Uses:653 336 654 | Used by:683 |
Symbol 656 Graphic | Used by:658 | |
Symbol 657 Text | Uses:650 | Used by:658 |
Symbol 658 MovieClip | Uses:656 336 657 | Used by:683 |
Symbol 659 Graphic | Used by:661 | |
Symbol 660 Text | Uses:650 | Used by:661 |
Symbol 661 MovieClip | Uses:659 336 660 | Used by:683 |
Symbol 662 Graphic | Used by:664 | |
Symbol 663 Text | Uses:650 | Used by:664 |
Symbol 664 MovieClip | Uses:662 336 663 | Used by:683 |
Symbol 665 Graphic | Used by:667 | |
Symbol 666 Text | Uses:650 | Used by:667 |
Symbol 667 MovieClip | Uses:665 336 666 | Used by:683 |
Symbol 668 Graphic | Used by:670 | |
Symbol 669 Text | Uses:650 | Used by:670 |
Symbol 670 MovieClip | Uses:668 336 669 | Used by:683 |
Symbol 671 Graphic | Used by:683 | |
Symbol 672 Graphic | Used by:673 | |
Symbol 673 MovieClip | Uses:672 | Used by:683 816 |
Symbol 674 Graphic | Used by:675 | |
Symbol 675 MovieClip | Uses:674 | Used by:683 816 |
Symbol 676 Graphic | Used by:677 | |
Symbol 677 MovieClip | Uses:676 | Used by:683 816 842 |
Symbol 678 Graphic | Used by:680 | |
Symbol 679 Graphic | Used by:680 | |
Symbol 680 MovieClip | Uses:678 7 679 | Used by:683 816 842 |
Symbol 681 Graphic | Used by:682 | |
Symbol 682 MovieClip | Uses:681 | Used by:683 816 |
Symbol 683 MovieClip | Uses:31 647 648 652 655 658 661 664 667 670 98 73 77 79 81 671 673 675 677 680 94 682 336 333 | Used by:1149 Timeline |
Symbol 684 Graphic | Used by:686 | |
Symbol 685 Text | Uses:650 | Used by:686 |
Symbol 686 MovieClip | Uses:684 336 685 | Used by:Timeline |
Symbol 687 EditableText | Uses:47 | Used by:Timeline |
Symbol 688 Graphic | Used by:689 | |
Symbol 689 MovieClip | Uses:688 | Used by:1149 Timeline |
Symbol 690 Graphic | Used by:691 | |
Symbol 691 MovieClip | Uses:690 | Used by:1149 Timeline |
Symbol 692 Graphic | Used by:748 | |
Symbol 693 Graphic | Used by:694 | |
Symbol 694 MovieClip | Uses:693 | Used by:748 |
Symbol 695 Graphic | Used by:696 | |
Symbol 696 MovieClip | Uses:695 566 | Used by:748 |
Symbol 697 Graphic | Used by:698 | |
Symbol 698 MovieClip | Uses:697 | Used by:748 |
Symbol 699 Graphic | Used by:700 | |
Symbol 700 MovieClip | Uses:699 | Used by:748 |
Symbol 701 Graphic | Used by:702 | |
Symbol 702 MovieClip | Uses:701 | Used by:748 |
Symbol 703 Graphic | Used by:704 | |
Symbol 704 MovieClip | Uses:703 | Used by:748 769 |
Symbol 705 Graphic | Used by:706 | |
Symbol 706 MovieClip | Uses:705 | Used by:748 769 963 |
Symbol 707 Graphic | Used by:708 | |
Symbol 708 MovieClip | Uses:707 | Used by:748 |
Symbol 709 Graphic | Used by:710 | |
Symbol 710 MovieClip | Uses:709 | Used by:748 |
Symbol 711 Graphic | Used by:712 | |
Symbol 712 MovieClip | Uses:711 | Used by:748 |
Symbol 713 ShapeTweening | Used by:718 | |
Symbol 714 ShapeTweening | Used by:718 | |
Symbol 715 ShapeTweening | Used by:718 | |
Symbol 716 ShapeTweening | Used by:718 | |
Symbol 717 Graphic | Used by:718 831 979 | |
Symbol 718 MovieClip | Uses:713 523 516 519 521 524 714 715 716 717 | Used by:732 1113 1120 |
Symbol 719 ShapeTweening | Used by:731 | |
Symbol 720 Graphic | Used by:721 | |
Symbol 721 MovieClip | Uses:720 | Used by:731 |
Symbol 722 Graphic | Used by:723 | |
Symbol 723 MovieClip | Uses:722 | Used by:731 842 |
Symbol 724 Graphic | Used by:725 | |
Symbol 725 MovieClip | Uses:724 | Used by:731 |
Symbol 726 Graphic | Used by:727 | |
Symbol 727 MovieClip | Uses:726 | Used by:731 |
Symbol 728 ShapeTweening | Used by:731 | |
Symbol 729 ShapeTweening | Used by:731 | |
Symbol 730 ShapeTweening | Used by:731 | |
Symbol 731 MovieClip | Uses:719 83 85 721 723 725 77 727 728 729 730 98 | Used by:732 |
Symbol 732 MovieClip | Uses:99 718 731 | Used by:748 769 796 992 1071 1149 |
Symbol 733 Graphic | Used by:734 | |
Symbol 734 MovieClip | Uses:733 | Used by:748 992 |
Symbol 735 Graphic | Used by:736 | |
Symbol 736 MovieClip | Uses:735 | Used by:748 |
Symbol 737 Graphic | Used by:739 | |
Symbol 738 Graphic | Used by:739 | |
Symbol 739 MovieClip | Uses:737 336 738 | Used by:748 |
Symbol 740 Graphic | Used by:741 | |
Symbol 741 MovieClip | Uses:740 | Used by:748 |
Symbol 742 Graphic | Used by:743 | |
Symbol 743 MovieClip | Uses:742 | Used by:748 |
Symbol 744 Graphic | Used by:745 | |
Symbol 745 MovieClip | Uses:744 | Used by:748 |
Symbol 746 Graphic | Used by:747 | |
Symbol 747 MovieClip | Uses:746 | Used by:748 796 1071 1101 |
Symbol 748 MovieClip | Uses:692 694 696 698 700 702 704 35 706 708 710 635 712 732 734 736 739 741 743 745 747 | Used by:Timeline |
Symbol 749 Graphic | Used by:750 | |
Symbol 750 MovieClip | Uses:749 | Used by:Timeline |
Symbol 751 Text | Uses:47 | Used by:Timeline |
Symbol 752 Graphic | Used by:769 | |
Symbol 753 Graphic | Used by:754 | |
Symbol 754 MovieClip | Uses:753 | Used by:769 |
Symbol 755 Graphic | Used by:756 | |
Symbol 756 MovieClip | Uses:755 | Used by:769 |
Symbol 757 Graphic | Used by:758 | |
Symbol 758 MovieClip | Uses:757 | Used by:769 |
Symbol 759 Graphic | Used by:760 | |
Symbol 760 MovieClip | Uses:759 | Used by:769 |
Symbol 761 Graphic | Used by:762 | |
Symbol 762 MovieClip | Uses:761 | Used by:769 |
Symbol 763 Graphic | Used by:764 | |
Symbol 764 MovieClip | Uses:763 | Used by:769 |
Symbol 765 MovieClip | Uses:507 510 514 | Used by:766 |
Symbol 766 MovieClip | Uses:504 498 500 502 765 | Used by:769 |
Symbol 767 Graphic | Used by:768 | |
Symbol 768 MovieClip | Uses:767 | Used by:769 |
Symbol 769 MovieClip | Uses:752 754 756 758 629 760 706 626 704 762 764 624 766 732 768 | Used by:1149 1161 Timeline |
Symbol 770 Graphic | Used by:796 | |
Symbol 771 Graphic | Used by:772 | |
Symbol 772 MovieClip | Uses:771 | Used by:796 |
Symbol 773 Graphic | Used by:774 | |
Symbol 774 MovieClip | Uses:773 | Used by:796 |
Symbol 775 Graphic | Used by:776 | |
Symbol 776 MovieClip | Uses:775 566 | Used by:779 784 |
Symbol 777 Graphic | Used by:779 | |
Symbol 778 Graphic | Used by:779 | |
Symbol 779 MovieClip | Uses:619 587 617 776 777 778 | Used by:796 |
Symbol 780 Graphic | Used by:781 | |
Symbol 781 MovieClip | Uses:780 | Used by:784 |
Symbol 782 Graphic | Used by:784 | |
Symbol 783 Graphic | Used by:784 | |
Symbol 784 MovieClip | Uses:615 781 614 776 782 783 | Used by:796 |
Symbol 785 Graphic | Used by:787 | |
Symbol 786 Graphic | Used by:787 | |
Symbol 787 MovieClip | Uses:785 566 786 | Used by:789 |
Symbol 788 Graphic | Used by:789 | |
Symbol 789 MovieClip | Uses:787 788 | Used by:796 |
Symbol 790 Graphic | Used by:791 | |
Symbol 791 MovieClip | Uses:790 | Used by:796 |
Symbol 792 Graphic | Used by:793 | |
Symbol 793 MovieClip | Uses:792 | Used by:796 |
Symbol 794 Graphic | Used by:795 | |
Symbol 795 MovieClip | Uses:794 | Used by:796 |
Symbol 796 MovieClip | Uses:770 621 772 774 779 784 789 483 791 732 793 747 795 476 612 | Used by:1149 Timeline |
Symbol 797 Graphic | Used by:846 | |
Symbol 798 Graphic | Used by:799 | |
Symbol 799 MovieClip | Uses:798 | Used by:846 1014 |
Symbol 800 Graphic | Used by:801 | |
Symbol 801 MovieClip | Uses:800 | Used by:846 874 |
Symbol 802 Graphic | Used by:846 | |
Symbol 803 Graphic | Used by:804 | |
Symbol 804 MovieClip | Uses:803 566 | Used by:846 |
Symbol 805 Text | Uses:307 | Used by:846 |
Symbol 806 Graphic | Used by:807 | |
Symbol 807 MovieClip | Uses:806 | Used by:846 874 |
Symbol 808 Graphic | Used by:809 | |
Symbol 809 MovieClip | Uses:808 | Used by:846 874 |
Symbol 810 ShapeTweening | Used by:816 | |
Symbol 811 Graphic | Used by:816 | |
Symbol 812 Graphic | Used by:816 | |
Symbol 813 ShapeTweening | Used by:816 | |
Symbol 814 ShapeTweening | Used by:816 | |
Symbol 815 ShapeTweening | Used by:816 | |
Symbol 816 MovieClip | Uses:810 73 77 79 81 811 673 675 680 677 812 94 682 813 814 815 98 | Used by:843 |
Symbol 817 ShapeTweening | Used by:831 | |
Symbol 818 Graphic | Used by:819 | |
Symbol 819 MovieClip | Uses:818 | Used by:831 |
Symbol 820 Graphic | Used by:821 | |
Symbol 821 MovieClip | Uses:820 | Used by:831 |
Symbol 822 Graphic | Used by:823 | |
Symbol 823 MovieClip | Uses:822 | Used by:831 |
Symbol 824 Graphic | Used by:825 | |
Symbol 825 MovieClip | Uses:824 | Used by:831 |
Symbol 826 Graphic | Used by:827 | |
Symbol 827 MovieClip | Uses:826 | Used by:831 |
Symbol 828 ShapeTweening | Used by:831 | |
Symbol 829 ShapeTweening | Used by:831 | |
Symbol 830 ShapeTweening | Used by:831 | |
Symbol 831 MovieClip | Uses:817 819 516 519 821 521 823 825 827 828 829 523 830 717 | Used by:843 |
Symbol 832 ShapeTweening | Used by:842 | |
Symbol 833 Graphic | Used by:834 | |
Symbol 834 MovieClip | Uses:833 | Used by:842 |
Symbol 835 Graphic | Used by:836 | |
Symbol 836 MovieClip | Uses:835 | Used by:842 |
Symbol 837 Graphic | Used by:838 | |
Symbol 838 MovieClip | Uses:837 | Used by:842 |
Symbol 839 ShapeTweening | Used by:842 | |
Symbol 840 ShapeTweening | Used by:842 | |
Symbol 841 ShapeTweening | Used by:842 | |
Symbol 842 MovieClip | Uses:832 680 677 77 834 723 836 838 839 840 841 98 | Used by:843 1119 |
Symbol 843 MovieClip | Uses:816 831 842 | Used by:846 874 899 904 927 942 947 1014 1086 |
Symbol 844 Graphic | Used by:845 | |
Symbol 845 MovieClip | Uses:844 | Used by:846 |
Symbol 846 MovieClip | Uses:797 799 801 802 566 804 805 807 809 105 843 845 | Used by:1161 Timeline |
Symbol 847 Graphic | Used by:874 | |
Symbol 848 Graphic | Used by:874 | |
Symbol 849 Graphic | Used by:850 | |
Symbol 850 MovieClip | Uses:849 | Used by:874 |
Symbol 851 Graphic | Used by:855 | |
Symbol 852 Graphic | Used by:853 | |
Symbol 853 MovieClip | Uses:852 | Used by:855 1014 1095 1119 |
Symbol 854 Graphic | Used by:855 | |
Symbol 855 MovieClip | Uses:851 566 853 610 854 | Used by:874 |
Symbol 856 Graphic | Used by:859 | |
Symbol 857 Graphic | Used by:859 | |
Symbol 858 Text | Uses:314 | Used by:859 |
Symbol 859 MovieClip | Uses:856 566 857 858 | Used by:874 |
Symbol 860 Graphic | Used by:861 | |
Symbol 861 MovieClip | Uses:860 | Used by:874 |
Symbol 862 Graphic | Used by:863 | |
Symbol 863 MovieClip | Uses:862 | Used by:874 |
Symbol 864 Graphic | Used by:865 | |
Symbol 865 MovieClip | Uses:864 | Used by:874 |
Symbol 866 Graphic | Used by:867 | |
Symbol 867 MovieClip | Uses:866 | Used by:874 |
Symbol 868 Graphic | Used by:869 | |
Symbol 869 MovieClip | Uses:868 | Used by:874 |
Symbol 870 Graphic | Used by:871 | |
Symbol 871 MovieClip | Uses:870 | Used by:874 |
Symbol 872 Graphic | Used by:873 | |
Symbol 873 MovieClip | Uses:872 | Used by:874 |
Symbol 874 MovieClip | Uses:847 801 848 566 850 855 859 809 861 807 843 863 865 867 869 871 607 605 873 | Used by:Timeline |
Symbol 875 Graphic | Used by:899 | |
Symbol 876 Graphic | Used by:877 | |
Symbol 877 MovieClip | Uses:876 | Used by:899 904 |
Symbol 878 Graphic | Used by:879 | |
Symbol 879 MovieClip | Uses:878 | Used by:899 904 |
Symbol 880 Graphic | Used by:881 | |
Symbol 881 MovieClip | Uses:880 | Used by:885 |
Symbol 882 Graphic | Used by:885 | |
Symbol 883 Graphic | Used by:884 | |
Symbol 884 MovieClip | Uses:883 | Used by:885 |
Symbol 885 MovieClip | Uses:881 882 884 | Used by:899 904 |
Symbol 886 Graphic | Used by:887 | |
Symbol 887 MovieClip | Uses:886 | Used by:899 904 |
Symbol 888 Graphic | Used by:889 | |
Symbol 889 MovieClip | Uses:888 | Used by:899 904 |
Symbol 890 Graphic | Used by:891 | |
Symbol 891 MovieClip | Uses:890 | Used by:899 904 |
Symbol 892 Graphic | Used by:899 | |
Symbol 893 Graphic | Used by:896 | |
Symbol 894 Font | Used by:895 902 | |
Symbol 895 Text | Uses:894 | Used by:896 |
Symbol 896 MovieClip | Uses:893 895 | Used by:899 |
Symbol 897 Graphic | Used by:898 | |
Symbol 898 MovieClip | Uses:897 | Used by:899 904 |
Symbol 899 MovieClip | Uses:875 877 879 885 887 889 891 892 843 896 898 | Used by:Timeline |
Symbol 900 Graphic | Used by:904 | |
Symbol 901 Graphic | Used by:903 | |
Symbol 902 Text | Uses:894 | Used by:903 |
Symbol 903 MovieClip | Uses:901 902 | Used by:904 |
Symbol 904 MovieClip | Uses:900 877 879 885 887 889 602 891 843 903 898 | Used by:Timeline |
Symbol 905 Graphic | Used by:906 | |
Symbol 906 MovieClip | Uses:905 | Used by:907 |
Symbol 907 MovieClip | Uses:906 | Used by:927 |
Symbol 908 Graphic | Used by:927 | |
Symbol 909 Graphic | Used by:910 | |
Symbol 910 MovieClip | Uses:909 | Used by:927 |
Symbol 911 Graphic | Used by:912 | |
Symbol 912 MovieClip | Uses:911 | Used by:927 |
Symbol 913 Graphic | Used by:914 | |
Symbol 914 MovieClip | Uses:913 | Used by:927 |
Symbol 915 Graphic | Used by:916 | |
Symbol 916 MovieClip | Uses:915 | Used by:927 |
Symbol 917 Graphic | Used by:918 | |
Symbol 918 MovieClip | Uses:917 | Used by:927 |
Symbol 919 Graphic | Used by:920 | |
Symbol 920 MovieClip | Uses:919 | Used by:927 |
Symbol 921 Graphic | Used by:922 | |
Symbol 922 MovieClip | Uses:921 | Used by:923 |
Symbol 923 MovieClip | Uses:922 | Used by:927 |
Symbol 924 Graphic | Used by:925 | |
Symbol 925 MovieClip | Uses:924 | Used by:926 942 947 |
Symbol 926 MovieClip | Uses:925 | Used by:927 |
Symbol 927 MovieClip | Uses:907 908 910 912 914 916 918 843 920 923 926 | Used by:Timeline |
Symbol 928 Graphic | Used by:942 | |
Symbol 929 Graphic | Used by:930 | |
Symbol 930 MovieClip | Uses:929 564 566 | Used by:942 1003 |
Symbol 931 Graphic | Used by:932 | |
Symbol 932 MovieClip | Uses:931 | Used by:942 947 |
Symbol 933 Graphic | Used by:934 | |
Symbol 934 MovieClip | Uses:933 | Used by:936 938 1007 |
Symbol 935 Graphic | Used by:936 | |
Symbol 936 MovieClip | Uses:934 935 | Used by:942 |
Symbol 937 Graphic | Used by:938 | |
Symbol 938 MovieClip | Uses:934 937 | Used by:942 |
Symbol 939 Graphic | Used by:942 | |
Symbol 940 Graphic | Used by:941 | |
Symbol 941 MovieClip | Uses:940 | Used by:942 |
Symbol 942 MovieClip | Uses:928 930 932 936 938 843 939 941 925 | Used by:Timeline |
Symbol 943 Graphic | Used by:947 | |
Symbol 944 Graphic | Used by:945 | |
Symbol 945 MovieClip | Uses:944 | Used by:947 |
Symbol 946 Graphic | Used by:947 | |
Symbol 947 MovieClip | Uses:943 932 945 130 843 946 925 | Used by:Timeline |
Symbol 948 Graphic | Used by:992 | |
Symbol 949 Graphic | Used by:950 | |
Symbol 950 MovieClip | Uses:949 | Used by:992 |
Symbol 951 Graphic | Used by:952 | |
Symbol 952 MovieClip | Uses:951 | Used by:992 |
Symbol 953 Graphic | Used by:954 | |
Symbol 954 MovieClip | Uses:953 | Used by:992 |
Symbol 955 Graphic | Used by:956 | |
Symbol 956 MovieClip | Uses:955 | Used by:992 |
Symbol 957 Graphic | Used by:958 | |
Symbol 958 MovieClip | Uses:957 566 | Used by:992 |
Symbol 959 Graphic | Used by:963 | |
Symbol 960 Graphic | Used by:961 | |
Symbol 961 MovieClip | Uses:960 | Used by:963 |
Symbol 962 Graphic | Used by:963 | |
Symbol 963 MovieClip | Uses:959 706 961 962 | Used by:992 |
Symbol 964 Graphic | Used by:965 | |
Symbol 965 MovieClip | Uses:964 | Used by:992 |
Symbol 966 ShapeTweening | Used by:974 | |
Symbol 967 Graphic | Used by:968 | |
Symbol 968 MovieClip | Uses:967 | Used by:974 984 |
Symbol 969 Graphic | Used by:970 | |
Symbol 970 MovieClip | Uses:969 | Used by:974 984 |
Symbol 971 ShapeTweening | Used by:974 | |
Symbol 972 ShapeTweening | Used by:974 | |
Symbol 973 ShapeTweening | Used by:974 | |
Symbol 974 MovieClip | Uses:966 77 79 968 970 971 972 973 98 | Used by:985 |
Symbol 975 ShapeTweening | Used by:979 | |
Symbol 976 ShapeTweening | Used by:979 | |
Symbol 977 ShapeTweening | Used by:979 | |
Symbol 978 ShapeTweening | Used by:979 | |
Symbol 979 MovieClip | Uses:975 521 56 976 977 978 717 | Used by:985 |
Symbol 980 ShapeTweening | Used by:984 | |
Symbol 981 ShapeTweening | Used by:984 | |
Symbol 982 ShapeTweening | Used by:984 | |
Symbol 983 ShapeTweening | Used by:984 | |
Symbol 984 MovieClip | Uses:980 77 968 970 981 982 983 98 | Used by:985 |
Symbol 985 MovieClip | Uses:974 979 984 | Used by:992 |
Symbol 986 Graphic | Used by:987 | |
Symbol 987 MovieClip | Uses:986 | Used by:992 |
Symbol 988 Graphic | Used by:989 | |
Symbol 989 MovieClip | Uses:988 | Used by:992 |
Symbol 990 Graphic | Used by:991 | |
Symbol 991 MovieClip | Uses:990 116 | Used by:992 |
Symbol 992 MovieClip | Uses:948 950 952 954 956 958 963 965 732 985 46 987 734 35 989 991 160 347 600 | Used by:1161 Timeline |
Symbol 993 Graphic | Used by:1014 | |
Symbol 994 Graphic | Used by:1014 | |
Symbol 995 Graphic | Used by:1004 | |
Symbol 996 Graphic | Used by:997 | |
Symbol 997 MovieClip | Uses:996 | Used by:1004 |
Symbol 998 Graphic | Used by:1003 | |
Symbol 999 Graphic | Used by:1002 | |
Symbol 1000 Graphic | Used by:1001 | |
Symbol 1001 MovieClip | Uses:1000 | Used by:1002 |
Symbol 1002 MovieClip | Uses:999 1001 | Used by:1003 1004 |
Symbol 1003 MovieClip | Uses:998 930 1002 | Used by:1004 |
Symbol 1004 MovieClip | Uses:995 997 1003 1002 | Used by:1014 1095 |
Symbol 1005 Graphic | Used by:1007 | |
Symbol 1006 Graphic | Used by:1007 | |
Symbol 1007 MovieClip | Uses:1005 934 1006 | Used by:1014 |
Symbol 1008 Graphic | Used by:1009 | |
Symbol 1009 MovieClip | Uses:1008 | Used by:1014 1095 1119 |
Symbol 1010 Graphic | Used by:1011 | |
Symbol 1011 MovieClip | Uses:1010 | Used by:1014 1095 1119 |
Symbol 1012 Graphic | Used by:1013 | |
Symbol 1013 MovieClip | Uses:1012 | Used by:1014 1095 1119 |
Symbol 1014 MovieClip | Uses:993 799 994 1004 853 1007 610 843 473 1009 1011 1013 | Used by:Timeline |
Symbol 1015 Graphic | Used by:1071 | |
Symbol 1016 Graphic | Used by:1071 | |
Symbol 1017 Graphic | Used by:1018 | |
Symbol 1018 MovieClip | Uses:1017 | Used by:1071 1101 |
Symbol 1019 Graphic | Used by:1022 | |
Symbol 1020 Graphic | Used by:1021 | |
Symbol 1021 MovieClip | Uses:1020 | Used by:1022 |
Symbol 1022 MovieClip | Uses:1019 1021 | Used by:1071 1101 |
Symbol 1023 Graphic | Used by:1024 | |
Symbol 1024 MovieClip | Uses:1023 | Used by:1071 1101 1103 |
Symbol 1025 Graphic | Used by:1028 | |
Symbol 1026 Graphic | Used by:1027 | |
Symbol 1027 MovieClip | Uses:1026 | Used by:1028 |
Symbol 1028 MovieClip | Uses:1025 1027 | Used by:1071 1101 1103 |
Symbol 1029 Graphic | Used by:1032 | |
Symbol 1030 Graphic | Used by:1031 | |
Symbol 1031 MovieClip | Uses:1030 | Used by:1032 |
Symbol 1032 MovieClip | Uses:1029 1031 | Used by:1071 1101 1103 |
Symbol 1033 Graphic | Used by:1036 | |
Symbol 1034 Font | Used by:1035 | |
Symbol 1035 Text | Uses:1034 | Used by:1036 |
Symbol 1036 MovieClip | Uses:1033 1035 | Used by:1071 |
Symbol 1037 Graphic | Used by:1038 | |
Symbol 1038 MovieClip | Uses:1037 624 623 223 | Used by:1071 1101 |
Symbol 1039 ShapeTweening | Used by:1070 | |
Symbol 1040 Graphic | Used by:1041 | |
Symbol 1041 MovieClip | Uses:1040 | Used by:1070 |
Symbol 1042 Graphic | Used by:1045 | |
Symbol 1043 Graphic | Used by:1044 | |
Symbol 1044 MovieClip | Uses:1043 | Used by:1045 |
Symbol 1045 MovieClip | Uses:1042 1044 | Used by:1070 |
Symbol 1046 Graphic | Used by:1047 | |
Symbol 1047 MovieClip | Uses:1046 | Used by:1070 |
Symbol 1048 Graphic | Used by:1049 | |
Symbol 1049 MovieClip | Uses:1048 | Used by:1070 |
Symbol 1050 Graphic | Used by:1053 | |
Symbol 1051 Graphic | Used by:1053 | |
Symbol 1052 Graphic | Used by:1053 | |
Symbol 1053 MovieClip | Uses:1050 1051 1052 | Used by:1070 |
Symbol 1054 Graphic | Used by:1055 | |
Symbol 1055 MovieClip | Uses:1054 | Used by:1070 |
Symbol 1056 Graphic | Used by:1066 | |
Symbol 1057 Graphic | Used by:1061 | |
Symbol 1058 Graphic | Used by:1061 | |
Symbol 1059 Graphic | Used by:1061 | |
Symbol 1060 Graphic | Used by:1061 | |
Symbol 1061 MovieClip | Uses:1057 1058 1059 1060 | Used by:1066 |
Symbol 1062 Graphic | Used by:1064 | |
Symbol 1063 Graphic | Used by:1064 | |
Symbol 1064 MovieClip | Uses:1062 1063 | Used by:1066 |
Symbol 1065 Graphic | Used by:1066 | |
Symbol 1066 MovieClip | Uses:1056 1061 1064 1065 | Used by:1070 |
Symbol 1067 ShapeTweening | Used by:1070 | |
Symbol 1068 ShapeTweening | Used by:1070 | |
Symbol 1069 ShapeTweening | Used by:1070 | |
Symbol 1070 MovieClip | Uses:1039 1041 1045 1047 1049 1053 1055 1066 1067 1068 1069 98 | Used by:1071 1113 1120 |
Symbol 1071 MovieClip | Uses:1015 221 1016 1018 586 1022 1024 1028 1032 1036 732 1038 1070 747 | Used by:1149 1161 Timeline |
Symbol 1072 MovieClip | Uses:68 | Used by:1086 1113 1120 |
Symbol 1073 Graphic | Used by:1074 | |
Symbol 1074 MovieClip | Uses:1073 | Used by:1086 |
Symbol 1075 Graphic | Used by:1076 | |
Symbol 1076 MovieClip | Uses:1075 | Used by:1086 |
Symbol 1077 Graphic | Used by:1085 | |
Symbol 1078 Font | Used by:1079 1080 1081 1082 1083 1084 | |
Symbol 1079 Text | Uses:1078 | Used by:1085 |
Symbol 1080 Text | Uses:1078 | Used by:1085 |
Symbol 1081 Text | Uses:1078 | Used by:1085 |
Symbol 1082 Text | Uses:1078 | Used by:1085 |
Symbol 1083 Text | Uses:1078 | Used by:1085 |
Symbol 1084 Text | Uses:1078 | Used by:1085 |
Symbol 1085 MovieClip | Uses:1077 1079 1080 1081 1082 1083 1084 | Used by:1086 |
Symbol 1086 MovieClip | Uses:1072 1074 1076 1085 344 346 240 238 843 | Used by:Timeline |
Symbol 1087 Graphic | Used by:1113 | |
Symbol 1088 Graphic | Used by:1095 | |
Symbol 1089 Graphic | Used by:1095 | |
Symbol 1090 Graphic | Used by:1095 | |
Symbol 1091 Graphic | Used by:1092 | |
Symbol 1092 MovieClip | Uses:1091 | Used by:1095 |
Symbol 1093 ShapeTweening | Used by:1095 | |
Symbol 1094 Graphic | Used by:1095 | |
Symbol 1095 MovieClip | Uses:1088 1004 853 1089 1090 473 1009 1011 1013 1092 1093 39 43 45 9 6 11 26 1094 | Used by:1113 |
Symbol 1096 Graphic | Used by:1101 | |
Symbol 1097 Graphic | Used by:1099 | |
Symbol 1098 Graphic | Used by:1099 | |
Symbol 1099 MovieClip | Uses:1097 1098 | Used by:1101 |
Symbol 1100 Graphic | Used by:1101 | |
Symbol 1101 MovieClip | Uses:1096 1018 586 1022 1024 1028 1032 1038 747 1099 37 39 43 45 9 6 11 1100 26 | Used by:1113 |
Symbol 1102 Graphic | Used by:1103 | |
Symbol 1103 MovieClip | Uses:1102 1024 1028 1032 | Used by:1113 1120 |
Symbol 1104 Bitmap | Used by:1105 | |
Symbol 1105 Graphic | Uses:1104 | Used by:1106 |
Symbol 1106 MovieClip | Uses:1105 | Used by:1113 |
Symbol 1107 Graphic | Used by:1108 | |
Symbol 1108 MovieClip | Uses:1107 | Used by:1113 1120 |
Symbol 1109 Bitmap | Used by:1110 | |
Symbol 1110 Graphic | Uses:1109 | Used by:1113 1120 |
Symbol 1111 Bitmap | Used by:1112 | |
Symbol 1112 Graphic | Uses:1111 | Used by:1113 |
Symbol 1113 MovieClip | Uses:1087 1095 718 1070 1072 1101 2 1103 1106 1108 1110 99 1112 596 | Used by:Timeline |
Symbol 1114 Bitmap | Used by:1115 | |
Symbol 1115 Graphic | Uses:1114 | Used by:1120 |
Symbol 1116 Graphic | Used by:1119 | |
Symbol 1117 Graphic | Used by:1119 | |
Symbol 1118 Graphic | Used by:1119 | |
Symbol 1119 MovieClip | Uses:1116 853 842 1009 1011 1013 1117 1118 | Used by:1120 |
Symbol 1120 MovieClip | Uses:1072 1103 718 1070 1108 1110 99 1115 1119 | Used by:Timeline |
Symbol 1121 Graphic | Used by:1149 1161 | |
Symbol 1122 Text | Uses:235 | Used by:1149 |
Symbol 1123 Graphic | Used by:1149 1161 | |
Symbol 1124 Graphic | Used by:1149 1161 | |
Symbol 1125 Graphic | Used by:1127 | |
Symbol 1126 Text | Uses:650 | Used by:1127 |
Symbol 1127 MovieClip | Uses:1125 336 1126 | Used by:1149 |
Symbol 1128 Text | Uses:235 | Used by:1149 |
Symbol 1129 Graphic | Used by:1149 | |
Symbol 1130 Text | Uses:291 | Used by:1149 |
Symbol 1131 Graphic | Used by:1149 | |
Symbol 1132 Graphic | Used by:1134 | |
Symbol 1133 Text | Uses:650 | Used by:1134 |
Symbol 1134 MovieClip | Uses:1132 336 1133 | Used by:1149 |
Symbol 1135 Text | Uses:235 | Used by:1149 |
Symbol 1136 Text | Uses:235 | Used by:1149 |
Symbol 1137 Graphic | Used by:1149 | |
Symbol 1138 Graphic | Used by:1149 | |
Symbol 1139 Text | Uses:235 | Used by:1149 |
Symbol 1140 Text | Uses:291 | Used by:1149 |
Symbol 1141 Text | Uses:235 | Used by:1149 |
Symbol 1142 Graphic | Used by:1149 1161 | |
Symbol 1143 Graphic | Used by:1149 | |
Symbol 1144 Text | Uses:235 | Used by:1149 |
Symbol 1145 Text | Uses:235 | Used by:1149 |
Symbol 1146 Graphic | Used by:1149 | |
Symbol 1147 Graphic | Used by:1149 | |
Symbol 1148 Graphic | Used by:1149 | |
Symbol 1149 MovieClip | Uses:1121 1122 1123 1071 1124 1127 1128 1129 796 691 689 1130 1131 1134 1135 1136 1137 645 35 600 1138 1139 769 1140 1141 1142 683 1143 1144 1145 1146 1147 732 1148 | Used by:Timeline |
Symbol 1150 Text | Uses:235 | Used by:1161 |
Symbol 1151 Text | Uses:235 | Used by:1161 |
Symbol 1152 Text | Uses:235 | Used by:1161 |
Symbol 1153 Text | Uses:235 | Used by:1161 |
Symbol 1154 Graphic | Used by:1161 | |
Symbol 1155 Graphic | Used by:1161 | |
Symbol 1156 Text | Uses:235 | Used by:1161 |
Symbol 1157 Graphic | Used by:1161 | |
Symbol 1158 Graphic | Used by:1161 | |
Symbol 1159 Text | Uses:235 | Used by:1161 |
Symbol 1160 Graphic | Used by:1161 | |
Symbol 1161 MovieClip | Uses:1121 1150 1151 1123 769 1124 1152 1153 1154 846 1155 1156 1157 1071 1158 1159 1142 992 1160 | Used by:Timeline |
Instance Names
"ani" | Frame 1 | Symbol 637 MovieClip |
"mcDialog" | Frame 1 | Symbol 637 MovieClip |
"txtAction" | Frame 1 | Symbol 638 EditableText |
"txtMessage" | Frame 1 | Symbol 639 EditableText |
"mcBag" | Frame 1 | Symbol 645 MovieClip |
"menu" | Frame 1 | Symbol 683 MovieClip |
"btnMenu" | Frame 1 | Symbol 686 MovieClip |
"sysmsg" | Frame 1 | Symbol 687 EditableText |
"mc_tooltip" | Frame 1 | Symbol 689 MovieClip |
"mc_mouse" | Frame 1 | Symbol 691 MovieClip |
"sceneMc" | Frame 3 | Symbol 748 MovieClip |
"btnSave" | Frame 3 | Symbol 750 MovieClip |
"sceneMc" | Frame 4 | Symbol 769 MovieClip |
"sceneMc" | Frame 5 | Symbol 796 MovieClip |
"sceneMc" | Frame 6 | Symbol 846 MovieClip |
"sceneMc" | Frame 7 | Symbol 874 MovieClip |
"sceneMc" | Frame 8 | Symbol 899 MovieClip |
"sceneMc" | Frame 9 | Symbol 904 MovieClip |
"sceneMc" | Frame 10 | Symbol 927 MovieClip |
"sceneMc" | Frame 11 | Symbol 942 MovieClip |
"sceneMc" | Frame 12 | Symbol 947 MovieClip |
"sceneMc" | Frame 13 | Symbol 992 MovieClip |
"sceneMc" | Frame 14 | Symbol 1014 MovieClip |
"sceneMc" | Frame 15 | Symbol 1071 MovieClip |
"sceneMc" | Frame 16 | Symbol 1086 MovieClip |
"introMc" | Frame 17 | Symbol 1113 MovieClip |
"endMc" | Frame 18 | Symbol 1120 MovieClip |
"mcMouth" | Symbol 26 MovieClip Frame 1 | Symbol 16 MovieClip |
"eye1" | Symbol 26 MovieClip Frame 1 | Symbol 19 MovieClip |
"eye2" | Symbol 26 MovieClip Frame 1 | Symbol 24 MovieClip |
"head" | Symbol 46 MovieClip Frame 1 | Symbol 26 MovieClip |
"head" | Symbol 49 MovieClip [ani_itemBottle_persCriminal] Frame 1 | Symbol 26 MovieClip |
"criminal" | Symbol 49 MovieClip [ani_itemBottle_persCriminal] Frame 38 | Symbol 46 MovieClip |
"mcMouth" | Symbol 94 MovieClip Frame 1 | Symbol 90 MovieClip |
"head" | Symbol 99 MovieClip Frame 1 | Symbol 94 MovieClip |
"rat" | Symbol 143 MovieClip [ani_itemRat_itemBall] Frame 1 | Symbol 130 MovieClip |
"glas" | Symbol 161 MovieClip [ani_itemWineglas] Frame 1 | Symbol 160 MovieClip [itemWineglas] |
"glas" | Symbol 161 MovieClip [ani_itemWineglas] Frame 9 | Symbol 160 MovieClip [itemWineglas] |
"h1" | Symbol 249 MovieClip [ani_itemStereo_itemCD] Frame 1 | Symbol 238 MovieClip [itemCd1] |
"h2" | Symbol 249 MovieClip [ani_itemStereo_itemCD] Frame 1 | Symbol 240 MovieClip [itemCd2] |
"cd" | Symbol 249 MovieClip [ani_itemStereo_itemCD] Frame 1 | Symbol 243 MovieClip |
"cutItem" | Symbol 368 MovieClip [ani_itemBlanket_cut] Frame 1 | Symbol 360 MovieClip |
"bactFace" | Symbol 379 MovieClip Frame 1 | Symbol 378 MovieClip |
"bactFace" | Symbol 381 MovieClip Frame 1 | Symbol 378 MovieClip |
"bactFace" | Symbol 383 MovieClip Frame 1 | Symbol 378 MovieClip |
"bact1" | Symbol 384 MovieClip [ani_itemDish_itemMagnifier] Frame 1 | Symbol 379 MovieClip |
"bact2" | Symbol 384 MovieClip [ani_itemDish_itemMagnifier] Frame 1 | Symbol 381 MovieClip |
"bact3" | Symbol 384 MovieClip [ani_itemDish_itemMagnifier] Frame 1 | Symbol 383 MovieClip |
"water" | Symbol 473 MovieClip Frame 1 | Symbol 469 MovieClip |
"statue" | Symbol 473 MovieClip Frame 1 | Symbol 472 MovieClip |
"duster" | Symbol 478 MovieClip [ani_itemDuster_itemFountain] Frame 1 | Symbol 476 MovieClip [itemDuster] |
"duster" | Symbol 496 MovieClip [ani_itemDuster_itemTap] Frame 1 | Symbol 476 MovieClip [itemDuster] |
"foam" | Symbol 496 MovieClip [ani_itemDuster_itemTap] Frame 7 | Symbol 488 MovieClip |
"duster" | Symbol 496 MovieClip [ani_itemDuster_itemTap] Frame 19 | Symbol 476 MovieClip [itemDuster] |
"mcMouth" | Symbol 519 MovieClip Frame 1 | Symbol 90 MovieClip |
"mcMouth" | Symbol 527 MovieClip [ani_itemFlowers_persSusi] Frame 1 | Symbol 514 MovieClip |
"duster" | Symbol 559 MovieClip [ani_itemDuster_itemCleaner] Frame 1 | Symbol 476 MovieClip [itemDuster] |
"bact" | Symbol 586 MovieClip Frame 1 | Symbol 585 MovieClip |
"bactFace" | Symbol 593 MovieClip Frame 1 | Symbol 378 MovieClip |
"itemDish" | Symbol 635 MovieClip [itemCupboard_office] Frame 1 | Symbol 415 MovieClip [itemDish] |
"door" | Symbol 635 MovieClip [itemCupboard_office] Frame 1 | Symbol 633 MovieClip |
"mcBag" | Symbol 645 MovieClip Frame 1 | Symbol 644 MovieClip |
"btnPlay" | Symbol 683 MovieClip Frame 1 | Symbol 652 MovieClip |
"btnLoad" | Symbol 683 MovieClip Frame 1 | Symbol 655 MovieClip |
"btnSave" | Symbol 683 MovieClip Frame 1 | Symbol 658 MovieClip |
"btnPlayOn" | Symbol 683 MovieClip Frame 1 | Symbol 661 MovieClip |
"btnIntro" | Symbol 683 MovieClip Frame 1 | Symbol 664 MovieClip |
"btnEnd" | Symbol 683 MovieClip Frame 1 | Symbol 667 MovieClip |
"btnInstr" | Symbol 683 MovieClip Frame 1 | Symbol 670 MovieClip |
"head" | Symbol 718 MovieClip Frame 1 | Symbol 519 MovieClip |
"fig" | Symbol 732 MovieClip Frame 1 | Symbol 99 MovieClip |
"fig" | Symbol 732 MovieClip Frame 2 | Symbol 718 MovieClip |
"fig" | Symbol 732 MovieClip Frame 4 | Symbol 731 MovieClip |
"itemMagnifier" | Symbol 739 MovieClip Frame 1 | Symbol 336 MovieClip [itemMagnifier] |
"itemDoorOffice" | Symbol 748 MovieClip Frame 1 | Symbol 696 MovieClip |
"objPoster" | Symbol 748 MovieClip Frame 1 | Symbol 698 MovieClip |
"itemTrunk" | Symbol 748 MovieClip Frame 1 | Symbol 710 MovieClip |
"itemCupboard_office" | Symbol 748 MovieClip Frame 1 | Symbol 635 MovieClip [itemCupboard_office] |
"objDoorSign" | Symbol 748 MovieClip Frame 1 | Symbol 712 MovieClip |
"figureWombat" | Symbol 748 MovieClip Frame 1 | Symbol 732 MovieClip |
"objTableOffice" | Symbol 748 MovieClip Frame 1 | Symbol 734 MovieClip |
"itemTrash" | Symbol 748 MovieClip Frame 1 | Symbol 736 MovieClip |
"pencilHolder" | Symbol 748 MovieClip Frame 1 | Symbol 739 MovieClip |
"itemBookRed" | Symbol 748 MovieClip Frame 1 | Symbol 741 MovieClip |
"objCupOffice" | Symbol 748 MovieClip Frame 1 | Symbol 743 MovieClip |
"objPhone" | Symbol 748 MovieClip Frame 1 | Symbol 745 MovieClip |
"objChairOffice" | Symbol 748 MovieClip Frame 1 | Symbol 747 MovieClip |
"mcMouth" | Symbol 765 MovieClip Frame 1 | Symbol 514 MovieClip |
"head" | Symbol 766 MovieClip Frame 1 | Symbol 765 MovieClip |
"objPicture" | Symbol 769 MovieClip Frame 1 | Symbol 754 MovieClip |
"objSofa" | Symbol 769 MovieClip Frame 1 | Symbol 756 MovieClip |
"itemVase" | Symbol 769 MovieClip Frame 1 | Symbol 629 MovieClip [itemVase] |
"itemLavalamp" | Symbol 769 MovieClip Frame 1 | Symbol 626 MovieClip [itemLavalamp] |
"itemPassage_livingroom" | Symbol 769 MovieClip Frame 1 | Symbol 762 MovieClip |
"itemEntrance_livingroom" | Symbol 769 MovieClip Frame 1 | Symbol 764 MovieClip |
"itemStereo" | Symbol 769 MovieClip Frame 1 | Symbol 624 MovieClip [itemStereo] |
"persSusi" | Symbol 769 MovieClip Frame 1 | Symbol 766 MovieClip |
"figureWombat" | Symbol 769 MovieClip Frame 1 | Symbol 732 MovieClip |
"objLamp" | Symbol 769 MovieClip Frame 1 | Symbol 768 MovieClip |
"itemWrongKey" | Symbol 779 MovieClip Frame 1 | Symbol 619 MovieClip [itemWrongKey] |
"itemPipette" | Symbol 779 MovieClip Frame 1 | Symbol 587 MovieClip [itemPipette] |
"itemCorkscrew" | Symbol 779 MovieClip Frame 1 | Symbol 617 MovieClip [itemCorkscrew] |
"itemDrawer_front" | Symbol 779 MovieClip Frame 1 | Symbol 776 MovieClip |
"itemLighter" | Symbol 784 MovieClip Frame 1 | Symbol 615 MovieClip [itemLighter] |
"objDiamond" | Symbol 784 MovieClip Frame 1 | Symbol 781 MovieClip |
"itemBall" | Symbol 784 MovieClip Frame 1 | Symbol 614 MovieClip [itemBall] |
"itemDrawer_front" | Symbol 784 MovieClip Frame 1 | Symbol 776 MovieClip |
"door" | Symbol 789 MovieClip Frame 1 | Symbol 787 MovieClip |
"itemCleaner" | Symbol 796 MovieClip Frame 1 | Symbol 621 MovieClip [itemCleaner] |
"itemMixer" | Symbol 796 MovieClip Frame 1 | Symbol 772 MovieClip |
"objTowel" | Symbol 796 MovieClip Frame 1 | Symbol 774 MovieClip |
"itemDrawer2" | Symbol 796 MovieClip Frame 1 | Symbol 779 MovieClip |
"itemDrawer1" | Symbol 796 MovieClip Frame 1 | Symbol 784 MovieClip |
"itemCupboard_kitchen" | Symbol 796 MovieClip Frame 1 | Symbol 789 MovieClip |
"itemTap" | Symbol 796 MovieClip Frame 1 | Symbol 483 MovieClip |
"itemDoorKitchen" | Symbol 796 MovieClip Frame 1 | Symbol 791 MovieClip |
"figureWombat" | Symbol 796 MovieClip Frame 1 | Symbol 732 MovieClip |
"itemDuster" | Symbol 796 MovieClip Frame 1 | Symbol 476 MovieClip [itemDuster] |
"itemKnife" | Symbol 796 MovieClip Frame 1 | Symbol 612 MovieClip [itemKnife] |
"fig" | Symbol 843 MovieClip Frame 1 | Symbol 816 MovieClip |
"fig" | Symbol 843 MovieClip Frame 2 | Symbol 831 MovieClip |
"fig" | Symbol 843 MovieClip Frame 4 | Symbol 842 MovieClip |
"cloudsFront" | Symbol 846 MovieClip Frame 1 | Symbol 799 MovieClip |
"cloudsBack" | Symbol 846 MovieClip Frame 1 | Symbol 801 MovieClip |
"cloudsFront2" | Symbol 846 MovieClip Frame 1 | Symbol 799 MovieClip |
"cloudsBack2" | Symbol 846 MovieClip Frame 1 | Symbol 801 MovieClip |
"itemDoorOffice" | Symbol 846 MovieClip Frame 1 | Symbol 804 MovieClip |
"itemSubNorth" | Symbol 846 MovieClip Frame 1 | Symbol 807 MovieClip |
"itemCanalNorth" | Symbol 846 MovieClip Frame 1 | Symbol 809 MovieClip |
"itemNewspaper" | Symbol 846 MovieClip Frame 1 | Symbol 105 MovieClip [itemNewspaper] |
"figureWombat" | Symbol 846 MovieClip Frame 1 | Symbol 843 MovieClip |
"objTrash" | Symbol 846 MovieClip Frame 1 | Symbol 845 MovieClip |
"cloudsBack" | Symbol 874 MovieClip Frame 1 | Symbol 801 MovieClip |
"cloudsBack2" | Symbol 874 MovieClip Frame 1 | Symbol 801 MovieClip |
"itemPark" | Symbol 874 MovieClip Frame 1 | Symbol 850 MovieClip |
"itemDoorHouse" | Symbol 874 MovieClip Frame 1 | Symbol 859 MovieClip |
"objCanal" | Symbol 874 MovieClip Frame 1 | Symbol 809 MovieClip |
"objCar" | Symbol 874 MovieClip Frame 1 | Symbol 861 MovieClip |
"itemSubSouth" | Symbol 874 MovieClip Frame 1 | Symbol 807 MovieClip |
"figureWombat" | Symbol 874 MovieClip Frame 1 | Symbol 843 MovieClip |
"objNote" | Symbol 874 MovieClip Frame 1 | Symbol 865 MovieClip |
"itemCake" | Symbol 874 MovieClip Frame 1 | Symbol 607 MovieClip [itemCake] |
"itemCup" | Symbol 874 MovieClip Frame 1 | Symbol 605 MovieClip [itemCup] |
"itemSubDoor" | Symbol 885 MovieClip Frame 1 | Symbol 881 MovieClip |
"objChairs" | Symbol 899 MovieClip Frame 1 | Symbol 877 MovieClip |
"train" | Symbol 899 MovieClip Frame 1 | Symbol 885 MovieClip |
"itemStairway" | Symbol 899 MovieClip Frame 1 | Symbol 887 MovieClip |
"objCamera" | Symbol 899 MovieClip Frame 1 | Symbol 889 MovieClip |
"itemEntranceUnderground" | Symbol 899 MovieClip Frame 1 | Symbol 891 MovieClip |
"figureWombat" | Symbol 899 MovieClip Frame 1 | Symbol 843 MovieClip |
"objSign_south" | Symbol 899 MovieClip Frame 1 | Symbol 896 MovieClip |
"objGarbage_south" | Symbol 899 MovieClip Frame 1 | Symbol 898 MovieClip |
"objChairs" | Symbol 904 MovieClip Frame 1 | Symbol 877 MovieClip |
"train" | Symbol 904 MovieClip Frame 1 | Symbol 885 MovieClip |
"itemStairway" | Symbol 904 MovieClip Frame 1 | Symbol 887 MovieClip |
"objCamera" | Symbol 904 MovieClip Frame 1 | Symbol 889 MovieClip |
"itemBanana" | Symbol 904 MovieClip Frame 1 | Symbol 602 MovieClip [itemBanana] |
"itemEntranceUnderground" | Symbol 904 MovieClip Frame 1 | Symbol 891 MovieClip |
"figureWombat" | Symbol 904 MovieClip Frame 1 | Symbol 843 MovieClip |
"objSign_north" | Symbol 904 MovieClip Frame 1 | Symbol 903 MovieClip |
"objGarbage_north" | Symbol 904 MovieClip Frame 1 | Symbol 898 MovieClip |
"objBg" | Symbol 927 MovieClip Frame 1 | Symbol 907 MovieClip |
"itemWindow1" | Symbol 927 MovieClip Frame 1 | Symbol 910 MovieClip |
"itemWindow2" | Symbol 927 MovieClip Frame 1 | Symbol 912 MovieClip |
"itemWindow3" | Symbol 927 MovieClip Frame 1 | Symbol 914 MovieClip |
"objBlueChairs" | Symbol 927 MovieClip Frame 1 | Symbol 916 MovieClip |
"objFireSign" | Symbol 927 MovieClip Frame 1 | Symbol 918 MovieClip |
"figureWombat" | Symbol 927 MovieClip Frame 1 | Symbol 843 MovieClip |
"objPole" | Symbol 927 MovieClip Frame 1 | Symbol 920 MovieClip |
"objTrainMask" | Symbol 927 MovieClip Frame 1 | Symbol 923 MovieClip |
"objFg" | Symbol 927 MovieClip Frame 1 | Symbol 926 MovieClip |
"itemDoorHideaway" | Symbol 942 MovieClip Frame 1 | Symbol 930 MovieClip |
"itemGuideNorth" | Symbol 942 MovieClip Frame 1 | Symbol 936 MovieClip |
"itemGuideSouth" | Symbol 942 MovieClip Frame 1 | Symbol 938 MovieClip |
"figureWombat" | Symbol 942 MovieClip Frame 1 | Symbol 843 MovieClip |
"itemLadder_underground" | Symbol 947 MovieClip Frame 1 | Symbol 945 MovieClip |
"itemRat1" | Symbol 947 MovieClip Frame 1 | Symbol 130 MovieClip |
"figureWombat" | Symbol 947 MovieClip Frame 1 | Symbol 843 MovieClip |
"itemRat2" | Symbol 947 MovieClip Frame 1 | Symbol 130 MovieClip |
"vorne" | Symbol 985 MovieClip Frame 1 | Symbol 974 MovieClip |
"seite" | Symbol 985 MovieClip Frame 2 | Symbol 979 MovieClip |
"hinten" | Symbol 985 MovieClip Frame 4 | Symbol 984 MovieClip |
"objCriminalPic2" | Symbol 992 MovieClip Frame 1 | Symbol 950 MovieClip |
"objCriminalPic1" | Symbol 992 MovieClip Frame 1 | Symbol 952 MovieClip |
"objCriminalPic3" | Symbol 992 MovieClip Frame 1 | Symbol 954 MovieClip |
"itemDoorHideaway" | Symbol 992 MovieClip Frame 1 | Symbol 958 MovieClip |
"itemLadderHideaway" | Symbol 992 MovieClip Frame 1 | Symbol 965 MovieClip |
"figureWombat" | Symbol 992 MovieClip Frame 1 | Symbol 732 MovieClip |
"figureWombatBlanket" | Symbol 992 MovieClip Frame 1 | Symbol 985 MovieClip |
"persCriminal" | Symbol 992 MovieClip Frame 1 | Symbol 46 MovieClip |
"objArmchair" | Symbol 992 MovieClip Frame 1 | Symbol 987 MovieClip |
"objTableHideaway" | Symbol 992 MovieClip Frame 1 | Symbol 734 MovieClip |
"itemBottle" | Symbol 992 MovieClip Frame 1 | Symbol 35 MovieClip [itemBottle] |
"objPillar" | Symbol 992 MovieClip Frame 1 | Symbol 989 MovieClip |
"itemWineglas" | Symbol 992 MovieClip Frame 1 | Symbol 160 MovieClip [itemWineglas] |
"itemRedButton" | Symbol 992 MovieClip Frame 1 | Symbol 347 MovieClip |
"itemGlue" | Symbol 992 MovieClip Frame 1 | Symbol 600 MovieClip [itemGlue] |
"cloudsFront" | Symbol 1014 MovieClip Frame 1 | Symbol 799 MovieClip |
"cloudsFront2" | Symbol 1014 MovieClip Frame 1 | Symbol 799 MovieClip |
"itemMuseum" | Symbol 1014 MovieClip Frame 1 | Symbol 1004 MovieClip |
"objFlowers_red2" | Symbol 1014 MovieClip Frame 1 | Symbol 853 MovieClip |
"objFlowers_red3" | Symbol 1014 MovieClip Frame 1 | Symbol 853 MovieClip |
"itemGuideCity" | Symbol 1014 MovieClip Frame 1 | Symbol 1007 MovieClip |
"objFlowers_blue2" | Symbol 1014 MovieClip Frame 1 | Symbol 853 MovieClip |
"itemPoison" | Symbol 1014 MovieClip Frame 1 | Symbol 610 MovieClip [itemPoison] |
"figureWombat" | Symbol 1014 MovieClip Frame 1 | Symbol 843 MovieClip |
"itemFountain" | Symbol 1014 MovieClip Frame 1 | Symbol 473 MovieClip |
"objFlowers_blue1" | Symbol 1014 MovieClip Frame 1 | Symbol 853 MovieClip |
"bact" | Symbol 1022 MovieClip Frame 1 | Symbol 1021 MovieClip |
"bact" | Symbol 1028 MovieClip Frame 1 | Symbol 1027 MovieClip |
"bact" | Symbol 1032 MovieClip Frame 1 | Symbol 1031 MovieClip |
"itemStereox" | Symbol 1038 MovieClip Frame 2 | Symbol 624 MovieClip [itemStereo] |
"mcMouth" | Symbol 1066 MovieClip Frame 1 | Symbol 1061 MovieClip |
"head" | Symbol 1070 MovieClip Frame 1 | Symbol 1066 MovieClip |
"itemPlugSocket" | Symbol 1071 MovieClip Frame 1 | Symbol 221 MovieClip |
"itemPic1" | Symbol 1071 MovieClip Frame 1 | Symbol 1018 MovieClip |
"itemPic3" | Symbol 1071 MovieClip Frame 1 | Symbol 586 MovieClip |
"itemPic2" | Symbol 1071 MovieClip Frame 1 | Symbol 1022 MovieClip |
"itemPic4" | Symbol 1071 MovieClip Frame 1 | Symbol 1024 MovieClip |
"itemPic6" | Symbol 1071 MovieClip Frame 1 | Symbol 1028 MovieClip |
"itemPic5" | Symbol 1071 MovieClip Frame 1 | Symbol 1032 MovieClip |
"itemGuideExit" | Symbol 1071 MovieClip Frame 1 | Symbol 1036 MovieClip |
"figureWombat" | Symbol 1071 MovieClip Frame 1 | Symbol 732 MovieClip |
"itemBench_museum" | Symbol 1071 MovieClip Frame 1 | Symbol 1038 MovieClip |
"persDirector" | Symbol 1071 MovieClip Frame 1 | Symbol 1070 MovieClip |
"objChairMuseum" | Symbol 1071 MovieClip Frame 1 | Symbol 747 MovieClip |
"itemTrunkOpen" | Symbol 1086 MovieClip Frame 1 | Symbol 1074 MovieClip |
"itemPlaster" | Symbol 1086 MovieClip Frame 1 | Symbol 344 MovieClip [itemPlaster] |
"itemCherries" | Symbol 1086 MovieClip Frame 1 | Symbol 346 MovieClip [itemCherries] |
"itemCd2" | Symbol 1086 MovieClip Frame 1 | Symbol 240 MovieClip [itemCd2] |
"itemCd1" | Symbol 1086 MovieClip Frame 1 | Symbol 238 MovieClip [itemCd1] |
"figureWombat" | Symbol 1086 MovieClip Frame 1 | Symbol 843 MovieClip |
"itemMuseum" | Symbol 1095 MovieClip Frame 1 | Symbol 1004 MovieClip |
"objFlowers_red2" | Symbol 1095 MovieClip Frame 1 | Symbol 853 MovieClip |
"objFlowers_red3" | Symbol 1095 MovieClip Frame 1 | Symbol 853 MovieClip |
"objFlowers_blue2" | Symbol 1095 MovieClip Frame 1 | Symbol 853 MovieClip |
"itemFountain" | Symbol 1095 MovieClip Frame 1 | Symbol 473 MovieClip |
"head" | Symbol 1095 MovieClip Frame 64 | Symbol 26 MovieClip |
"itemPic1" | Symbol 1101 MovieClip Frame 1 | Symbol 1018 MovieClip |
"itemPic3" | Symbol 1101 MovieClip Frame 1 | Symbol 586 MovieClip |
"itemPic2" | Symbol 1101 MovieClip Frame 1 | Symbol 1022 MovieClip |
"itemPic4" | Symbol 1101 MovieClip Frame 1 | Symbol 1024 MovieClip |
"itemPic6" | Symbol 1101 MovieClip Frame 1 | Symbol 1028 MovieClip |
"itemPic5" | Symbol 1101 MovieClip Frame 1 | Symbol 1032 MovieClip |
"itemBench_museum" | Symbol 1101 MovieClip Frame 1 | Symbol 1038 MovieClip |
"objChairMuseum" | Symbol 1101 MovieClip Frame 1 | Symbol 747 MovieClip |
"glow" | Symbol 1101 MovieClip Frame 1 | Symbol 1099 MovieClip |
"head" | Symbol 1101 MovieClip Frame 1 | Symbol 26 MovieClip |
"itemPic4" | Symbol 1103 MovieClip Frame 1 | Symbol 1024 MovieClip |
"itemPic6" | Symbol 1103 MovieClip Frame 1 | Symbol 1028 MovieClip |
"itemPic5" | Symbol 1103 MovieClip Frame 1 | Symbol 1032 MovieClip |
"persWombat" | Symbol 1113 MovieClip Frame 1 | Symbol 718 MovieClip |
"persDirector" | Symbol 1113 MovieClip Frame 1 | Symbol 1070 MovieClip |
"mc" | Symbol 1113 MovieClip Frame 92 | Symbol 1101 MovieClip |
"mc" | Symbol 1113 MovieClip Frame 162 | Symbol 1103 MovieClip |
"unsharp" | Symbol 1113 MovieClip Frame 170 | Symbol 1106 MovieClip |
"persWombat" | Symbol 1113 MovieClip Frame 195 | Symbol 99 MovieClip |
"persDirector" | Symbol 1113 MovieClip Frame 201 | Symbol 1070 MovieClip |
"mc" | Symbol 1113 MovieClip Frame 204 | Symbol 1103 MovieClip |
"persWombat" | Symbol 1113 MovieClip Frame 204 | Symbol 718 MovieClip |
"persDirector" | Symbol 1113 MovieClip Frame 204 | Symbol 1070 MovieClip |
"objFlowers_red2" | Symbol 1119 MovieClip Frame 1 | Symbol 853 MovieClip |
"objFlowers_red3" | Symbol 1119 MovieClip Frame 1 | Symbol 853 MovieClip |
"objFlowers_blue2" | Symbol 1119 MovieClip Frame 1 | Symbol 853 MovieClip |
"objFlowers_blue2" | Symbol 1119 MovieClip Frame 1 | Symbol 853 MovieClip |
"objFlowers_red2" | Symbol 1119 MovieClip Frame 1 | Symbol 853 MovieClip |
"objFlowers_red3" | Symbol 1119 MovieClip Frame 1 | Symbol 853 MovieClip |
"objFlowers_red2" | Symbol 1119 MovieClip Frame 1 | Symbol 853 MovieClip |
"objFlowers_red3" | Symbol 1119 MovieClip Frame 1 | Symbol 853 MovieClip |
"objFlowers_red3" | Symbol 1119 MovieClip Frame 1 | Symbol 853 MovieClip |
"objFlowers_red3" | Symbol 1119 MovieClip Frame 1 | Symbol 853 MovieClip |
"w" | Symbol 1119 MovieClip Frame 1 | Symbol 842 MovieClip |
"w" | Symbol 1119 MovieClip Frame 86 | Symbol 842 MovieClip |
"w" | Symbol 1119 MovieClip Frame 128 | Symbol 842 MovieClip |
"mc" | Symbol 1120 MovieClip Frame 1 | Symbol 1103 MovieClip |
"persWombat" | Symbol 1120 MovieClip Frame 1 | Symbol 718 MovieClip |
"persDirector" | Symbol 1120 MovieClip Frame 1 | Symbol 1070 MovieClip |
"persWombat" | Symbol 1120 MovieClip Frame 2 | Symbol 99 MovieClip |
"persDirector" | Symbol 1120 MovieClip Frame 4 | Symbol 1070 MovieClip |
"persWombat" | Symbol 1120 MovieClip Frame 6 | Symbol 718 MovieClip |
"fade" | Symbol 1120 MovieClip Frame 8 | Symbol 1072 MovieClip |
"w" | Symbol 1149 MovieClip Frame 1 | Symbol 1127 MovieClip |
"mc" | Symbol 1149 MovieClip Frame 2 | Symbol 796 MovieClip |
"z" | Symbol 1149 MovieClip Frame 2 | Symbol 1134 MovieClip |
"mc" | Symbol 1161 MovieClip Frame 1 | Symbol 769 MovieClip |
"mc" | Symbol 1161 MovieClip Frame 2 | Symbol 846 MovieClip |
Special Tags
Protect (24) | Timeline Frame 1 | 0 bytes "" |
ExportAssets (56) | Timeline Frame 1 | Symbol 29 as "autoAni_jail" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 49 as "ani_itemBottle_persCriminal" |
ExportAssets (56) | Timeline Frame 1 | Symbol 100 as "autoAni_blanket" |
ExportAssets (56) | Timeline Frame 1 | Symbol 103 as "autoAni_music" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 119 as "autoAni_fire" |
ExportAssets (56) | Timeline Frame 1 | Symbol 121 as "autoAni_alarm" |
ExportAssets (56) | Timeline Frame 1 | Symbol 125 as "ani_itemBottle_itemCorkscrew" |
ExportAssets (56) | Timeline Frame 1 | Symbol 143 as "ani_itemRat_itemBall" |
ExportAssets (56) | Timeline Frame 1 | Symbol 157 as "ani_itemBottle_itemPoison" |
ExportAssets (56) | Timeline Frame 1 | Symbol 160 as "itemWineglas" |
ExportAssets (56) | Timeline Frame 1 | Symbol 160 as "itemWineglas" |
ExportAssets (56) | Timeline Frame 1 | Symbol 160 as "itemWineglas" |
ExportAssets (56) | Timeline Frame 1 | Symbol 160 as "itemWineglas" |
ExportAssets (56) | Timeline Frame 1 | Symbol 160 as "itemWineglas" |
ExportAssets (56) | Timeline Frame 1 | Symbol 160 as "itemWineglas" |
ExportAssets (56) | Timeline Frame 1 | Symbol 160 as "itemWineglas" |
ExportAssets (56) | Timeline Frame 1 | Symbol 160 as "itemWineglas" |
ExportAssets (56) | Timeline Frame 1 | Symbol 160 as "itemWineglas" |
ExportAssets (56) | Timeline Frame 1 | Symbol 160 as "itemWineglas" |
ExportAssets (56) | Timeline Frame 1 | Symbol 160 as "itemWineglas" |
ExportAssets (56) | Timeline Frame 1 | Symbol 160 as "itemWineglas" |
ExportAssets (56) | Timeline Frame 1 | Symbol 160 as "itemWineglas" |
ExportAssets (56) | Timeline Frame 1 | Symbol 160 as "itemWineglas" |
ExportAssets (56) | Timeline Frame 1 | Symbol 160 as "itemWineglas" |
ExportAssets (56) | Timeline Frame 1 | Symbol 160 as "itemWineglas" |
ExportAssets (56) | Timeline Frame 1 | Symbol 161 as "ani_itemWineglas" |
ExportAssets (56) | Timeline Frame 1 | Symbol 176 as "ani_itemDish_itemVase" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 192 as "ani_itemFlowers_itemMixer" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 195 as "ani_itemVase" |
ExportAssets (56) | Timeline Frame 1 | Symbol 211 as "ani_itemCup" |
ExportAssets (56) | Timeline Frame 1 | Symbol 219 as "ani_itemDish_itemCup" |
ExportAssets (56) | Timeline Frame 1 | Symbol 227 as "ani_itemStereo_itemPlug" |
ExportAssets (56) | Timeline Frame 1 | Symbol 238 as "itemCd1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 240 as "itemCd2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 238 as "itemCd1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 240 as "itemCd2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 238 as "itemCd1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 240 as "itemCd2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 238 as "itemCd1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 240 as "itemCd2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 238 as "itemCd1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 240 as "itemCd2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 238 as "itemCd1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 240 as "itemCd2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 238 as "itemCd1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 240 as "itemCd2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 238 as "itemCd1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 240 as "itemCd2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 238 as "itemCd1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 240 as "itemCd2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 238 as "itemCd1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 240 as "itemCd2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 238 as "itemCd1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 240 as "itemCd2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 238 as "itemCd1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 240 as "itemCd2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 238 as "itemCd1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 240 as "itemCd2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 238 as "itemCd1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 240 as "itemCd2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 238 as "itemCd1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 240 as "itemCd2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 238 as "itemCd1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 240 as "itemCd2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 238 as "itemCd1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 240 as "itemCd2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 238 as "itemCd1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 240 as "itemCd2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 238 as "itemCd1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 240 as "itemCd2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 238 as "itemCd1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 240 as "itemCd2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 238 as "itemCd1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 240 as "itemCd2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 238 as "itemCd1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 240 as "itemCd2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 238 as "itemCd1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 240 as "itemCd2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 249 as "ani_itemStereo_itemCD" |
ExportAssets (56) | Timeline Frame 1 | Symbol 258 as "ani_itemDish_itemCake" |
ExportAssets (56) | Timeline Frame 1 | Symbol 273 as "ani_itemVase_itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 283 as "ani_itemCup_itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 338 as "ani_itemLetterThief_itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 340 as "itemLetterDirector" |
ExportAssets (56) | Timeline Frame 1 | Symbol 340 as "itemLetterDirector" |
ExportAssets (56) | Timeline Frame 1 | Symbol 340 as "itemLetterDirector" |
ExportAssets (56) | Timeline Frame 1 | Symbol 340 as "itemLetterDirector" |
ExportAssets (56) | Timeline Frame 1 | Symbol 340 as "itemLetterDirector" |
ExportAssets (56) | Timeline Frame 1 | Symbol 340 as "itemLetterDirector" |
ExportAssets (56) | Timeline Frame 1 | Symbol 340 as "itemLetterDirector" |
ExportAssets (56) | Timeline Frame 1 | Symbol 340 as "itemLetterDirector" |
ExportAssets (56) | Timeline Frame 1 | Symbol 340 as "itemLetterDirector" |
ExportAssets (56) | Timeline Frame 1 | Symbol 340 as "itemLetterDirector" |
ExportAssets (56) | Timeline Frame 1 | Symbol 340 as "itemLetterDirector" |
ExportAssets (56) | Timeline Frame 1 | Symbol 340 as "itemLetterDirector" |
ExportAssets (56) | Timeline Frame 1 | Symbol 340 as "itemLetterDirector" |
ExportAssets (56) | Timeline Frame 1 | Symbol 340 as "itemLetterDirector" |
ExportAssets (56) | Timeline Frame 1 | Symbol 340 as "itemLetterDirector" |
ExportAssets (56) | Timeline Frame 1 | Symbol 340 as "itemLetterDirector" |
ExportAssets (56) | Timeline Frame 1 | Symbol 340 as "itemLetterDirector" |
ExportAssets (56) | Timeline Frame 1 | Symbol 340 as "itemLetterDirector" |
ExportAssets (56) | Timeline Frame 1 | Symbol 340 as "itemLetterDirector" |
ExportAssets (56) | Timeline Frame 1 | Symbol 340 as "itemLetterDirector" |
ExportAssets (56) | Timeline Frame 1 | Symbol 340 as "itemLetterDirector" |
ExportAssets (56) | Timeline Frame 1 | Symbol 340 as "itemLetterDirector" |
ExportAssets (56) | Timeline Frame 1 | Symbol 340 as "itemLetterDirector" |
ExportAssets (56) | Timeline Frame 1 | Symbol 341 as "ani_itemLetterDirector" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 346 as "itemCherries" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 353 as "ani_itemRedButton_itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 368 as "ani_itemBlanket_cut" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 384 as "ani_itemDish_itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 423 as "ani_itemDish_itemLavalamp" |
ExportAssets (56) | Timeline Frame 1 | Symbol 434 as "ani_itemVase_itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 441 as "ani_itemCup_itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 449 as "ani_itemRedButton_itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 457 as "ani_itemRedButton_itemCherries" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 478 as "ani_itemDuster_itemFountain" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 496 as "ani_itemDuster_itemTap" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 527 as "ani_itemFlowers_persSusi" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 559 as "ani_itemDuster_itemCleaner" |
ExportAssets (56) | Timeline Frame 1 | Symbol 561 as "itemHairpin" |
ExportAssets (56) | Timeline Frame 1 | Symbol 561 as "itemHairpin" |
ExportAssets (56) | Timeline Frame 1 | Symbol 561 as "itemHairpin" |
ExportAssets (56) | Timeline Frame 1 | Symbol 561 as "itemHairpin" |
ExportAssets (56) | Timeline Frame 1 | Symbol 561 as "itemHairpin" |
ExportAssets (56) | Timeline Frame 1 | Symbol 561 as "itemHairpin" |
ExportAssets (56) | Timeline Frame 1 | Symbol 561 as "itemHairpin" |
ExportAssets (56) | Timeline Frame 1 | Symbol 561 as "itemHairpin" |
ExportAssets (56) | Timeline Frame 1 | Symbol 561 as "itemHairpin" |
ExportAssets (56) | Timeline Frame 1 | Symbol 569 as "ani_itemDoor_itemHairpin" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 571 as "ani_itemDish_itemLighter" |
ExportAssets (56) | Timeline Frame 1 | Symbol 581 as "ani_itemNewspaper_itemLighter" |
ExportAssets (56) | Timeline Frame 1 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 589 as "ani_itemPicture_itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 594 as "ani_itemPicture_itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 340 as "itemLetterDirector" |
ExportAssets (56) | Timeline Frame 1 | Symbol 595 as "autoAni_pictures" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 332 as "itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 1 | Symbol 238 as "itemCd1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 240 as "itemCd2" |
ExportAssets (56) | Timeline Frame 1 | Symbol 600 as "itemGlue" |
ExportAssets (56) | Timeline Frame 1 | Symbol 346 as "itemCherries" |
ExportAssets (56) | Timeline Frame 1 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 160 as "itemWineglas" |
ExportAssets (56) | Timeline Frame 1 | Symbol 602 as "itemBanana" |
ExportAssets (56) | Timeline Frame 1 | Symbol 605 as "itemCup" |
ExportAssets (56) | Timeline Frame 1 | Symbol 607 as "itemCake" |
ExportAssets (56) | Timeline Frame 1 | Symbol 610 as "itemPoison" |
ExportAssets (56) | Timeline Frame 1 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 1 | Symbol 612 as "itemKnife" |
ExportAssets (56) | Timeline Frame 1 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 1 | Symbol 614 as "itemBall" |
ExportAssets (56) | Timeline Frame 1 | Symbol 615 as "itemLighter" |
ExportAssets (56) | Timeline Frame 1 | Symbol 617 as "itemCorkscrew" |
ExportAssets (56) | Timeline Frame 1 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 1 | Symbol 619 as "itemWrongKey" |
ExportAssets (56) | Timeline Frame 1 | Symbol 621 as "itemCleaner" |
ExportAssets (56) | Timeline Frame 1 | Symbol 624 as "itemStereo" |
ExportAssets (56) | Timeline Frame 1 | Symbol 626 as "itemLavalamp" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 181 as "itemFlowers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 629 as "itemVase" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 415 as "itemDish" |
ExportAssets (56) | Timeline Frame 1 | Symbol 635 as "itemCupboard_office" |
ExportAssets (56) | Timeline Frame 1 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 1 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 3 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 3 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 3 | Symbol 635 as "itemCupboard_office" |
ExportAssets (56) | Timeline Frame 3 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 4 | Symbol 629 as "itemVase" |
ExportAssets (56) | Timeline Frame 4 | Symbol 626 as "itemLavalamp" |
ExportAssets (56) | Timeline Frame 4 | Symbol 624 as "itemStereo" |
ExportAssets (56) | Timeline Frame 5 | Symbol 621 as "itemCleaner" |
ExportAssets (56) | Timeline Frame 5 | Symbol 619 as "itemWrongKey" |
ExportAssets (56) | Timeline Frame 5 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 5 | Symbol 617 as "itemCorkscrew" |
ExportAssets (56) | Timeline Frame 5 | Symbol 619 as "itemWrongKey" |
ExportAssets (56) | Timeline Frame 5 | Symbol 587 as "itemPipette" |
ExportAssets (56) | Timeline Frame 5 | Symbol 617 as "itemCorkscrew" |
ExportAssets (56) | Timeline Frame 5 | Symbol 615 as "itemLighter" |
ExportAssets (56) | Timeline Frame 5 | Symbol 614 as "itemBall" |
ExportAssets (56) | Timeline Frame 5 | Symbol 615 as "itemLighter" |
ExportAssets (56) | Timeline Frame 5 | Symbol 614 as "itemBall" |
ExportAssets (56) | Timeline Frame 5 | Symbol 476 as "itemDuster" |
ExportAssets (56) | Timeline Frame 5 | Symbol 612 as "itemKnife" |
ExportAssets (56) | Timeline Frame 6 | Symbol 105 as "itemNewspaper" |
ExportAssets (56) | Timeline Frame 7 | Symbol 610 as "itemPoison" |
ExportAssets (56) | Timeline Frame 7 | Symbol 610 as "itemPoison" |
ExportAssets (56) | Timeline Frame 7 | Symbol 610 as "itemPoison" |
ExportAssets (56) | Timeline Frame 7 | Symbol 610 as "itemPoison" |
ExportAssets (56) | Timeline Frame 7 | Symbol 610 as "itemPoison" |
ExportAssets (56) | Timeline Frame 7 | Symbol 610 as "itemPoison" |
ExportAssets (56) | Timeline Frame 7 | Symbol 610 as "itemPoison" |
ExportAssets (56) | Timeline Frame 7 | Symbol 607 as "itemCake" |
ExportAssets (56) | Timeline Frame 7 | Symbol 605 as "itemCup" |
ExportAssets (56) | Timeline Frame 9 | Symbol 602 as "itemBanana" |
ExportAssets (56) | Timeline Frame 13 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 13 | Symbol 160 as "itemWineglas" |
ExportAssets (56) | Timeline Frame 13 | Symbol 600 as "itemGlue" |
ExportAssets (56) | Timeline Frame 14 | Symbol 610 as "itemPoison" |
ExportAssets (56) | Timeline Frame 15 | Symbol 624 as "itemStereo" |
ExportAssets (56) | Timeline Frame 15 | Symbol 624 as "itemStereo" |
ExportAssets (56) | Timeline Frame 16 | Symbol 344 as "itemPlaster" |
ExportAssets (56) | Timeline Frame 16 | Symbol 346 as "itemCherries" |
ExportAssets (56) | Timeline Frame 16 | Symbol 240 as "itemCd2" |
ExportAssets (56) | Timeline Frame 16 | Symbol 238 as "itemCd1" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 17 | Symbol 596 as "ani_itemLetterThief" |
ExportAssets (56) | Timeline Frame 19 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 19 | Symbol 336 as "itemMagnifier" |
ExportAssets (56) | Timeline Frame 19 | Symbol 35 as "itemBottle" |
ExportAssets (56) | Timeline Frame 19 | Symbol 600 as "itemGlue" |
Labels
"menu" | Frame 1 |
"startGame" | Frame 2 |
"sceneOffice" | Frame 3 |
"sceneHouseLivingroom" | Frame 4 |
"sceneKitchen" | Frame 5 |
"sceneStreetNorth" | Frame 6 |
"sceneStreetSouth" | Frame 7 |
"sceneSubSouth" | Frame 8 |
"sceneSubNorth" | Frame 9 |
"sceneTrain" | Frame 10 |
"sceneHideawayEntrance" | Frame 11 |
"sceneUnderground" | Frame 12 |
"sceneHideaway" | Frame 13 |
"scenePark" | Frame 14 |
"sceneMuseum" | Frame 15 |
"sceneTrunk" | Frame 16 |
"intro" | Frame 17 |
"end" | Frame 18 |
"instr" | Frame 19 |
"credits" | Frame 20 |
"silent" | Symbol 16 MovieClip Frame 1 |
"talk" | Symbol 16 MovieClip Frame 2 |
"sleep" | Symbol 19 MovieClip Frame 21 |
"sleep" | Symbol 24 MovieClip Frame 16 |
"eye1" | Symbol 26 MovieClip Frame 1 |
"open" | Symbol 35 MovieClip [itemBottle] Frame 2 |
"poisoned" | Symbol 35 MovieClip [itemBottle] Frame 3 |
"silent" | Symbol 90 MovieClip Frame 1 |
"talk" | Symbol 90 MovieClip Frame 2 |
"stop" | Symbol 99 MovieClip Frame 1 |
"walk" | Symbol 99 MovieClip Frame 2 |
"broken" | Symbol 160 MovieClip [itemWineglas] Frame 2 |
"mixed" | Symbol 181 MovieClip [itemFlowers] Frame 2 |
"glued" | Symbol 347 MovieClip Frame 2 |
"blocked_itemCherries" | Symbol 347 MovieClip Frame 3 |
"blocked_itemFlowers" | Symbol 347 MovieClip Frame 4 |
"itemKnife" | Symbol 360 MovieClip Frame 1 |
"itemWineglas" | Symbol 360 MovieClip Frame 2 |
"normal" | Symbol 378 MovieClip Frame 1 |
"happy" | Symbol 378 MovieClip Frame 2 |
"angry" | Symbol 378 MovieClip Frame 3 |
"empty" | Symbol 415 MovieClip [itemDish] Frame 1 |
"wCultureSmall" | Symbol 415 MovieClip [itemDish] Frame 2 |
"wCultureBig" | Symbol 415 MovieClip [itemDish] Frame 3 |
"wCultureFed" | Symbol 415 MovieClip [itemDish] Frame 4 |
"wCultureHappy" | Symbol 415 MovieClip [itemDish] Frame 5 |
"dry" | Symbol 476 MovieClip [itemDuster] Frame 1 |
"dryAndClean" | Symbol 476 MovieClip [itemDuster] Frame 2 |
"wet" | Symbol 476 MovieClip [itemDuster] Frame 3 |
"wetAndClean" | Symbol 476 MovieClip [itemDuster] Frame 4 |
"silent" | Symbol 514 MovieClip Frame 1 |
"talk" | Symbol 514 MovieClip Frame 2 |
"dry" | Symbol 559 MovieClip [ani_itemDuster_itemCleaner] Frame 14 |
"wet" | Symbol 559 MovieClip [ani_itemDuster_itemCleaner] Frame 20 |
"empty" | Symbol 587 MovieClip [itemPipette] Frame 1 |
"full" | Symbol 587 MovieClip [itemPipette] Frame 2 |
"empty" | Symbol 605 MovieClip [itemCup] Frame 2 |
"clean" | Symbol 605 MovieClip [itemCup] Frame 3 |
"filledWsample" | Symbol 605 MovieClip [itemCup] Frame 4 |
"mixed" | Symbol 610 MovieClip [itemPoison] Frame 2 |
"inLivingroom" | Symbol 624 MovieClip [itemStereo] Frame 1 |
"inBag" | Symbol 624 MovieClip [itemStereo] Frame 2 |
"plugged" | Symbol 624 MovieClip [itemStereo] Frame 3 |
"inMuseum" | Symbol 624 MovieClip [itemStereo] Frame 4 |
"off" | Symbol 626 MovieClip [itemLavalamp] Frame 1 |
"on" | Symbol 626 MovieClip [itemLavalamp] Frame 2 |
"wCultureSmall" | Symbol 626 MovieClip [itemLavalamp] Frame 3 |
"wCultureBig" | Symbol 626 MovieClip [itemLavalamp] Frame 4 |
"wCultureFed" | Symbol 626 MovieClip [itemLavalamp] Frame 5 |
"wCultureHappy" | Symbol 626 MovieClip [itemLavalamp] Frame 6 |
"empty" | Symbol 629 MovieClip [itemVase] Frame 2 |
"clean" | Symbol 629 MovieClip [itemVase] Frame 3 |
"filledWsample" | Symbol 629 MovieClip [itemVase] Frame 4 |
"closed" | Symbol 635 MovieClip [itemCupboard_office] Frame 1 |
"open" | Symbol 635 MovieClip [itemCupboard_office] Frame 2 |
"stop" | Symbol 718 MovieClip Frame 1 |
"walk" | Symbol 718 MovieClip Frame 2 |
"stop" | Symbol 731 MovieClip Frame 1 |
"walk" | Symbol 731 MovieClip Frame 2 |
"front" | Symbol 732 MovieClip Frame 1 |
"left" | Symbol 732 MovieClip Frame 2 |
"right" | Symbol 732 MovieClip Frame 3 |
"back" | Symbol 732 MovieClip Frame 4 |
"closed" | Symbol 779 MovieClip Frame 1 |
"open" | Symbol 779 MovieClip Frame 2 |
"closed" | Symbol 784 MovieClip Frame 1 |
"open" | Symbol 784 MovieClip Frame 2 |
"closed" | Symbol 789 MovieClip Frame 1 |
"open" | Symbol 789 MovieClip Frame 2 |
"stop" | Symbol 816 MovieClip Frame 1 |
"walk" | Symbol 816 MovieClip Frame 2 |
"stop" | Symbol 831 MovieClip Frame 1 |
"walk" | Symbol 831 MovieClip Frame 2 |
"stop" | Symbol 842 MovieClip Frame 1 |
"walk" | Symbol 842 MovieClip Frame 2 |
"front" | Symbol 843 MovieClip Frame 1 |
"left" | Symbol 843 MovieClip Frame 2 |
"right" | Symbol 843 MovieClip Frame 3 |
"back" | Symbol 843 MovieClip Frame 4 |
"stopTrain" | Symbol 907 MovieClip Frame 11 |
"stopTrain" | Symbol 923 MovieClip Frame 7 |
"stopTrain" | Symbol 926 MovieClip Frame 11 |
"stop" | Symbol 974 MovieClip Frame 1 |
"walk" | Symbol 974 MovieClip Frame 2 |
"stop" | Symbol 979 MovieClip Frame 1 |
"walk" | Symbol 979 MovieClip Frame 2 |
"stop" | Symbol 984 MovieClip Frame 1 |
"walk" | Symbol 984 MovieClip Frame 2 |
"front" | Symbol 985 MovieClip Frame 1 |
"left" | Symbol 985 MovieClip Frame 2 |
"right" | Symbol 985 MovieClip Frame 3 |
"back" | Symbol 985 MovieClip Frame 4 |
"blank" | Symbol 1038 MovieClip Frame 1 |
"stereo" | Symbol 1038 MovieClip Frame 2 |
"plugged" | Symbol 1038 MovieClip Frame 3 |
"silent" | Symbol 1061 MovieClip Frame 1 |
"talk" | Symbol 1061 MovieClip Frame 2 |
"stop" | Symbol 1070 MovieClip Frame 1 |
"walk" | Symbol 1070 MovieClip Frame 2 |
"w_renoir" | Symbol 1113 MovieClip Frame 163 |
"w_schwenk" | Symbol 1113 MovieClip Frame 167 |
"ende" | Symbol 1113 MovieClip Frame 170 |
"w_close" | Symbol 1113 MovieClip Frame 195 |
"dir_close" | Symbol 1113 MovieClip Frame 201 |
"letter" | Symbol 1113 MovieClip Frame 204 |
"w" | Symbol 1119 MovieClip Frame 136 |
"w_close" | Symbol 1120 MovieClip Frame 2 |
"dir_close" | Symbol 1120 MovieClip Frame 4 |
"totale" | Symbol 1120 MovieClip Frame 6 |
"fadeOut" | Symbol 1120 MovieClip Frame 8 |
"fadeIn" | Symbol 1120 MovieClip Frame 11 |
"park" | Symbol 1120 MovieClip Frame 18 |
Dynamic Text Variables
t | Symbol 52 EditableText | "" |
|