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

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

Kiss-the-Bride.swf

This is the info page for
Flash #126934

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


Text
Start Game

Play More Games

Options

Medium

High

Low

Music On/Off

Volume Level:

Exit

“Kiss the bride without any
formal guest being able to
spot you two! Be on the
look-out for the mother in
law, the best man and even
the groom!!”

Score:

Time left:

000

00:00

Score

Score :

Next Level

try again

Restart

Praist

Just
Married

Play Again

Score :

Congratulations !

ActionScript [AS1/AS2]

Frame 1
function __com_mochibot__(swfid, mc, lv, trk) { var x; var g; var s; var fv; var sb; var u; var res; var mb; var mbc; var pv; mb = "__mochibot__"; mbc = "mochibot.com"; g = (_global ? (_global) : (_level0._root)); if (g[mb + swfid]) { return(g[mb + swfid]); } s = System.security; x = mc._root.getSWFVersion; fv = (x ? (mc.getSWFVersion()) : ((_global ? 6 : 5))); if (!s) { s = {}; } sb = s.sandboxType; if (sb == "localWithFile") { return(null); } x = s.allowDomain; if (x) { s.allowDomain(mbc); } x = s.allowInsecureDomain; if (x) { s.allowInsecureDomain(mbc); } pv = ((fv == 5) ? (getVersion()) : (System.capabilities.version)); u = (((((((((((("http://" + mbc) + "/my/core.swf?mv=8&fv=") + fv) + "&v=") + escape(pv)) + "&swfid=") + escape(swfid)) + "&l=") + lv) + "&f=") + mc) + (sb ? ("&sb=" + sb) : "")) + (trk ? "&t=1" : ""); lv = ((fv > 6) ? (mc.getNextHighestDepth()) : ((g[mb + "level"] ? (g[mb + "level"] + 1) : (lv)))); g[mb + "level"] = lv; if (fv == 5) { res = "_level" + lv; if (!eval (res)) { loadMovieNum (u, lv); } } else { res = mc.createEmptyMovieClip(mb + swfid, lv); res.loadMovie(u); } return(res); } __com_mochibot__("aac86bba", this, 10301, true); function progress() { if (_root.getBytesLoaded() < _root.getBytesTotal()) { percent = Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100); preloader_mc.songProgress_mc._xscale = percent; preload.loadingbar.gotoAndStop(percent); } else if (_root.getBytesLoaded() == _root.getBytesTotal()) { clearInterval(interval); preload.gotoAndStop(20); } } _root.soundstatus = "on"; _root.musicOn = true; _root.masterVolume = (_root.lastVol = 100); var masterSound = new Sound(); masterSound.setVolume(_root.masterVolume); stop(); var interval = setInterval(progress, 5);
Frame 2
stop(); var music = new Sound(); music.attachSound("introsound"); if ((_root.soundstatus == "on") && (_root.musicOn == true)) { music.start(0, 99); }
Instance of Symbol 6 MovieClip [game_sound_ctrl] in Frame 2
on (release) { }
Frame 3
function randomChar() { var _local1 = charArray.length; while (_local1 > 0) { var _local2 = random(_local1); var _local3 = charArray.splice(_local2, 1); charArray.push(_local3[0]); _local1--; } } function redefineVariables() { _root.counter = 0; _root.currArrayPos = 0; _root.thisLevelScore = 0; progressBarMc._xscale = 0; _root.charActive = false; _root.currentKissingStatus = false; _root.kissingBtn.enabled = true; _root.kissInitiated = false; _root.endLevel = false; bg.char1.gotoAndStop(1); bg.char2.gotoAndStop(1); bg.char3.gotoAndStop(1); } function startGame() { clearInterval(appearenceInterval); clearInterval(countDownInterval); clearInterval(checkProgressInterval); trace("game starts"); randomChar(); _root.appearenceInterval = setInterval(charAppear, 1000); _root.countDownInterval = setInterval(countDown, 1000); _root.checkProgressInterval = setInterval(checkProgress, 10); } function charAppear() { _root.counter++; if (_root.counter == appearTimeArray[currArrayPos]) { var _local2 = charArray[currArrayPos]; _root.currChar = _local2; trace(_local2 + " appear now"); _root.bg[_local2].play(); } } function countDown() { if (countDownSeconds > 0) { countDownSeconds--; if ((countDownSeconds == 0) && (countDownMinutes == 0)) { trace("TIME UP !!!!!!!"); couple.gotoAndStop(1); bg.char1.gotoAndStop(1); bg.char2.gotoAndStop(1); bg.char3.gotoAndStop(1); _root.kissingBtn.enabled = false; _root.kissInitiated = false; _root.currentKissingStatus = false; _root.endLevel = true; if (progressBarMc._xscale < 100) { nxtLevel.gotoAndStop(2); _root.scoreTxt.text = 0; if (_root.mainScore > 0) { _root.nxtLevel.scoreList.text = _root.mainScore - 1; } else { _root.nxtLevel.scoreList.text = _root.mainScore; } trace("coming here"); _root.mainScore = 0; } nxtLevel._visible = true; clearInterval(_root.checkProgressInterval); clearInterval(_root.appearenceInterval); clearInterval(_root.countDownInterval); } } else { countDownSeconds = 59; countDownMinutes--; } if (countDownSeconds < 10) { timer.text = (("0" + countDownMinutes) + ":0") + countDownSeconds; } else { timer.text = (("0" + countDownMinutes) + ":") + countDownSeconds; } } function getFormal() { couple.gotoAndPlay("scared"); } function startNextSession() { clearInterval(_root.appearenceInterval); _root.counter = 0; appearenceInterval = setInterval(charAppear, 1000); if (currArrayPos == (charArray.length - 1)) { trace("start from begining"); randomChar(); currArrayPos = 0; } else { currArrayPos++; } } function checkProgress() { if (_root.currentKissingStatus && (couple._currentframe < 40)) { progressBarMc._xscale = progressBarMc._xscale + increaseFactor; scoreTxt.text = mainScore++; } if (progressBarMc._xscale >= 100) { clearInterval(checkProgressInterval); clearInterval(_root.appearenceInterval); clearInterval(countDownInterval); progressBarMc._xscale = 0; nxtLevel.gotoAndStop(1); nxtLevel._visible = true; if (_root.mainScore > 0) { _root.nxtLevel.scoreList.text = _root.mainScore - 1; } else { _root.nxtLevel.scoreList.text = _root.mainScore; } } } function getScore() { scoreTxt.text = mainScore++; } function beginLevel() { trace("level replayed"); _root.charArray = new Array("char1", "char2"); _root.appearTimeArray = new Array("5", "7"); _root.increaseFactor = 0.1; _root.countDownSeconds = 30; _root.countDownMinutes = 1; _root.timer.text = "01:30"; _root.redefineVariables(); _root.startGame(); } stop(); Stage.showMenu = false; var charArray = new Array("char1", "char2"); var appearTimeArray = new Array("5", "6"); var kissInitiated = false; var increaseFactor = 0.1; var appearenceInterval; var countDownInterval; var checkProgressInterval; var scoreInterval; var counter = 0; var countDownSeconds = 30; var countDownMinutes = 1; timer.text = "01:30"; var charActive = false; var currentKissingStatus = false; var currArrayPos = 0; var currChar; var mainScore = 0; progressBarMc._xscale = 0; kissingBtn.onRelease = function () { currentKissingStatus = false; couple.gotoAndPlay("normal"); }; kissingBtn.onPress = function () { currentKissingStatus = true; if (!kissInitiated) { kissInitiated = true; } couple.gotoAndPlay("kissing"); if (_root.charActive) { var _local2 = charArray[currArrayPos]; _root.currChar = _local2; _root.bg[_local2].gotoAndPlay("visited"); } }; startGame(); var music = new Sound(); music.attachSound("bgsound"); if ((_root.soundstatus == "on") && (_root.musicOn == true)) { music.start(0, 999999); }
Instance of Symbol 348 MovieClip "nxtLevel" in Frame 3
onClipEvent (load) { _visible = false; }
Instance of Symbol 351 MovieClip "restart" in Frame 3
on (release) { _parent.music.stop(); clearInterval(_root.checkProgressInterval); clearInterval(_root.appearenceInterval); clearInterval(_root.countDownInterval); _root.gotoAndStop(2); }
Instance of Symbol 344 MovieClip in Frame 3
on (release) { clearInterval(_root.checkProgressInterval); clearInterval(_root.appearenceInterval); clearInterval(_root.countDownInterval); _root.couple.gotoAndStop(1); _root.nextFrame(); }
Instance of Symbol 392 MovieClip "btn" in Frame 3
on (release) { getURL ("http://www.rainbowdressup.com/", "_blank"); }
Frame 4
function beginLevel() { trace("level replayed"); _root.charArray = new Array("char1", "char2", "char3"); _root.appearTimeArray = new Array("5", "7", "9"); _root.increaseFactor = 0.1; _root.countDownSeconds = 60; _root.countDownMinutes = 2; _root.timer.text = "03:00"; _root.redefineVariables(); _root.startGame(); } stop(); beginLevel();
Frame 5
function beginLevel() { trace("level replayed"); _root.charArray = new Array("char2", "char3"); _root.appearTimeArray = new Array("5", "7"); _root.increaseFactor = 0.1; _root.countDownSeconds = 60; _root.countDownMinutes = 2; _root.timer.text = "03:00"; _root.redefineVariables(); _root.startGame(); } stop(); beginLevel();
Frame 6
function beginLevel() { trace("level replayed"); _root.charArray = new Array("char1", "char2", "char3", "char4"); _root.appearTimeArray = new Array("5", "7", "9", "7"); _root.increaseFactor = 0.1; _root.countDownSeconds = 60; _root.countDownMinutes = 2; _root.timer.text = "03:00"; _root.redefineVariables(); _root.startGame(); } stop(); beginLevel();
Instance of Symbol 600 MovieClip "nxtLevel" in Frame 6
onClipEvent (load) { _visible = false; }
Symbol 6 MovieClip [game_sound_ctrl] Frame 1
stop();
Symbol 21 MovieClip Frame 20
Symbol 22 MovieClip Frame 1
Symbol 46 MovieClip Frame 30
stop();
Symbol 58 MovieClip Frame 21
stop();
Symbol 63 MovieClip Frame 1
stop();
Symbol 63 MovieClip Frame 100
stop();
Symbol 77 MovieClip Frame 1
stop();
Symbol 77 MovieClip Frame 2
stop();
Symbol 78 MovieClip Frame 1
Instance of Symbol 59 MovieClip "gotoRainbow" in Symbol 78 MovieClip Frame 1
on (release) { getURL ("http://www.rainbowdressup.com", "_blank"); }
Symbol 78 MovieClip Frame 11
stop();
Symbol 78 MovieClip Frame 20
stop();
Instance of Symbol 77 MovieClip "playGame" in Symbol 78 MovieClip Frame 20
on (release) { _root.gotoAndStop(2); }
Symbol 178 MovieClip Frame 25
stop();
Symbol 179 MovieClip Frame 40
stop();
Symbol 197 MovieClip Frame 1
stop(); if (_root.musicOn == false) { gotoAndStop (2); }
Symbol 201 MovieClip Frame 1
stop(); if (_root.masterVolume == 33) { gotoAndStop (2); } else if (_root.masterVolume == 66) { gotoAndStop (3); } else if (_root.masterVolume == 100) { _root.masterVolume == 100; gotoAndStop (4); }
Instance of Symbol 199 MovieClip "High" in Symbol 201 MovieClip Frame 1
on (release) { _parent.gotoAndStop(4); _root.masterVolume = 100; _root.masterSound.setVolume(_root.masterVolume); }
Instance of Symbol 199 MovieClip "medium" in Symbol 201 MovieClip Frame 1
on (release) { _parent.gotoAndStop(3); _root.masterVolume = 66; _root.masterSound.setVolume(_root.masterVolume); }
Instance of Symbol 199 MovieClip "low" in Symbol 201 MovieClip Frame 1
on (release) { _parent.gotoAndStop(2); _root.masterVolume = 33; _root.masterSound.setVolume(_root.masterVolume); }
Symbol 215 MovieClip Frame 1
stop();
Instance of Symbol 184 MovieClip in Symbol 215 MovieClip Frame 1
on (release) { _parent.gotoAndStop(3); }
Instance of Symbol 188 MovieClip in Symbol 215 MovieClip Frame 1
on (release) { getURL ("http://www.rainbowdressup.com/", "_blank"); }
Instance of Symbol 191 MovieClip in Symbol 215 MovieClip Frame 1
on (release) { _parent.gotoAndStop(2); }
Instance of Symbol 197 MovieClip "musicCheck" in Symbol 215 MovieClip Frame 2
on (release) { if (this._currentframe == 2) { gotoAndStop (1); if (_root.soundstatus == "on") { _root.music.start(0, 999999999); } _root.musicOn = true; } else { gotoAndStop (2); _root.music.stop(); _root.musicOn = false; } }
Instance of Symbol 209 MovieClip in Symbol 215 MovieClip Frame 2
on (release) { _parent.gotoAndStop(1); }
Instance of Symbol 214 MovieClip in Symbol 215 MovieClip Frame 3
on (release) { _parent._parent.music.stop(); clearInterval(_root.appearenceInterval); _root.nextFrame(); }
Symbol 231 Button
on (release) { _root.soundstatus = "off"; _root.lastVol = _root.masterVolume; _root.masterVolume = 0; _root.masterSound.setVolume(_root.masterVolume); _parent.music.stop(); gotoAndStop (2); }
Symbol 234 Button
on (release) { _root.soundstatus = "on"; _root.masterVolume = _root.lastVol; _root.masterSound.setVolume(_root.masterVolume); if (_root.musicOn == true) { _parent.music.start(0, 99999999); } gotoAndStop (1); }
Symbol 235 MovieClip Frame 1
stop();
Symbol 235 MovieClip Frame 2
stop();
Symbol 248 MovieClip Frame 1
stop(); _root.charActive = false;
Symbol 248 MovieClip Frame 81
_root.charActive = true; if (_root.currentKissingStatus) { gotoAndPlay ("visited"); _root.getFormal(); } else { gotoAndPlay ("normal"); }
Symbol 248 MovieClip Frame 197
gotoAndPlay ("back");
Symbol 248 MovieClip Frame 198
if (_root.currentKissingStatus) { gotoAndPlay ("visited"); _root.getFormal(); } else { gotoAndPlay ("normal"); }
Symbol 248 MovieClip Frame 228
gotoAndPlay ("visited");
Symbol 248 MovieClip Frame 229
_root.charActive = false;
Symbol 248 MovieClip Frame 292
_root.startNextSession();
Symbol 293 MovieClip Frame 1
stop(); _root.charActive = false;
Symbol 293 MovieClip Frame 30
_root.charActive = true; if (_root.currentKissingStatus) { gotoAndPlay ("visited"); _root.getFormal(); } else { gotoAndPlay ("normal"); }
Symbol 293 MovieClip Frame 141
gotoAndPlay ("back");
Symbol 293 MovieClip Frame 142
if (_root.currentKissingStatus) { gotoAndPlay ("visited"); _root.getFormal(); } else { gotoAndPlay ("normal"); }
Symbol 293 MovieClip Frame 166
gotoAndPlay ("visited");
Symbol 293 MovieClip Frame 167
_root.charActive = false;
Symbol 293 MovieClip Frame 178
_root.startNextSession();
Symbol 325 MovieClip Frame 1
stop();
Symbol 325 MovieClip Frame 10
stop();
Symbol 325 MovieClip Frame 55
stop();
Symbol 325 MovieClip Frame 60
gotoAndPlay ("scared");
Symbol 348 MovieClip Frame 1
stop();
Instance of Symbol 344 MovieClip in Symbol 348 MovieClip Frame 1
on (release) { clearInterval(_root.appearenceInterval); _parent._visible = false; _root.couple.gotoAndStop(1); _root.nextFrame(); }
Instance of Symbol 188 MovieClip in Symbol 348 MovieClip Frame 1
on (release) { getURL ("http://www.rainbowdressup.com/", "_blank"); }
Symbol 348 MovieClip Frame 2
stop();
Instance of Symbol 347 MovieClip in Symbol 348 MovieClip Frame 2
on (release) { clearInterval(_root.appearenceInterval); _parent._visible = false; _root.couple.gotoAndStop(1); _root.kissingBtn.enabled = true; _parent._parent.beginLevel(); _root.startGame(); }
Instance of Symbol 188 MovieClip in Symbol 348 MovieClip Frame 2
on (release) { getURL ("http://www.rainbowdressup.com/", "_blank"); }
Symbol 414 MovieClip Frame 1
stop(); _root.charActive = false;
Symbol 414 MovieClip Frame 17
_root.charActive = true; if (_root.currentKissingStatus) { gotoAndPlay ("visited"); _root.getFormal(); } else { gotoAndPlay ("normal"); }
Symbol 414 MovieClip Frame 58
gotoAndPlay ("back");
Symbol 414 MovieClip Frame 59
if (_root.currentKissingStatus) { gotoAndPlay ("visited"); _root.getFormal(); } else { gotoAndPlay ("normal"); }
Symbol 414 MovieClip Frame 90
gotoAndPlay ("visited");
Symbol 414 MovieClip Frame 91
_root.charActive = false;
Symbol 414 MovieClip Frame 105
if (!_root.endLevel) { _root.startNextSession(); }
Symbol 426 MovieClip Frame 3
gotoAndPlay (1);
Symbol 426 MovieClip Frame 4
if (!_root.currentKissingStatus) { this._parent.nextFrame(); gotoAndStop (1); }
Symbol 426 MovieClip Frame 25
gotoAndPlay (4);
Symbol 427 MovieClip Frame 1
stop(); _root.charActive = false;
Symbol 427 MovieClip Frame 26
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 27
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 28
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 29
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 30
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 31
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 32
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 33
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 34
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 35
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 36
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 37
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 38
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 39
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 40
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 41
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 42
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 43
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 44
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 45
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 46
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 47
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 48
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 49
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 50
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 51
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 52
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 53
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 54
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 55
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 56
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 57
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 58
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 59
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 60
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 61
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 62
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 63
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 64
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 65
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 66
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 67
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 68
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 69
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 70
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 71
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 72
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 73
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 74
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 75
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 76
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 77
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 78
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 79
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 80
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 81
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 82
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 83
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 84
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 85
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 86
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 87
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 88
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 89
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 90
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 91
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 92
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 93
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 94
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 95
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 96
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 97
_root.charActive = true; if (_root.currentKissingStatus) { goom_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { goom_walking.gotoAndPlay("normal"); this.play(); }
Symbol 427 MovieClip Frame 98
_root.charActive = false;
Symbol 427 MovieClip Frame 123
if (!_root.endLevel) { _root.startNextSession(); }
Symbol 457 MovieClip Frame 3
gotoAndPlay (1);
Symbol 457 MovieClip Frame 4
if (!_root.currentKissingStatus) { this._parent.nextFrame(); gotoAndStop (1); }
Symbol 457 MovieClip Frame 34
gotoAndPlay (4);
Symbol 458 MovieClip Frame 1
stop(); _root.charActive = false;
Symbol 458 MovieClip Frame 26
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 27
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 28
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 29
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 30
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 31
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 32
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 33
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 34
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 35
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 36
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 37
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 38
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 39
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 40
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 41
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 42
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 43
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 44
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 45
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 46
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 47
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 48
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 49
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 50
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 51
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 52
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 53
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 54
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 55
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 56
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 57
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 58
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 59
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 60
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 61
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 62
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 63
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 64
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 65
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 66
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 67
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 68
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 69
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 70
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 71
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 72
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 73
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 74
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 75
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 76
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 77
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 78
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 79
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 80
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 81
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 82
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 83
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 84
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 85
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 86
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 87
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 88
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 89
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 90
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 91
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 92
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 93
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 94
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 95
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 96
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 97
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 98
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 99
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 100
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 101
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 102
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 103
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 104
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 105
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 106
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 107
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 108
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 109
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 110
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 111
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 112
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 113
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 114
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 115
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 116
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 117
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 118
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 119
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 120
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 121
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 122
_root.charActive = true; if (_root.currentKissingStatus) { father_in_law_walking.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { father_in_law_walking.gotoAndPlay("normal"); this.play(); }
Symbol 458 MovieClip Frame 123
_root.charActive = false;
Symbol 458 MovieClip Frame 148
if (!_root.endLevel) { _root.startNextSession(); }
Symbol 496 MovieClip Frame 1
stop(); _root.charActive = false;
Symbol 496 MovieClip Frame 17
_root.charActive = true; if (_root.currentKissingStatus) { gotoAndPlay ("visited"); _root.getFormal(); } else { gotoAndPlay ("normal"); }
Symbol 496 MovieClip Frame 50
gotoAndPlay ("back");
Symbol 496 MovieClip Frame 51
if (_root.currentKissingStatus) { gotoAndPlay ("visited"); _root.getFormal(); } else { gotoAndPlay ("normal"); }
Symbol 496 MovieClip Frame 84
gotoAndPlay ("visited");
Symbol 496 MovieClip Frame 85
_root.charActive = false;
Symbol 496 MovieClip Frame 99
if (!_root.endLevel) { _root.startNextSession(); }
Symbol 500 MovieClip Frame 1
stop(); _root.charActive = false;
Symbol 500 MovieClip Frame 25
_root.charActive = true; if (_root.currentKissingStatus) { gotoAndPlay ("visited"); _root.getFormal(); } else { gotoAndPlay ("normal"); }
Symbol 500 MovieClip Frame 82
gotoAndPlay ("back");
Symbol 500 MovieClip Frame 83
if (_root.currentKissingStatus) { gotoAndPlay ("visited"); _root.getFormal(); } else { gotoAndPlay ("normal"); }
Symbol 500 MovieClip Frame 129
gotoAndPlay ("visited");
Symbol 500 MovieClip Frame 130
_root.charActive = false;
Symbol 500 MovieClip Frame 145
if (!_root.endLevel) { _root.startNextSession(); }
Symbol 503 MovieClip Frame 1
stop(); _root.charActive = false;
Symbol 503 MovieClip Frame 26
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 27
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 28
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 29
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 30
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 31
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 32
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 33
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 34
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 35
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 36
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 37
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 38
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 39
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 40
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 41
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 42
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 43
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 44
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 45
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 46
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 47
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 48
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 49
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 50
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 51
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 52
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 53
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 54
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 55
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 56
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 57
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 58
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 59
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 60
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 61
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 62
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 63
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 64
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 65
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 66
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 67
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 68
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 69
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 70
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 71
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 72
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 73
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 74
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 75
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 76
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 77
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 78
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 79
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 80
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 81
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 82
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 83
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 84
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 85
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 86
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 87
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 88
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 89
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 90
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 91
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 92
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 93
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 94
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 95
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 96
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 97
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 98
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 99
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 100
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 101
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 102
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 103
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 104
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 105
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 106
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 107
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 108
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 109
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 110
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 111
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 112
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 113
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 114
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 503 MovieClip Frame 115
_root.charActive = false;
Symbol 503 MovieClip Frame 140
if (!_root.endLevel) { _root.startNextSession(); }
Symbol 510 MovieClip Frame 1
stop(); _root.charActive = false;
Symbol 510 MovieClip Frame 25
_root.charActive = true; if (_root.currentKissingStatus) { gotoAndPlay ("visited"); _root.getFormal(); } else { gotoAndPlay ("normal"); }
Symbol 510 MovieClip Frame 84
gotoAndPlay ("back");
Symbol 510 MovieClip Frame 85
if (_root.currentKissingStatus) { gotoAndPlay ("visited"); _root.getFormal(); } else { gotoAndPlay ("normal"); }
Symbol 510 MovieClip Frame 129
gotoAndPlay ("visited");
Symbol 510 MovieClip Frame 130
_root.charActive = false;
Symbol 510 MovieClip Frame 145
_root.startNextSession();
Symbol 540 MovieClip Frame 1
stop();
Symbol 540 MovieClip Frame 2
stop();
Symbol 541 MovieClip Frame 1
stop(); _root.charActive = false;
Symbol 541 MovieClip Frame 26
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 27
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 28
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 29
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 30
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 31
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 32
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 33
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 34
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 35
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 36
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 37
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 38
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 39
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 40
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 41
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 42
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 43
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 44
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 45
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 46
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 47
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 48
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 49
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 50
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 51
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 52
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 53
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 54
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 55
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 56
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 57
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 58
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 59
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 60
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 61
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 62
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 63
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 64
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 65
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 66
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 67
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 68
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 69
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 70
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 71
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 72
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 73
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 74
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 75
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 76
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 77
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 78
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 79
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 80
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 81
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 82
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 83
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 84
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 85
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 86
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 87
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 88
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 89
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 90
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 91
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 92
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 93
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 94
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 95
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 96
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 97
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 98
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 99
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 100
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 101
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 102
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 103
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 104
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 105
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 106
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 107
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 108
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 109
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 110
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 111
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 112
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 113
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 114
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 115
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 116
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 117
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 118
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 119
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 120
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 121
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 122
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 123
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 124
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 125
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 126
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 127
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 128
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 129
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 130
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 131
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 132
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 133
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 134
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 135
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 136
_root.charActive = true; if (_root.currentKissingStatus) { ranger.gotoAndPlay("visited"); this.stop(); _root.getFormal(); } else { ranger.gotoAndPlay("normal"); this.play(); }
Symbol 541 MovieClip Frame 137
_root.charActive = false;
Symbol 541 MovieClip Frame 161
if (!_root.endLevel) { _root.startNextSession(); }
Symbol 561 MovieClip Frame 1
stop(); _root.charActive = false;
Symbol 561 MovieClip Frame 30
_root.charActive = true; if (_root.currentKissingStatus) { gotoAndPlay ("visited"); _root.getFormal(); } else { gotoAndPlay ("normal"); }
Symbol 561 MovieClip Frame 141
gotoAndPlay ("back");
Symbol 561 MovieClip Frame 142
if (_root.currentKissingStatus) { gotoAndPlay ("visited"); _root.getFormal(); } else { gotoAndPlay ("normal"); }
Symbol 561 MovieClip Frame 166
gotoAndPlay ("visited");
Symbol 561 MovieClip Frame 167
_root.charActive = false;
Symbol 561 MovieClip Frame 173
_root.startNextSession();
Symbol 572 MovieClip Frame 1
stop(); _root.charActive = false;
Symbol 572 MovieClip Frame 25
_root.charActive = true; if (_root.currentKissingStatus) { gotoAndPlay ("visited"); _root.getFormal(); } else { gotoAndPlay ("normal"); }
Symbol 572 MovieClip Frame 77
gotoAndPlay ("back");
Symbol 572 MovieClip Frame 78
if (_root.currentKissingStatus) { gotoAndPlay ("visited"); _root.getFormal(); } else { gotoAndPlay ("normal"); }
Symbol 572 MovieClip Frame 138
gotoAndPlay ("visited");
Symbol 572 MovieClip Frame 139
_root.charActive = false;
Symbol 572 MovieClip Frame 155
if (!_root.endLevel) { _root.startNextSession(); }
Symbol 600 MovieClip Frame 1
stop();
Instance of Symbol 593 MovieClip in Symbol 600 MovieClip Frame 1
on (release) { clearInterval(_root.appearenceInterval); _parent._visible = false; _root.couple.gotoAndStop(1); _root.gotoAndStop(3); }
Instance of Symbol 188 MovieClip in Symbol 600 MovieClip Frame 1
on (release) { getURL ("http://www.rainbowdressup.com", "_blank"); }
Instance of Symbol 347 MovieClip "tryAgain" in Symbol 600 MovieClip Frame 2
on (release) { clearInterval(_root.appearenceInterval); _parent._visible = false; _root.couple.gotoAndStop(1); _root.kissingBtn.enabled = true; _root.beginLevel(); }

Library Items

Symbol 1 Sound [introsound]
Symbol 2 Sound [bgsound]
Symbol 3 GraphicUsed by:6
Symbol 4 GraphicUsed by:6
Symbol 5 GraphicUsed by:6
Symbol 6 MovieClip [game_sound_ctrl]Uses:3 4 5Used by:Timeline
Symbol 7 GraphicUsed by:18 294
Symbol 8 GraphicUsed by:18
Symbol 9 GraphicUsed by:17
Symbol 10 GraphicUsed by:11
Symbol 11 MovieClipUses:10Used by:12 13
Symbol 12 MovieClipUses:11Used by:17
Symbol 13 MovieClipUses:11Used by:17
Symbol 14 GraphicUsed by:15
Symbol 15 MovieClipUses:14Used by:16 47
Symbol 16 MovieClipUses:15Used by:17 47
Symbol 17 MovieClipUses:9 12 13 16Used by:18
Symbol 18 MovieClipUses:7 8 17Used by:Timeline
Symbol 19 GraphicUsed by:20
Symbol 20 MovieClipUses:19Used by:21
Symbol 21 MovieClipUses:20Used by:22
Symbol 22 MovieClipUses:21Used by:59
Symbol 23 GraphicUsed by:41
Symbol 24 GraphicUsed by:41
Symbol 25 GraphicUsed by:41
Symbol 26 ShapeTweeningUsed by:41
Symbol 27 GraphicUsed by:41
Symbol 28 ShapeTweeningUsed by:41
Symbol 29 ShapeTweeningUsed by:41
Symbol 30 ShapeTweeningUsed by:41
Symbol 31 ShapeTweeningUsed by:41
Symbol 32 ShapeTweeningUsed by:41
Symbol 33 ShapeTweeningUsed by:41
Symbol 34 ShapeTweeningUsed by:41
Symbol 35 GraphicUsed by:41
Symbol 36 ShapeTweeningUsed by:41
Symbol 37 ShapeTweeningUsed by:41
Symbol 38 ShapeTweeningUsed by:41
Symbol 39 ShapeTweeningUsed by:41
Symbol 40 GraphicUsed by:41
Symbol 41 MovieClipUses:23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40Used by:47
Symbol 42 GraphicUsed by:43
Symbol 43 MovieClipUses:42Used by:46
Symbol 44 GraphicUsed by:45
Symbol 45 MovieClipUses:44Used by:46
Symbol 46 MovieClipUses:43 45Used by:47
Symbol 47 MovieClipUses:16 15 41 46Used by:59
Symbol 48 GraphicUsed by:49
Symbol 49 MovieClipUses:48Used by:54
Symbol 50 GraphicUsed by:54
Symbol 51 GraphicUsed by:52
Symbol 52 MovieClipUses:51Used by:54
Symbol 53 GraphicUsed by:54
Symbol 54 MovieClipUses:49 50 52 53Used by:59
Symbol 55 GraphicUsed by:56
Symbol 56 MovieClipUses:55Used by:57
Symbol 57 MovieClipUses:56Used by:58
Symbol 58 MovieClipUses:57Used by:59
Symbol 59 MovieClipUses:22 47 54 58Used by:78
Symbol 60 GraphicUsed by:63
Symbol 61 ShapeTweeningUsed by:63
Symbol 62 GraphicUsed by:63
Symbol 63 MovieClipUses:60 61 62Used by:78
Symbol 64 GraphicUsed by:73
Symbol 65 GraphicUsed by:73
Symbol 66 GraphicUsed by:72 73
Symbol 67 ShapeTweeningUsed by:72 73
Symbol 68 ShapeTweeningUsed by:72
Symbol 69 GraphicUsed by:72
Symbol 70 ShapeTweeningUsed by:72
Symbol 71 GraphicUsed by:72
Symbol 72 MovieClipUses:66 67 68 69 70 71Used by:73 77
Symbol 73 ButtonUses:64 65 72 66 67Used by:78
Symbol 74 GraphicUsed by:77
Symbol 75 GraphicUsed by:77
Symbol 76 GraphicUsed by:77
Symbol 77 MovieClipUses:74 75 76 72Used by:78
Symbol 78 MovieClipUses:59 63 73 77Used by:Timeline
Symbol 79 GraphicUsed by:Timeline
Symbol 80 GraphicUsed by:Timeline
Symbol 81 GraphicUsed by:179
Symbol 82 GraphicUsed by:173 179 312 325
Symbol 83 GraphicUsed by:179
Symbol 84 GraphicUsed by:179
Symbol 85 GraphicUsed by:179
Symbol 86 GraphicUsed by:179
Symbol 87 GraphicUsed by:179
Symbol 88 GraphicUsed by:179
Symbol 89 GraphicUsed by:179
Symbol 90 GraphicUsed by:179
Symbol 91 GraphicUsed by:179
Symbol 92 GraphicUsed by:179
Symbol 93 GraphicUsed by:179
Symbol 94 GraphicUsed by:179
Symbol 95 GraphicUsed by:179
Symbol 96 GraphicUsed by:179
Symbol 97 GraphicUsed by:179
Symbol 98 GraphicUsed by:179
Symbol 99 GraphicUsed by:179
Symbol 100 GraphicUsed by:179
Symbol 101 GraphicUsed by:179
Symbol 102 GraphicUsed by:179
Symbol 103 GraphicUsed by:179
Symbol 104 GraphicUsed by:179
Symbol 105 GraphicUsed by:179
Symbol 106 GraphicUsed by:179
Symbol 107 GraphicUsed by:179
Symbol 108 GraphicUsed by:109 428 514
Symbol 109 MovieClipUses:108Used by:179 294 325 426
Symbol 110 GraphicUsed by:111
Symbol 111 MovieClipUses:110Used by:179 325
Symbol 112 GraphicUsed by:113
Symbol 113 MovieClipUses:112Used by:179 325
Symbol 114 GraphicUsed by:115
Symbol 115 MovieClipUses:114Used by:179 325
Symbol 116 GraphicUsed by:117
Symbol 117 MovieClipUses:116Used by:179 325
Symbol 118 GraphicUsed by:119
Symbol 119 MovieClipUses:118Used by:179 325
Symbol 120 GraphicUsed by:121
Symbol 121 MovieClipUses:120Used by:179 325
Symbol 122 GraphicUsed by:134 299 325
Symbol 123 GraphicUsed by:130 318
Symbol 124 GraphicUsed by:125
Symbol 125 MovieClipUses:124Used by:130 318
Symbol 126 GraphicUsed by:130 318
Symbol 127 GraphicUsed by:130 300
Symbol 128 GraphicUsed by:130
Symbol 129 GraphicUsed by:130
Symbol 130 MovieClipUses:123 125 126 127 128 129Used by:134
Symbol 131 GraphicUsed by:134
Symbol 132 GraphicUsed by:133
Symbol 133 MovieClipUses:132Used by:134
Symbol 134 MovieClipUses:122 130 131 133Used by:179 325
Symbol 135 GraphicUsed by:136
Symbol 136 MovieClipUses:135Used by:179 325
Symbol 137 GraphicUsed by:179 325
Symbol 138 GraphicUsed by:139
Symbol 139 MovieClipUses:138Used by:179 325
Symbol 140 GraphicUsed by:179
Symbol 141 GraphicUsed by:157
Symbol 142 GraphicUsed by:147
Symbol 143 GraphicUsed by:144
Symbol 144 MovieClipUses:143Used by:147 154
Symbol 145 GraphicUsed by:146
Symbol 146 MovieClipUses:145Used by:147 156
Symbol 147 MovieClipUses:142 144 146Used by:157
Symbol 148 GraphicUsed by:154
Symbol 149 GraphicUsed by:150
Symbol 150 MovieClipUses:149Used by:153
Symbol 151 GraphicUsed by:152
Symbol 152 MovieClipUses:151Used by:153
Symbol 153 MovieClipUses:150 152Used by:154
Symbol 154 MovieClipUses:148 144 153Used by:157
Symbol 155 GraphicUsed by:156
Symbol 156 MovieClipUses:155 146Used by:157
Symbol 157 MovieClipUses:141 147 154 156Used by:159
Symbol 158 GraphicUsed by:159
Symbol 159 MovieClipUses:157 158Used by:179 325
Symbol 160 GraphicUsed by:179
Symbol 161 GraphicUsed by:173
Symbol 162 GraphicUsed by:173 312 325
Symbol 163 GraphicUsed by:173 312 325
Symbol 164 GraphicUsed by:171
Symbol 165 GraphicUsed by:171 310
Symbol 166 GraphicUsed by:171
Symbol 167 GraphicUsed by:171
Symbol 168 GraphicUsed by:171
Symbol 169 GraphicUsed by:171
Symbol 170 GraphicUsed by:171
Symbol 171 MovieClipUses:164 165 166 167 168 169 170Used by:173
Symbol 172 GraphicUsed by:173
Symbol 173 MovieClipUses:161 82 162 163 171 172Used by:179 325
Symbol 174 GraphicUsed by:175
Symbol 175 MovieClipUses:174Used by:178
Symbol 176 GraphicUsed by:177
Symbol 177 MovieClipUses:176Used by:178
Symbol 178 MovieClipUses:175 177Used by:179
Symbol 179 MovieClipUses:81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 109 111 113 115 117 119 121 134 136 137 139 140 159 160 173 178Used by:Timeline
Symbol 180 GraphicUsed by:Timeline
Symbol 181 GraphicUsed by:184
Symbol 182 FontUsed by:183 327 328
Symbol 183 TextUses:182Used by:184
Symbol 184 MovieClipUses:181 183Used by:215
Symbol 185 GraphicUsed by:188
Symbol 186 FontUsed by:187 190 202 203 204 205 206 208 212 329 330 339 346 350 411 592 594 595 596 599
Symbol 187 TextUses:186Used by:188
Symbol 188 MovieClipUses:185 187Used by:215 348 600
Symbol 189 GraphicUsed by:191
Symbol 190 TextUses:186Used by:191
Symbol 191 MovieClipUses:189 190Used by:215
Symbol 192 GraphicUsed by:215
Symbol 193 GraphicUsed by:215
Symbol 194 GraphicUsed by:215
Symbol 195 GraphicUsed by:197
Symbol 196 GraphicUsed by:197
Symbol 197 MovieClipUses:195 196Used by:215
Symbol 198 GraphicUsed by:199
Symbol 199 MovieClipUses:198Used by:201
Symbol 200 GraphicUsed by:201
Symbol 201 MovieClipUses:199 200Used by:215
Symbol 202 TextUses:186Used by:215
Symbol 203 TextUses:186Used by:215
Symbol 204 TextUses:186Used by:215
Symbol 205 TextUses:186Used by:215
Symbol 206 TextUses:186Used by:215
Symbol 207 GraphicUsed by:209
Symbol 208 TextUses:186Used by:209
Symbol 209 MovieClipUses:207 208Used by:215
Symbol 210 GraphicUsed by:215
Symbol 211 GraphicUsed by:215
Symbol 212 TextUses:186Used by:215
Symbol 213 GraphicUsed by:214
Symbol 214 MovieClipUses:213Used by:215
Symbol 215 MovieClipUses:184 188 191 192 193 194 197 201 202 203 204 205 206 209 210 211 212 214Used by:Timeline
Symbol 216 GraphicUsed by:Timeline
Symbol 217 GraphicUsed by:229
Symbol 218 GraphicUsed by:229
Symbol 219 GraphicUsed by:229
Symbol 220 GraphicUsed by:229
Symbol 221 GraphicUsed by:229
Symbol 222 GraphicUsed by:229
Symbol 223 GraphicUsed by:229
Symbol 224 GraphicUsed by:229
Symbol 225 GraphicUsed by:229
Symbol 226 GraphicUsed by:229
Symbol 227 GraphicUsed by:229
Symbol 228 GraphicUsed by:229
Symbol 229 MovieClipUses:217 218 219 220 221 222 223 224 225 226 227 228Used by:235
Symbol 230 GraphicUsed by:231 234
Symbol 231 ButtonUses:230Used by:235
Symbol 232 GraphicUsed by:233
Symbol 233 MovieClipUses:232Used by:235
Symbol 234 ButtonUses:230Used by:235
Symbol 235 MovieClipUses:229 231 233 234Used by:Timeline
Symbol 236 GraphicUsed by:294
Symbol 237 GraphicUsed by:294
Symbol 238 GraphicUsed by:294
Symbol 239 GraphicUsed by:294
Symbol 240 GraphicUsed by:294
Symbol 241 GraphicUsed by:242 248 555
Symbol 242 MovieClipUses:241Used by:248
Symbol 243 GraphicUsed by:248
Symbol 244 GraphicUsed by:248
Symbol 245 GraphicUsed by:248
Symbol 246 GraphicUsed by:248
Symbol 247 GraphicUsed by:248
Symbol 248 MovieClipUses:242 241 243 244 245 246 247 SS1Used by:294
Symbol 249 GraphicUsed by:294
Symbol 250 GraphicUsed by:293
Symbol 251 GraphicUsed by:293
Symbol 252 GraphicUsed by:293
Symbol 253 GraphicUsed by:276
Symbol 254 GraphicUsed by:259
Symbol 255 GraphicUsed by:259 548
Symbol 256 GraphicUsed by:259
Symbol 257 GraphicUsed by:259
Symbol 258 GraphicUsed by:259
Symbol 259 MovieClipUses:254 255 256 257 258Used by:276 293
Symbol 260 GraphicUsed by:261 549
Symbol 261 MovieClipUses:260Used by:276 293
Symbol 262 GraphicUsed by:263
Symbol 263 MovieClipUses:262Used by:276 293
Symbol 264 GraphicUsed by:265
Symbol 265 MovieClipUses:264Used by:275 288
Symbol 266 GraphicUsed by:275 556
Symbol 267 GraphicUsed by:274 287 555 559
Symbol 268 GraphicUsed by:269 554
Symbol 269 MovieClipUses:268Used by:274 287
Symbol 270 GraphicUsed by:274 555
Symbol 271 GraphicUsed by:274
Symbol 272 GraphicUsed by:274 555
Symbol 273 GraphicUsed by:274 555
Symbol 274 MovieClipUses:267 269 270 271 272 273Used by:275
Symbol 275 MovieClipUses:265 266 274Used by:276 293
Symbol 276 MovieClipUses:253 259 261 263 275Used by:293
Symbol 277 GraphicUsed by:293
Symbol 278 GraphicUsed by:293
Symbol 279 GraphicUsed by:293
Symbol 280 GraphicUsed by:293
Symbol 281 GraphicUsed by:288 560
Symbol 282 GraphicUsed by:288 560
Symbol 283 GraphicUsed by:287 559
Symbol 284 GraphicUsed by:287 559
Symbol 285 GraphicUsed by:287 559
Symbol 286 GraphicUsed by:287 559
Symbol 287 MovieClipUses:267 269 283 284 285 286Used by:288
Symbol 288 MovieClipUses:281 265 282 287Used by:293
Symbol 289 GraphicUsed by:293
Symbol 290 GraphicUsed by:293
Symbol 291 GraphicUsed by:293
Symbol 292 GraphicUsed by:293
Symbol 293 MovieClipUses:250 251 252 276 277 278 279 280 259 261 263 288 275 289 290 291 292 SS2Used by:294
Symbol 294 MovieClipUses:236 237 238 239 240 109 7 248 249 293Used by:Timeline
Symbol 295 GraphicUsed by:325
Symbol 296 GraphicUsed by:325
Symbol 297 GraphicUsed by:298
Symbol 298 MovieClipUses:297Used by:325
Symbol 299 MovieClipUses:122Used by:325
Symbol 300 MovieClipUses:127Used by:325
Symbol 301 GraphicUsed by:302
Symbol 302 MovieClipUses:301Used by:325
Symbol 303 GraphicUsed by:304
Symbol 304 MovieClipUses:303Used by:325
Symbol 305 GraphicUsed by:306
Symbol 306 MovieClipUses:305Used by:325
Symbol 307 GraphicUsed by:325
Symbol 308 GraphicUsed by:312
Symbol 309 GraphicUsed by:312 325
Symbol 310 MovieClipUses:165Used by:312
Symbol 311 GraphicUsed by:312
Symbol 312 MovieClipUses:308 309 82 162 163 310 311Used by:325
Symbol 313 GraphicUsed by:325
Symbol 314 GraphicUsed by:315
Symbol 315 MovieClipUses:314Used by:316
Symbol 316 MovieClipUses:315Used by:317
Symbol 317 MovieClipUses:316Used by:325
Symbol 318 MovieClipUses:123 125 126Used by:325
Symbol 319 GraphicUsed by:325
Symbol 320 GraphicUsed by:325
Symbol 321 GraphicUsed by:325
Symbol 322 GraphicUsed by:323
Symbol 323 MovieClipUses:322Used by:325
Symbol 324 GraphicUsed by:325
Symbol 325 MovieClipUses:109 111 113 115 117 119 121 134 136 137 139 295 159 296 173 298 299 300 302 304 306 307 312 313 317 122 318 319 320 309 82 162 163 321 323 324 SS3Used by:Timeline
Symbol 326 GraphicUsed by:Timeline
Symbol 327 TextUses:182Used by:Timeline
Symbol 328 TextUses:182Used by:Timeline
Symbol 329 EditableTextUses:186Used by:Timeline
Symbol 330 EditableTextUses:186Used by:Timeline
Symbol 331 GraphicUsed by:Timeline
Symbol 332 GraphicUsed by:333
Symbol 333 MovieClipUses:332Used by:Timeline
Symbol 334 GraphicUsed by:335
Symbol 335 ButtonUses:334Used by:Timeline
Symbol 336 GraphicUsed by:348
Symbol 337 GraphicUsed by:348
Symbol 338 GraphicUsed by:348
Symbol 339 EditableTextUses:186Used by:348
Symbol 340 FontUsed by:341 343
Symbol 341 TextUses:340Used by:348
Symbol 342 GraphicUsed by:344
Symbol 343 TextUses:340Used by:344
Symbol 344 MovieClipUses:342 343Used by:348  Timeline
Symbol 345 GraphicUsed by:347 593
Symbol 346 TextUses:186Used by:347
Symbol 347 MovieClipUses:345 346Used by:348 600
Symbol 348 MovieClipUses:336 337 338 339 341 344 188 347Used by:Timeline
Symbol 349 GraphicUsed by:351
Symbol 350 TextUses:186Used by:351
Symbol 351 MovieClipUses:349 350Used by:Timeline
Symbol 352 GraphicUsed by:392
Symbol 353 GraphicUsed by:389 390
Symbol 354 GraphicUsed by:355 390
Symbol 355 MovieClipUses:354Used by:356 377
Symbol 356 MovieClipUses:355Used by:389
Symbol 357 GraphicUsed by:358 390
Symbol 358 MovieClipUses:357Used by:374
Symbol 359 GraphicUsed by:360 390
Symbol 360 MovieClipUses:359Used by:374
Symbol 361 GraphicUsed by:362 390
Symbol 362 MovieClipUses:361Used by:374
Symbol 363 GraphicUsed by:364 390
Symbol 364 MovieClipUses:363Used by:374
Symbol 365 GraphicUsed by:366 390
Symbol 366 MovieClipUses:365Used by:374
Symbol 367 GraphicUsed by:369 390
Symbol 368 GraphicUsed by:369
Symbol 369 MovieClipUses:367 368Used by:374
Symbol 370 GraphicUsed by:374 390
Symbol 371 GraphicUsed by:372 390
Symbol 372 MovieClipUses:371Used by:373
Symbol 373 MovieClipUses:372Used by:374
Symbol 374 MovieClipUses:358 360 362 364 366 369 370 373Used by:389
Symbol 375 GraphicUsed by:376 390
Symbol 376 MovieClipUses:375Used by:377
Symbol 377 MovieClipUses:355 376Used by:389
Symbol 378 GraphicUsed by:379 390
Symbol 379 MovieClipUses:378Used by:380
Symbol 380 MovieClipUses:379Used by:389
Symbol 381 GraphicUsed by:382 390
Symbol 382 MovieClipUses:381Used by:383
Symbol 383 MovieClipUses:382Used by:384
Symbol 384 MovieClipUses:383Used by:389
Symbol 385 GraphicUsed by:386
Symbol 386 ButtonUses:385Used by:389 390
Symbol 387 GraphicUsed by:388
Symbol 388 ButtonUses:387Used by:389 390
Symbol 389 MovieClipUses:353 356 374 377 380 384 386 388Used by:390
Symbol 390 ButtonUses:389 353 354 357 359 361 363 365 367 370 371 375 378 381 386 388Used by:392
Symbol 391 GraphicUsed by:392
Symbol 392 MovieClipUses:352 390 391Used by:Timeline
Symbol 393 GraphicUsed by:407
Symbol 394 GraphicUsed by:404
Symbol 395 GraphicUsed by:396
Symbol 396 MovieClipUses:395Used by:400 404
Symbol 397 GraphicUsed by:404
Symbol 398 GraphicUsed by:400
Symbol 399 GraphicUsed by:400
Symbol 400 MovieClipUses:398 396 399Used by:404
Symbol 401 GraphicUsed by:404
Symbol 402 GraphicUsed by:404
Symbol 403 GraphicUsed by:404
Symbol 404 MovieClipUses:394 396 397 400 401 402 403Used by:407
Symbol 405 GraphicUsed by:407
Symbol 406 GraphicUsed by:407
Symbol 407 MovieClipUses:393 404 405 406Used by:459
Symbol 408 GraphicUsed by:414
Symbol 409 GraphicUsed by:414 496
Symbol 410 GraphicUsed by:414 496
Symbol 411 TextUses:186Used by:414
Symbol 412 GraphicUsed by:413
Symbol 413 MovieClipUses:412Used by:414 496
Symbol 414 MovieClipUses:408 409 410 411 413 SS4Used by:459
Symbol 415 GraphicUsed by:424
Symbol 416 GraphicUsed by:424
Symbol 417 GraphicUsed by:424
Symbol 418 GraphicUsed by:424
Symbol 419 GraphicUsed by:424
Symbol 420 GraphicUsed by:424
Symbol 421 GraphicUsed by:424
Symbol 422 GraphicUsed by:424
Symbol 423 GraphicUsed by:424
Symbol 424 MovieClipUses:415 416 417 418 419 420 421 422 423Used by:426
Symbol 425 GraphicUsed by:426
Symbol 426 MovieClipUses:109 424 425 SS5Used by:427 503
Symbol 427 MovieClipUses:426Used by:459
Symbol 428 MovieClipUses:108Used by:457
Symbol 429 GraphicUsed by:451
Symbol 430 GraphicUsed by:451 457
Symbol 431 GraphicUsed by:432
Symbol 432 MovieClipUses:431Used by:433
Symbol 433 MovieClipUses:432Used by:451 457
Symbol 434 GraphicUsed by:451
Symbol 435 GraphicUsed by:451
Symbol 436 GraphicUsed by:451
Symbol 437 GraphicUsed by:451
Symbol 438 GraphicUsed by:451
Symbol 439 GraphicUsed by:451
Symbol 440 GraphicUsed by:451
Symbol 441 GraphicUsed by:451
Symbol 442 GraphicUsed by:451
Symbol 443 GraphicUsed by:451
Symbol 444 GraphicUsed by:451
Symbol 445 GraphicUsed by:451
Symbol 446 GraphicUsed by:451
Symbol 447 GraphicUsed by:451
Symbol 448 GraphicUsed by:451
Symbol 449 GraphicUsed by:451
Symbol 450 GraphicUsed by:451
Symbol 451 MovieClipUses:429 430 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450Used by:457
Symbol 452 GraphicUsed by:457
Symbol 453 GraphicUsed by:457
Symbol 454 MovieClipUsed by:457
Symbol 455 MovieClipUsed by:456
Symbol 456 MovieClipUses:455Used by:457
Symbol 457 MovieClipUses:428 451 452 430 433 453 454 456 SS6Used by:458
Symbol 458 MovieClipUses:457Used by:459
Symbol 459 MovieClipUses:407 414 427 458Used by:Timeline
Symbol 460 GraphicUsed by:502
Symbol 461 GraphicUsed by:502 587
Symbol 462 GraphicUsed by:502
Symbol 463 GraphicUsed by:502
Symbol 464 GraphicUsed by:502
Symbol 465 GraphicUsed by:502
Symbol 466 GraphicUsed by:502
Symbol 467 GraphicUsed by:502
Symbol 468 GraphicUsed by:502
Symbol 469 GraphicUsed by:502
Symbol 470 GraphicUsed by:502
Symbol 471 GraphicUsed by:502
Symbol 472 GraphicUsed by:502
Symbol 473 GraphicUsed by:502
Symbol 474 GraphicUsed by:502
Symbol 475 GraphicUsed by:502
Symbol 476 GraphicUsed by:502
Symbol 477 GraphicUsed by:502
Symbol 478 GraphicUsed by:502
Symbol 479 GraphicUsed by:502
Symbol 480 GraphicUsed by:502
Symbol 481 GraphicUsed by:502
Symbol 482 GraphicUsed by:502
Symbol 483 GraphicUsed by:502
Symbol 484 GraphicUsed by:502
Symbol 485 GraphicUsed by:502
Symbol 486 GraphicUsed by:502
Symbol 487 GraphicUsed by:502
Symbol 488 GraphicUsed by:502
Symbol 489 GraphicUsed by:502
Symbol 490 GraphicUsed by:502
Symbol 491 GraphicUsed by:502
Symbol 492 GraphicUsed by:493
Symbol 493 MovieClipUses:492Used by:502
Symbol 494 GraphicUsed by:502
Symbol 495 GraphicUsed by:496
Symbol 496 MovieClipUses:495 409 410 413 SS7Used by:502
Symbol 497 GraphicUsed by:500
Symbol 498 GraphicUsed by:500
Symbol 499 GraphicUsed by:500
Symbol 500 MovieClipUses:497 498 499 SS8Used by:502
Symbol 501 GraphicUsed by:502
Symbol 502 MovieClipUses:460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 493 494 496 500 501Used by:Timeline
Symbol 503 MovieClipUses:426Used by:Timeline
Symbol 504 GraphicUsed by:Timeline
Symbol 505 GraphicUsed by:587
Symbol 506 GraphicUsed by:587
Symbol 507 GraphicUsed by:510
Symbol 508 GraphicUsed by:510
Symbol 509 GraphicUsed by:510
Symbol 510 MovieClipUses:507 508 509 SS9Used by:587
Symbol 511 GraphicUsed by:512
Symbol 512 MovieClipUses:511Used by:587
Symbol 513 GraphicUsed by:587
Symbol 514 MovieClipUses:108Used by:540
Symbol 515 GraphicUsed by:537 540
Symbol 516 GraphicUsed by:537 540
Symbol 517 GraphicUsed by:518
Symbol 518 MovieClipUses:517Used by:519
Symbol 519 MovieClipUses:518Used by:537
Symbol 520 GraphicUsed by:537 540
Symbol 521 GraphicUsed by:537
Symbol 522 GraphicUsed by:537
Symbol 523 GraphicUsed by:537
Symbol 524 GraphicUsed by:537
Symbol 525 GraphicUsed by:537
Symbol 526 GraphicUsed by:537
Symbol 527 GraphicUsed by:537
Symbol 528 GraphicUsed by:537
Symbol 529 GraphicUsed by:537
Symbol 530 GraphicUsed by:537
Symbol 531 GraphicUsed by:537
Symbol 532 GraphicUsed by:537
Symbol 533 GraphicUsed by:537
Symbol 534 GraphicUsed by:537
Symbol 535 GraphicUsed by:537
Symbol 536 GraphicUsed by:537
Symbol 537 MovieClipUses:515 516 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536Used by:540
Symbol 538 GraphicUsed by:540
Symbol 539 GraphicUsed by:540
Symbol 540 MovieClipUses:514 537 515 516 520 538 539 SS10Used by:541
Symbol 541 MovieClipUses:540Used by:587
Symbol 542 GraphicUsed by:561
Symbol 543 GraphicUsed by:557
Symbol 544 GraphicUsed by:548
Symbol 545 GraphicUsed by:548
Symbol 546 GraphicUsed by:548
Symbol 547 GraphicUsed by:548
Symbol 548 MovieClipUses:544 255 545 546 547Used by:557 561
Symbol 549 MovieClipUses:260Used by:557 561
Symbol 550 GraphicUsed by:551
Symbol 551 MovieClipUses:550Used by:557 561
Symbol 552 GraphicUsed by:553
Symbol 553 MovieClipUses:552Used by:556 560
Symbol 554 MovieClipUses:268Used by:555 559
Symbol 555 MovieClipUses:267 554 270 241 272 273Used by:556
Symbol 556 MovieClipUses:553 266 555Used by:557
Symbol 557 MovieClipUses:543 548 549 551 556Used by:561
Symbol 558 GraphicUsed by:561
Symbol 559 MovieClipUses:267 554 283 284 285 286Used by:560
Symbol 560 MovieClipUses:281 553 282 559Used by:561
Symbol 561 MovieClipUses:542 557 558 548 549 551 560 SS11Used by:587
Symbol 562 GraphicUsed by:572
Symbol 563 GraphicUsed by:572
Symbol 564 GraphicUsed by:572
Symbol 565 GraphicUsed by:572
Symbol 566 GraphicUsed by:572
Symbol 567 GraphicUsed by:572
Symbol 568 GraphicUsed by:572
Symbol 569 GraphicUsed by:572
Symbol 570 GraphicUsed by:572
Symbol 571 GraphicUsed by:572
Symbol 572 MovieClipUses:562 563 564 565 566 567 568 569 570 571 SS12Used by:587
Symbol 573 GraphicUsed by:587
Symbol 574 GraphicUsed by:587
Symbol 575 GraphicUsed by:576
Symbol 576 MovieClipUses:575Used by:587
Symbol 577 GraphicUsed by:587
Symbol 578 GraphicUsed by:579
Symbol 579 MovieClipUses:578Used by:587
Symbol 580 GraphicUsed by:587
Symbol 581 FontUsed by:582
Symbol 582 TextUses:581Used by:587
Symbol 583 GraphicUsed by:587
Symbol 584 GraphicUsed by:585
Symbol 585 MovieClipUses:584Used by:587
Symbol 586 GraphicUsed by:587
Symbol 587 MovieClipUses:505 506 510 512 513 541 561 572 573 574 576 577 579 580 582 461 583 585 586Used by:Timeline
Symbol 588 GraphicUsed by:Timeline
Symbol 589 GraphicUsed by:600
Symbol 590 GraphicUsed by:600
Symbol 591 GraphicUsed by:600
Symbol 592 TextUses:186Used by:593
Symbol 593 MovieClipUses:345 592Used by:600
Symbol 594 EditableTextUses:186Used by:600
Symbol 595 TextUses:186Used by:600
Symbol 596 TextUses:186Used by:600
Symbol 597 Sound [beepsfx]Used by:600
Symbol 598 GraphicUsed by:600
Symbol 599 EditableTextUses:186Used by:600
Symbol 600 MovieClipUses:589 590 591 593 594 595 596 188 597 598 599 347Used by:Timeline
Streaming Sound 1Used by:Symbol 248 MovieClip
Streaming Sound 2Used by:Symbol 293 MovieClip
Streaming Sound 3Used by:Symbol 325 MovieClip
Streaming Sound 4Used by:Symbol 414 MovieClip
Streaming Sound 5Used by:Symbol 426 MovieClip
Streaming Sound 6Used by:Symbol 457 MovieClip
Streaming Sound 7Used by:Symbol 496 MovieClip
Streaming Sound 8Used by:Symbol 500 MovieClip
Streaming Sound 9Used by:Symbol 510 MovieClip
Streaming Sound 10Used by:Symbol 540 MovieClip
Streaming Sound 11Used by:Symbol 561 MovieClip
Streaming Sound 12Used by:Symbol 572 MovieClip

Instance Names

"preload"Frame 1Symbol 78 MovieClip
"nxtLevel"Frame 2Symbol 215 MovieClip
"bg"Frame 3Symbol 294 MovieClip
"couple"Frame 3Symbol 325 MovieClip
"scoreTxt"Frame 3Symbol 329 EditableText
"timer"Frame 3Symbol 330 EditableText
"progressBarMc"Frame 3Symbol 333 MovieClip
"kissingBtn"Frame 3Symbol 335 Button
"nxtLevel"Frame 3Symbol 348 MovieClip
"restart"Frame 3Symbol 351 MovieClip
"btn"Frame 3Symbol 392 MovieClip
"bg"Frame 4Symbol 459 MovieClip
"bg"Frame 5Symbol 502 MovieClip
"char1"Frame 5Symbol 503 MovieClip
"bg"Frame 6Symbol 587 MovieClip
"couple"Frame 6Symbol 325 MovieClip
"nxtLevel"Frame 6Symbol 600 MovieClip
"bar_mc"Symbol 22 MovieClip Frame 1Symbol 21 MovieClip
"gotoRainbow"Symbol 78 MovieClip Frame 1Symbol 59 MovieClip
"loadingbar"Symbol 78 MovieClip Frame 1Symbol 63 MovieClip
"playGame"Symbol 78 MovieClip Frame 20Symbol 77 MovieClip
"High"Symbol 201 MovieClip Frame 1Symbol 199 MovieClip
"medium"Symbol 201 MovieClip Frame 1Symbol 199 MovieClip
"low"Symbol 201 MovieClip Frame 1Symbol 199 MovieClip
"musicCheck"Symbol 215 MovieClip Frame 2Symbol 197 MovieClip
"char1"Symbol 294 MovieClip Frame 1Symbol 248 MovieClip
"char2"Symbol 294 MovieClip Frame 1Symbol 293 MovieClip
"scoreList"Symbol 348 MovieClip Frame 1Symbol 339 EditableText
"goom_walking"Symbol 427 MovieClip Frame 1Symbol 426 MovieClip
"father_in_law_walking"Symbol 458 MovieClip Frame 1Symbol 457 MovieClip
"char2"Symbol 459 MovieClip Frame 1Symbol 414 MovieClip
"char1"Symbol 459 MovieClip Frame 1Symbol 427 MovieClip
"char3"Symbol 459 MovieClip Frame 1Symbol 458 MovieClip
"char3"Symbol 502 MovieClip Frame 1Symbol 496 MovieClip
"char2"Symbol 502 MovieClip Frame 1Symbol 500 MovieClip
"goom_walking"Symbol 503 MovieClip Frame 1Symbol 426 MovieClip
"father_in_law_walking"Symbol 541 MovieClip Frame 1Symbol 540 MovieClip
"char3"Symbol 587 MovieClip Frame 1Symbol 510 MovieClip
"char2"Symbol 587 MovieClip Frame 1Symbol 541 MovieClip
"char1"Symbol 587 MovieClip Frame 1Symbol 561 MovieClip
"char4"Symbol 587 MovieClip Frame 1Symbol 572 MovieClip
"scoreList"Symbol 600 MovieClip Frame 1Symbol 594 EditableText
"scoreList"Symbol 600 MovieClip Frame 2Symbol 599 EditableText
"tryAgain"Symbol 600 MovieClip Frame 2Symbol 347 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access network only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 1 as "introsound"
ExportAssets (56)Timeline Frame 1Symbol 2 as "bgsound"
ExportAssets (56)Timeline Frame 1Symbol 6 as "game_sound_ctrl"
ExportAssets (56)Timeline Frame 6Symbol 597 as "beepsfx"

Labels

"on"Symbol 6 MovieClip [game_sound_ctrl] Frame 2
"off"Symbol 6 MovieClip [game_sound_ctrl] Frame 3
"loading"Symbol 78 MovieClip Frame 1
"start"Symbol 78 MovieClip Frame 11
"coming"Symbol 248 MovieClip Frame 2
"normal"Symbol 248 MovieClip Frame 81
"visited"Symbol 248 MovieClip Frame 198
"back"Symbol 248 MovieClip Frame 229
"coming"Symbol 293 MovieClip Frame 2
"normal"Symbol 293 MovieClip Frame 30
"visited"Symbol 293 MovieClip Frame 142
"back"Symbol 293 MovieClip Frame 167
"normal"Symbol 325 MovieClip Frame 1
"kissing"Symbol 325 MovieClip Frame 10
"scared"Symbol 325 MovieClip Frame 55
"coming"Symbol 414 MovieClip Frame 2
"normal"Symbol 414 MovieClip Frame 17
"visited"Symbol 414 MovieClip Frame 59
"back"Symbol 414 MovieClip Frame 91
"normal"Symbol 426 MovieClip Frame 1
"visited"Symbol 426 MovieClip Frame 4
"coming"Symbol 427 MovieClip Frame 1
"normal"Symbol 427 MovieClip Frame 26
"back"Symbol 427 MovieClip Frame 98
"normal"Symbol 457 MovieClip Frame 1
"visited"Symbol 457 MovieClip Frame 4
"coming"Symbol 458 MovieClip Frame 1
"normal"Symbol 458 MovieClip Frame 26
"back"Symbol 458 MovieClip Frame 123
"coming"Symbol 496 MovieClip Frame 2
"normal"Symbol 496 MovieClip Frame 17
"visited"Symbol 496 MovieClip Frame 51
"back"Symbol 496 MovieClip Frame 85
"coming"Symbol 500 MovieClip Frame 1
"normal"Symbol 500 MovieClip Frame 25
"visited"Symbol 500 MovieClip Frame 83
"back"Symbol 500 MovieClip Frame 130
"coming"Symbol 503 MovieClip Frame 1
"normal"Symbol 503 MovieClip Frame 26
"back"Symbol 503 MovieClip Frame 115
"coming"Symbol 510 MovieClip Frame 1
"normal"Symbol 510 MovieClip Frame 25
"visited"Symbol 510 MovieClip Frame 85
"back"Symbol 510 MovieClip Frame 130
"normal"Symbol 540 MovieClip Frame 1
"visited"Symbol 540 MovieClip Frame 2
"coming"Symbol 541 MovieClip Frame 1
"normal"Symbol 541 MovieClip Frame 26
"back"Symbol 541 MovieClip Frame 137
"coming"Symbol 561 MovieClip Frame 2
"normal"Symbol 561 MovieClip Frame 30
"visited"Symbol 561 MovieClip Frame 142
"back"Symbol 561 MovieClip Frame 167
"coming"Symbol 572 MovieClip Frame 2
"normal"Symbol 572 MovieClip Frame 25
"visited"Symbol 572 MovieClip Frame 78
"back"Symbol 572 MovieClip Frame 139

Dynamic Text Variables

_root.mainScoreSymbol 339 EditableText"Score "




http://swfchan.com/26/126934/info.shtml
Created: 25/2 -2019 13:16:35 Last modified: 25/2 -2019 13:16:35 Server time: 14/05 -2024 02:43:16