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__("fb27c1cd", 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);
trace("kkk");
}
}
_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) {
}
Instance of Symbol 256 MovieClip in Frame 2
on (release) {
getURL ("http://www.rainbowdressup.com", "_blank");
}
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() {
_root.redefineVariables();
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];
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);
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;
_root.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++;
_root.thisLevelScore++;
nxtLevel.scoreList.text = _root.mainScore - 1;
}
if (progressBarMc._xscale >= 100) {
_root.endLevel = true;
couple.gotoAndStop(1);
bg.char1.gotoAndStop(1);
bg.char2.gotoAndStop(1);
bg.char3.gotoAndStop(1);
nxtLevel.gotoAndStop(1);
_root.kissingBtn.enabled = false;
_root.kissInitiated = false;
_root.currentKissingStatus = false;
nxtLevel.scoreList.text = _root.mainScore - 1;
clearInterval(checkProgressInterval);
clearInterval(_root.appearenceInterval);
clearInterval(countDownInterval);
progressBarMc._xscale = 0;
nxtLevel._visible = true;
}
}
function getScore() {
scoreTxt.text = mainScore++;
}
stop();
Stage.showMenu = false;
var mainScore = 0;
var appearenceInterval;
var countDownInterval;
var checkProgressInterval;
var scoreInterval;
charArray = new Array("char1", "char2", "char3");
appearTimeArray = new Array("5", "7", "9");
var increaseFactor = 0.2;
_root.countDownSeconds = 59;
_root.countDownMinutes = 2;
_root.timer.text = "03:00";
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.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 406 MovieClip "nxtLevel" in Frame 3
onClipEvent (load) {
_visible = false;
}
Instance of Symbol 409 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 397 MovieClip in Frame 3
on (release) {
clearInterval(_root.checkProgressInterval);
clearInterval(_root.appearenceInterval);
clearInterval(_root.countDownInterval);
_root.couple.gotoAndStop(1);
_root.nextFrame();
_root.startGame();
}
Instance of Symbol 143 MovieClip in Frame 3
on (release) {
getURL ("http://www.rainbowdressup.com", "_blank");
}
Frame 4
stop();
charArray = new Array("char1", "char2", "char3");
appearTimeArray = new Array("5", "7", "9");
var increaseFactor = 0.05;
_root.countDownSeconds = 59;
_root.countDownMinutes = 2;
_root.timer.text = "03:00";
_root.startGame();
Frame 5
stop();
charArray = new Array("char1", "char2", "char3");
appearTimeArray = new Array("5", "7", "9");
var increaseFactor = 0.05;
_root.countDownSeconds = 59;
_root.countDownMinutes = 2;
_root.timer.text = "03:00";
_root.startGame();
Frame 6
stop();
Stage.showMenu = false;
charArray = new Array("char1", "char2", "char2");
appearTimeArray = new Array("5", "7", "9");
var increaseFactor = 0.05;
_root.countDownSeconds = 59;
_root.countDownMinutes = 2;
_root.timer.text = "03:00";
_root.startGame();
Frame 7
stop();
charArray = new Array("char1", "char2", "char3");
appearTimeArray = new Array("5", "7", "9");
var increaseFactor = 0.05;
_root.countDownSeconds = 59;
_root.countDownMinutes = 2;
_root.timer.text = "03:00";
_root.startGame();
Instance of Symbol 705 MovieClip "nxtLevel" in Frame 7
onClipEvent (load) {
_visible = false;
}
Symbol 6 MovieClip [game_sound_ctrl] Frame 1
stop();
Symbol 12 MovieClip Frame 1
Symbol 36 MovieClip Frame 20
Symbol 37 MovieClip Frame 1
Symbol 61 MovieClip Frame 30
stop();
Symbol 73 MovieClip Frame 21
stop();
Symbol 78 MovieClip Frame 1
stop();
Symbol 78 MovieClip Frame 100
stop();
Symbol 91 MovieClip Frame 1
stop();
Symbol 91 MovieClip Frame 2
stop();
Symbol 92 MovieClip Frame 1
Instance of Symbol 74 MovieClip "gotoRainbow" in Symbol 92 MovieClip Frame 1
on (release) {
getURL ("http://www.rainbowdressup.com", "_blank");
}
Symbol 92 MovieClip Frame 11
stop();
Symbol 92 MovieClip Frame 20
stop();
Instance of Symbol 91 MovieClip "playGame" in Symbol 92 MovieClip Frame 20
on (release) {
_root.gotoAndStop(2);
}
Symbol 134 MovieClip Frame 49
stop();
Symbol 135 MovieClip Frame 40
stop();
Symbol 152 MovieClip Frame 1
stop();
if (_root.musicOn == false) {
gotoAndStop (2);
}
Symbol 156 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 154 MovieClip "High" in Symbol 156 MovieClip Frame 1
on (release) {
_parent.gotoAndStop(4);
_root.masterVolume = 100;
_root.masterSound.setVolume(_root.masterVolume);
}
Instance of Symbol 154 MovieClip "medium" in Symbol 156 MovieClip Frame 1
on (release) {
_parent.gotoAndStop(3);
_root.masterVolume = 66;
_root.masterSound.setVolume(_root.masterVolume);
}
Instance of Symbol 154 MovieClip "low" in Symbol 156 MovieClip Frame 1
on (release) {
_parent.gotoAndStop(2);
_root.masterVolume = 33;
_root.masterSound.setVolume(_root.masterVolume);
}
Symbol 170 MovieClip Frame 1
stop();
Instance of Symbol 140 MovieClip in Symbol 170 MovieClip Frame 1
on (release) {
_parent.gotoAndStop(3);
}
Instance of Symbol 143 MovieClip in Symbol 170 MovieClip Frame 1
on (release) {
getURL ("http://www.rainbowdressup.com", "_blank");
}
Instance of Symbol 146 MovieClip in Symbol 170 MovieClip Frame 1
on (release) {
_parent.gotoAndStop(2);
}
Instance of Symbol 152 MovieClip "musicCheck" in Symbol 170 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 164 MovieClip in Symbol 170 MovieClip Frame 2
on (release) {
_parent.gotoAndStop(1);
}
Instance of Symbol 169 MovieClip in Symbol 170 MovieClip Frame 3
on (release) {
_parent._parent.music.stop();
clearInterval(_root.appearenceInterval);
_root.nextFrame();
}
Symbol 186 Button
on (release) {
_root.soundstatus = "off";
_root.lastVol = _root.masterVolume;
_root.masterVolume = 0;
_root.masterSound.setVolume(_root.masterVolume);
_parent.music.stop();
gotoAndStop (2);
}
Symbol 189 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 190 MovieClip Frame 1
stop();
Symbol 190 MovieClip Frame 2
stop();
Symbol 309 MovieClip Frame 1
stop();
_root.charActive = false;
Symbol 309 MovieClip Frame 30
_root.charActive = true;
if (_root.currentKissingStatus) {
gotoAndPlay ("visited");
_root.getFormal();
} else {
gotoAndPlay ("normal");
}
Symbol 309 MovieClip Frame 227
gotoAndPlay ("back");
Symbol 309 MovieClip Frame 228
if (_root.currentKissingStatus) {
gotoAndPlay ("visited");
_root.getFormal();
} else {
gotoAndPlay ("normal");
}
Symbol 309 MovieClip Frame 282
gotoAndPlay ("visited");
Symbol 309 MovieClip Frame 283
_root.charActive = false;
Symbol 309 MovieClip Frame 297
if (!_root.endLevel) {
_root.startNextSession();
}
Symbol 323 MovieClip Frame 1
stop();
_root.charActive = false;
Symbol 323 MovieClip Frame 30
_root.charActive = true;
if (_root.currentKissingStatus) {
gotoAndPlay ("visited");
_root.getFormal();
} else {
gotoAndPlay ("normal");
}
Symbol 323 MovieClip Frame 141
gotoAndPlay ("back");
Symbol 323 MovieClip Frame 142
if (_root.currentKissingStatus) {
gotoAndPlay ("visited");
_root.getFormal();
} else {
gotoAndPlay ("normal");
}
Symbol 323 MovieClip Frame 166
gotoAndPlay ("visited");
Symbol 323 MovieClip Frame 167
_root.charActive = false;
Symbol 323 MovieClip Frame 178
if (!_root.endLevel) {
_root.startNextSession();
}
Symbol 340 MovieClip Frame 1
stop();
_root.charActive = false;
Symbol 340 MovieClip Frame 25
_root.charActive = true;
if (_root.currentKissingStatus) {
gotoAndPlay ("visited");
_root.getFormal();
} else {
gotoAndPlay ("normal");
}
Symbol 340 MovieClip Frame 110
gotoAndPlay ("back");
Symbol 340 MovieClip Frame 111
if (_root.currentKissingStatus) {
gotoAndPlay ("visited");
_root.getFormal();
} else {
gotoAndPlay ("normal");
}
Symbol 340 MovieClip Frame 156
gotoAndPlay ("visited");
Symbol 340 MovieClip Frame 157
_root.charActive = false;
Symbol 340 MovieClip Frame 180
if (!_root.endLevel) {
_root.startNextSession();
}
Symbol 381 MovieClip Frame 1
stop();
Symbol 381 MovieClip Frame 39
gotoAndPlay ("kissing");
Symbol 381 MovieClip Frame 40
Symbol 381 MovieClip Frame 41
_root.mainScore--;
_root.scoreTxt.text = _root.mainScore;
gotoAndPlay ("scared");
Symbol 406 MovieClip Frame 1
stop();
Instance of Symbol 397 MovieClip in Symbol 406 MovieClip Frame 1
on (release) {
clearInterval(_root.appearenceInterval);
_parent._visible = false;
_root.couple.gotoAndStop(1);
_root.nextFrame();
}
Instance of Symbol 143 MovieClip in Symbol 406 MovieClip Frame 1
on (release) {
getURL ("http://www.rainbowdressup.com", "_blank");
}
Symbol 406 MovieClip Frame 2
stop();
Instance of Symbol 404 MovieClip "tryAgain" in Symbol 406 MovieClip Frame 2
on (release) {
clearInterval(_root.appearenceInterval);
_parent._visible = false;
_root.couple.gotoAndStop(1);
_root.startGame();
}
Symbol 434 MovieClip Frame 1
stop();
_root.charActive = false;
Symbol 434 MovieClip Frame 21
_root.charActive = true;
if (_root.currentKissingStatus) {
gotoAndPlay ("visited");
_root.getFormal();
} else {
gotoAndPlay ("normal");
}
Symbol 434 MovieClip Frame 85
gotoAndPlay ("back");
Symbol 434 MovieClip Frame 86
if (_root.currentKissingStatus) {
gotoAndPlay ("visited");
_root.getFormal();
} else {
gotoAndPlay ("normal");
}
Symbol 434 MovieClip Frame 146
gotoAndPlay ("visited");
Symbol 434 MovieClip Frame 147
_root.charActive = false;
Symbol 434 MovieClip Frame 161
if (!_root.endLevel) {
_root.startNextSession();
}
Symbol 455 MovieClip Frame 1
stop();
_root.charActive = false;
Symbol 455 MovieClip Frame 36
_root.charActive = true;
if (_root.currentKissingStatus) {
gotoAndPlay ("visited");
_root.getFormal();
} else {
gotoAndPlay ("normal");
}
Symbol 455 MovieClip Frame 97
gotoAndPlay ("back");
Symbol 455 MovieClip Frame 98
if (_root.currentKissingStatus) {
gotoAndPlay ("visited");
_root.getFormal();
} else {
gotoAndPlay ("normal");
}
Symbol 455 MovieClip Frame 160
gotoAndPlay ("visited");
Symbol 455 MovieClip Frame 161
_root.charActive = false;
Symbol 455 MovieClip Frame 168
if (!_root.endLevel) {
_root.startNextSession();
}
Symbol 465 MovieClip Frame 1
stop();
_root.charActive = false;
Symbol 465 MovieClip Frame 26
_root.charActive = true;
if (_root.currentKissingStatus) {
gotoAndPlay ("visited");
_root.getFormal();
} else {
gotoAndPlay ("normal");
}
Symbol 465 MovieClip Frame 69
gotoAndPlay ("back");
Symbol 465 MovieClip Frame 70
if (_root.currentKissingStatus) {
gotoAndPlay ("visited");
_root.getFormal();
} else {
gotoAndPlay ("normal");
}
Symbol 465 MovieClip Frame 115
if (_root.currentKissingStatus) {
gotoAndPlay ("visited");
_root.getFormal();
} else {
gotoAndPlay ("normal");
}
Symbol 465 MovieClip Frame 116
_root.charActive = false;
Symbol 465 MovieClip Frame 130
if (!_root.endLevel) {
_root.startNextSession();
}
Symbol 474 MovieClip Frame 1
stop();
_root.charActive = false;
Symbol 474 MovieClip Frame 20
_root.charActive = true;
if (_root.currentKissingStatus) {
gotoAndPlay ("visited");
_root.getFormal();
} else {
gotoAndPlay ("normal");
}
Symbol 474 MovieClip Frame 58
gotoAndPlay ("back");
Symbol 474 MovieClip Frame 59
if (_root.currentKissingStatus) {
gotoAndPlay ("visited");
_root.getFormal();
} else {
gotoAndPlay ("normal");
}
Symbol 474 MovieClip Frame 87
gotoAndPlay ("visited");
Symbol 474 MovieClip Frame 88
_root.charActive = false;
Symbol 474 MovieClip Frame 108
if (!_root.endLevel) {
_root.startNextSession();
}
Symbol 505 MovieClip Frame 1
stop();
_root.charActive = false;
Symbol 505 MovieClip Frame 29
_root.charActive = true;
if (_root.currentKissingStatus) {
gotoAndPlay ("visited");
_root.getFormal();
} else {
gotoAndPlay ("normal");
}
Symbol 505 MovieClip Frame 88
gotoAndPlay ("back");
Symbol 505 MovieClip Frame 89
if (_root.currentKissingStatus) {
gotoAndPlay ("visited");
_root.getFormal();
} else {
gotoAndPlay ("normal");
}
Symbol 505 MovieClip Frame 151
gotoAndPlay ("visited");
Symbol 505 MovieClip Frame 152
_root.charActive = false;
Symbol 505 MovieClip Frame 160
if (!_root.endLevel) {
_root.startNextSession();
}
Symbol 551 MovieClip Frame 3
gotoAndPlay (1);
Symbol 551 MovieClip Frame 4
if (!_root.currentKissingStatus) {
this._parent.nextFrame();
gotoAndStop (1);
}
Symbol 551 MovieClip Frame 37
gotoAndPlay (4);
Symbol 552 MovieClip Frame 1
stop();
_root.charActive = false;
Symbol 552 MovieClip Frame 26
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 27
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 28
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 29
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 30
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 31
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 32
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 33
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 34
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 35
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 36
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 37
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 38
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 39
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 40
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 41
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 42
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 43
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 44
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 45
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 46
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 47
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 48
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 49
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 50
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 51
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 52
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 53
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 54
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 55
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 56
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 57
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 58
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 59
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 60
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 61
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 62
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 63
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 64
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 65
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 66
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 67
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 68
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 69
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 70
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 71
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 72
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 73
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 74
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 75
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 76
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 77
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 78
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 79
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 80
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 81
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 82
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 83
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 552 MovieClip Frame 84
_root.charActive = false;
Symbol 552 MovieClip Frame 103
if (!_root.endLevel) {
_root.startNextSession();
}
Symbol 553 MovieClip Frame 1
stop();
Symbol 591 MovieClip Frame 1
stop();
_root.charActive = false;
Symbol 591 MovieClip Frame 38
_root.charActive = true;
if (_root.currentKissingStatus) {
gotoAndPlay ("visited");
_root.getFormal();
} else {
gotoAndPlay ("normal");
}
Symbol 591 MovieClip Frame 92
gotoAndPlay ("back");
Symbol 591 MovieClip Frame 93
if (_root.currentKissingStatus) {
gotoAndPlay ("visited");
_root.getFormal();
} else {
gotoAndPlay ("normal");
}
Symbol 591 MovieClip Frame 146
gotoAndPlay ("visited");
Symbol 591 MovieClip Frame 147
_root.charActive = false;
Symbol 591 MovieClip Frame 168
if (!_root.endLevel) {
_root.startNextSession();
}
Symbol 647 MovieClip Frame 1
stop();
_root.charActive = false;
Symbol 647 MovieClip Frame 30
_root.charActive = true;
if (_root.currentKissingStatus) {
gotoAndPlay ("visited");
_root.getFormal();
} else {
gotoAndPlay ("normal");
}
Symbol 647 MovieClip Frame 97
gotoAndPlay ("back");
Symbol 647 MovieClip Frame 98
if (_root.currentKissingStatus) {
gotoAndPlay ("visited");
_root.getFormal();
} else {
gotoAndPlay (39);
}
Symbol 647 MovieClip Frame 161
gotoAndPlay ("visited");
Symbol 647 MovieClip Frame 162
_root.charActive = false;
Symbol 647 MovieClip Frame 203
if (!_root.endLevel) {
_root.startNextSession();
}
Symbol 657 MovieClip Frame 1
stop();
_root.charActive = false;
Symbol 657 MovieClip Frame 51
_root.charActive = true;
if (_root.currentKissingStatus) {
gotoAndPlay ("visited");
_root.getFormal();
} else {
gotoAndPlay ("normal");
}
Symbol 657 MovieClip Frame 101
gotoAndPlay ("back");
Symbol 657 MovieClip Frame 102
if (_root.currentKissingStatus) {
gotoAndPlay ("visited");
_root.getFormal();
} else {
gotoAndPlay ("normal");
}
Symbol 657 MovieClip Frame 150
gotoAndPlay ("visited");
Symbol 657 MovieClip Frame 151
_root.charActive = false;
Symbol 657 MovieClip Frame 205
if (!_root.endLevel) {
_root.startNextSession();
}
Symbol 686 MovieClip Frame 3
gotoAndPlay (1);
Symbol 686 MovieClip Frame 4
if (!_root.currentKissingStatus) {
this._parent.nextFrame();
gotoAndStop (1);
}
Symbol 686 MovieClip Frame 31
gotoAndPlay (4);
Symbol 687 MovieClip Frame 1
stop();
_root.charActive = false;
Symbol 687 MovieClip Frame 26
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 27
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 28
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 29
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 30
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 31
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 32
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 33
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 34
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 35
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 36
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 37
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 38
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 39
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 40
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 41
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 42
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 43
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 44
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 45
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 46
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 47
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 48
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 49
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 50
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 51
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 52
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 53
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 54
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 55
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 56
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 57
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 58
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 59
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 60
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 61
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 62
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 63
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 64
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 65
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 66
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 67
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 68
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 69
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 70
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 71
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 72
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 73
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 74
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 75
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 76
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 77
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 78
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 79
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 80
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 81
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 82
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 83
_root.charActive = true;
if (_root.currentKissingStatus) {
ranger.gotoAndPlay("visited");
this.stop();
_root.getFormal();
} else {
ranger.gotoAndPlay("normal");
this.play();
}
Symbol 687 MovieClip Frame 84
_root.charActive = false;
Symbol 687 MovieClip Frame 103
if (!_root.endLevel) {
_root.startNextSession();
}
Symbol 695 MovieClip Frame 1
stop();
Symbol 705 MovieClip Frame 1
stop();
Instance of Symbol 700 MovieClip in Symbol 705 MovieClip Frame 1
on (release) {
clearInterval(_root.appearenceInterval);
_parent._visible = false;
_root.couple.gotoAndStop(1);
_root.gotoAndStop(3);
}
Instance of Symbol 143 MovieClip in Symbol 705 MovieClip Frame 1
on (release) {
getURL ("http://www.rainbowdressup.com", "_blank");
}
Instance of Symbol 404 MovieClip "tryAgain" in Symbol 705 MovieClip Frame 2
on (release) {
clearInterval(_root.appearenceInterval);
_parent._visible = false;
_root.couple.gotoAndStop(1);
_root.nextFrame();
}