Frame 2
stop();
Frame 3
fscommand ("allowscale", "false");
fscommand ("showmenu", "false");
mySound = new Sound(_root.gameSound);
resetGame = function () {
i = 1;
lives = 3;
level = 1;
score = 0;
timer = true;
lane1Speed = 1.5;
lane2Speed = 1.5;
lane3Speed = 2;
lane4Speed = 2.5;
log1Speed = 1;
log2Speed = 1.5;
log3Speed = 1;
log4Speed = 1.5;
checkPoints = 0;
};
startGame = function () {
x = 0;
while (x < 3) {
duplicateMovieClip (firstLane, "firstLane" + i, i);
_root["firstLane" + i]._x = x * 150;
_root["firstLane" + i]._y = 350;
i++;
duplicateMovieClip (secondLane, "secondLane" + i, i);
_root["secondLane" + i]._x = x * 170;
_root["secondLane" + i]._y = 315;
i++;
duplicateMovieClip (firstlogLane, "firstlogLane" + i, i);
_root["firstlogLane" + i]._x = x * 170;
_root["firstlogLane" + i]._y = 170;
i++;
duplicateMovieClip (secondlogLane, "secondlogLane" + i, i);
_root["secondlogLane" + i]._x = x * 200;
_root["secondlogLane" + i]._y = 135;
i++;
x++;
}
x = 0;
while (x < 2) {
duplicateMovieClip (thirdLane, "thirdLane" + i, i);
_root["thirdLane" + i]._x = x * 200;
_root["thirdLane" + i]._y = 280;
i++;
duplicateMovieClip (fourthLane, "fourthLane" + i, i);
_root["fourthLane" + i]._x = x * 200;
_root["fourthLane" + i]._y = 245;
i++;
duplicateMovieClip (thirdlogLane, "thirdlogLane" + i, i);
_root["thirdlogLane" + i]._x = x * 220;
_root["thirdlogLane" + i]._y = 100;
i++;
duplicateMovieClip (fourthlogLane, "fourthlogLane" + i, i);
_root["fourthlogLane" + i]._x = x * 240;
_root["fourthlogLane" + i]._y = 65;
i++;
x++;
}
};
placeFrog = function () {
duplicateMovieClip (frog, "frogClip", 1000);
_root.frogClip._x = 200;
_root.frogClip._y = 380;
};
looseLife = function () {
timer = false;
lives--;
death._x = frogClip._x;
death._y = frogClip._y;
removeMovieClip(_root.frogClip);
death.gotoAndPlay(2);
};
levelUp = function () {
if (checkPoints == 5) {
checkPoints = 0;
score = score + 1000;
level++;
levelUpClip.gotoAndPlay(2);
lane1Speed = lane1Speed + 0.2;
lane2Speed = lane2Speed + 0.2;
lane3Speed = lane3Speed + 0.2;
lane4Speed = lane4Speed + 0.2;
log1Speed = log1Speed + 0.2;
log2Speed = log2Speed + 0.2;
log3Speed = log3Speed + 0.2;
log4Speed = log4Speed + 0.2;
resetCheckPoints();
}
};
resetCheckPoints = function () {
firstCheck.gotoAndStop(1);
secondCheck.gotoAndStop(1);
thirdCheck.gotoAndStop(1);
fourthCheck.gotoAndStop(1);
fifthCheck.gotoAndStop(1);
firstCheck.flag = false;
secondCheck.flag = false;
thirdCheck.flag = false;
fourthCheck.flag = false;
fifthCheck.flag = false;
};
resetGame();
startGame();
placeFrog();
stop();
Instance of Symbol 33 MovieClip "firstLane" in Frame 3
onClipEvent (enterFrame) {
if (_name != "firstLane") {
if (_root.timer) {
this._x = this._x - _root.lane1Speed;
if (this._x < -30) {
this._x = 430 + random(30);
this.gotoAndStop(random(6) + 1);
}
if (this.hitTest(_root.frogClip)) {
_root.looseLife();
}
}
}
}
Instance of Symbol 35 MovieClip "secondLane" in Frame 3
onClipEvent (enterFrame) {
if (_name != "secondLane") {
if (_root.timer) {
this._x = this._x + _root.lane2Speed;
if (this._x > 430) {
this._x = -(30 + random(30));
this.gotoAndStop(random(6) + 1);
}
if (this.hitTest(_root.frogClip)) {
_root.looseLife();
}
}
}
}
Instance of Symbol 37 MovieClip "thirdLane" in Frame 3
onClipEvent (enterFrame) {
if (_name != "thirdLane") {
if (_root.timer) {
this._x = this._x - _root.lane3Speed;
if (this._x < -30) {
this._x = 430 + random(30);
this.gotoAndStop(random(5) + 1);
}
if (this.hitTest(_root.frogClip)) {
_root.looseLife();
}
}
}
}
Instance of Symbol 39 MovieClip "fourthLane" in Frame 3
onClipEvent (enterFrame) {
if (_name != "fourthLane") {
if (_root.timer) {
this._x = this._x + _root.lane4Speed;
if (this._x > 430) {
this._x = -(30 + random(30));
this.gotoAndStop(random(5) + 1);
}
if (this.hitTest(_root.frogClip)) {
_root.looseLife();
}
}
}
}
Instance of Symbol 8 MovieClip "frog" in Frame 3
onClipEvent (load) {
space = 1;
}
onClipEvent (enterFrame) {
if (((_name != "frog") and (space == 1)) and (_root.timer == true)) {
if (Key.isDown(38)) {
_rotation = 0;
_y = (_y - 35);
space++;
_root.frogSound.gotoAndPlay(2);
}
if (Key.isDown(39)) {
_rotation = 90;
_x = (_x + 35);
space++;
_root.frogSound.gotoAndPlay(2);
}
if (Key.isDown(40) and (_y < 380)) {
_rotation = 180;
_y = (_y + 35);
space++;
_root.frogSound.gotoAndPlay(2);
}
if (Key.isDown(37)) {
_rotation = 270;
_x = (_x - 35);
space++;
_root.frogSound.gotoAndPlay(2);
}
if ((this._x > 390) or (this._x < 10)) {
_root.looseLife();
}
switch (this._y) {
case 170 :
if (((!this.hitTest(_root.firstlogLane11)) and (!this.hitTest(_root.firstlogLane3))) and (!this.hitTest(_root.firstlogLane7))) {
_root.looseLife();
}
break;
case 135 :
if (((!this.hitTest(_root.secondlogLane4)) and (!this.hitTest(_root.secondlogLane12))) and (!this.hitTest(_root.secondlogLane8))) {
_root.looseLife();
}
break;
case 100 :
if ((!this.hitTest(_root.thirdlogLane19)) and (!this.hitTest(_root.thirdlogLane15))) {
_root.looseLife();
}
break;
case 65 :
if ((!this.hitTest(_root.fourthlogLane20)) and (!this.hitTest(_root.fourthlogLane16))) {
_root.looseLife();
}
break;
case 30 :
if (!(((((!this.hitTest(_root.firstCheck)) and (!this.hitTest(_root.secondCheck))) and (!this.hitTest(_root.thirdCheck))) and (!this.hitTest(_root.fourthCheck))) and (!this.hitTest(_root.fifthCheck)))) {
break;
}
_root.looseLife();
}
}
}
onClipEvent (keyUp) {
space = 1;
}
Instance of Symbol 51 MovieClip "firstlogLane" in Frame 3
onClipEvent (enterFrame) {
if (_name != "firstlogLane") {
if (_root.timer) {
this._x = this._x - _root.log1Speed;
if (this._x < -60) {
this._x = 460 + random(30);
}
if (this.hitTest(_root.frogClip)) {
_root.frogClip._x = _root.frogClip._x - _root.log1Speed;
}
}
}
}
Instance of Symbol 3 MovieClip [log0] "secondlogLane" in Frame 3
onClipEvent (enterFrame) {
if (_name != "secondlogLane") {
if (_root.timer) {
this._x = this._x + _root.log2Speed;
if (this._x > 460) {
this._x = -(60 + random(30));
}
if (this.hitTest(_root.frogClip)) {
_root.frogClip._x = _root.frogClip._x + _root.log2Speed;
}
}
}
}
Instance of Symbol 56 MovieClip "thirdlogLane" in Frame 3
onClipEvent (enterFrame) {
if (_name != "thirdlogLane") {
if (_root.timer) {
this._x = this._x - _root.log3Speed;
if (this._x < -60) {
this._x = 460 + random(30);
}
if (this.hitTest(_root.frogClip)) {
_root.frogClip._x = _root.frogClip._x - _root.log3Speed;
}
}
}
}
Instance of Symbol 58 MovieClip "fourthlogLane" in Frame 3
onClipEvent (enterFrame) {
if (_name != "fourthlogLane") {
if (_root.timer) {
this._x = this._x + _root.log4Speed;
if (this._x > 460) {
this._x = -(60 + random(30));
}
if (this.hitTest(_root.frogClip)) {
_root.frogClip._x = _root.frogClip._x + _root.log4Speed;
}
}
}
}
Instance of Symbol 61 MovieClip "timeGraph" in Frame 3
onClipEvent (enterFrame) {
if (_root.timer) {
this._width = this._width - ((0.1 * _root.level) / 2);
if (this._width < 1) {
_root.looseLife();
}
}
}
Instance of Symbol 66 MovieClip "firstCheck" in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.frogClip)) {
if (!flag) {
flag = true;
this.gotoAndStop(2);
_root.timeGraph._width = 100;
_root.frogClip._x = 200;
_root.frogClip._y = 380;
_root.checkPoints++;
_root.score = _root.score + 50;
_root.levelUp();
} else {
_root.looseLife();
}
}
}
Instance of Symbol 66 MovieClip "secondCheck" in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.frogClip)) {
if (!flag) {
flag = true;
this.gotoAndStop(2);
_root.timeGraph._width = 100;
_root.frogClip._x = 200;
_root.frogClip._y = 380;
_root.checkPoints++;
_root.score = _root.score + 50;
_root.levelUp();
} else {
_root.looseLife();
}
}
}
Instance of Symbol 66 MovieClip "thirdCheck" in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.frogClip)) {
if (!flag) {
flag = true;
this.gotoAndStop(2);
_root.timeGraph._width = 100;
_root.frogClip._x = 200;
_root.frogClip._y = 380;
_root.checkPoints++;
_root.score = _root.score + 50;
_root.levelUp();
} else {
_root.looseLife();
}
}
}
Instance of Symbol 66 MovieClip "fourthCheck" in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.frogClip)) {
if (!flag) {
flag = true;
this.gotoAndStop(2);
_root.timeGraph._width = 100;
_root.frogClip._x = 200;
_root.frogClip._y = 380;
_root.checkPoints++;
_root.score = _root.score + 50;
_root.levelUp();
} else {
_root.looseLife();
}
}
}
Instance of Symbol 66 MovieClip "fifthCheck" in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.frogClip)) {
if (!flag) {
flag = true;
this.gotoAndStop(2);
_root.timeGraph._width = 100;
_root.frogClip._x = 200;
_root.frogClip._y = 380;
_root.checkPoints++;
_root.score = _root.score + 50;
_root.levelUp();
} else {
_root.looseLife();
}
}
}
Instance of Symbol 74 MovieClip "gameSound" in Frame 3
onClipEvent (enterFrame) {
_root.mySound.setVolume(_root.myslider.ratio);
}
Instance of Symbol 83 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.frogClip)) {
if (!flag) {
flag = true;
this.gotoAndStop(2);
_root.timeGraph._width = 100;
_root.frogClip._x = 200;
_root.frogClip._y = 380;
_root.score = _root.score + 300;
_root.levelUp();
} else {
_root.looseLife();
function () {
if (checkPoints == 5) {
gotoAndPlay (3);
resetCheckPoints();
}
};
}
}
}
Instance of Symbol 84 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.frogClip)) {
if (!flag) {
flag = true;
this.gotoAndStop(2);
_root.timeGraph._width = 100;
_root.frogClip._x = 200;
_root.frogClip._y = 380;
_root.score = _root.score + 300;
_root.levelUp();
} else {
_root.looseLife();
}
}
}
onClipEvent (load) {
levelUp = function () {
if (checkPoints == 5) {
checkPoints = 0;
score = score + 500;
level++;
levelUpClip.gotoAndPlay(1);
lane1Speed = lane1Speed + 0.2;
lane2Speed = lane2Speed + 0.2;
lane3Speed = lane3Speed + 0.2;
lane4Speed = lane4Speed + 0.2;
log1Speed = log1Speed + 0.2;
log2Speed = log2Speed + 0.2;
log3Speed = log3Speed + 0.2;
log4Speed = log4Speed + 0.2;
resetCheckPoints();
}
};
}
Instance of Symbol 85 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.frogClip)) {
if (!flag) {
flag = true;
this.gotoAndStop(2);
_root.timeGraph._width = 100;
_root.frogClip._x = 200;
_root.frogClip._y = 380;
_root.score = _root.score + 300;
_root.levelUp();
} else {
_root.looseLife();
}
}
}
Instance of Symbol 86 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.frogClip)) {
if (!flag) {
flag = true;
this.gotoAndStop(2);
_root.timeGraph._width = 100;
_root.frogClip._x = 200;
_root.frogClip._y = 380;
_root.score = _root.score + 300;
_root.levelUp();
} else {
_root.looseLife();
}
}
}
Instance of Symbol 87 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.frogClip)) {
if (!flag) {
flag = true;
this.gotoAndStop(2);
_root.timeGraph._width = 100;
_root.frogClip._x = 200;
_root.frogClip._y = 380;
_root.score = _root.score + 300;
_root.levelUp();
} else {
_root.looseLife();
}
}
}
Frame 4
gotoAndStop (2);
Frame 5
_root.scoretable.filename = "scores/froggy.sco";
_root.scoretable.scoresize = 10;
_root.scoretable.action = "INSERT";
_root.scoretable.viewtype = "FLASH";
_root.scoretable.winname = name;
_root.scoretable.winscore = score;
_root.scoretable.loadVariables("http://www.coolbm.com/scores.php", "GET");
stop();
fscommand ("allowscale", "false");
fscommand ("showmenu", "false");
mySound = new Sound(_root.gameSound);
resetGame = function () {
i = 1;
lives = 3;
level = 1;
timer = true;
lane1Speed = 1.5;
lane2Speed = 1.5;
lane3Speed = 2;
lane4Speed = 2.5;
log1Speed = 1;
log2Speed = 1.5;
log3Speed = 1;
log4Speed = 1.5;
checkPoints = 0;
};
startGame = function () {
x = 0;
while (x < 3) {
duplicateMovieClip (firstLane, "firstLane" + i, i);
_root["firstLane" + i]._x = x * 1150;
_root["firstLane" + i]._y = 1350;
i++;
duplicateMovieClip (secondLane, "secondLane" + i, i);
_root["secondLane" + i]._x = x * 1170;
_root["secondLane" + i]._y = 1315;
i++;
duplicateMovieClip (firstlogLane, "firstlogLane" + i, i);
_root["firstlogLane" + i]._x = x * 1170;
_root["firstlogLane" + i]._y = 1170;
i++;
duplicateMovieClip (secondlogLane, "secondlogLane" + i, i);
_root["secondlogLane" + i]._x = x * 2100;
_root["secondlogLane" + i]._y = 1135;
i++;
x++;
}
x = 0;
while (x < 2) {
duplicateMovieClip (thirdLane, "thirdLane" + i, i);
_root["thirdLane" + i]._x = x * 2100;
_root["thirdLane" + i]._y = 1280;
i++;
duplicateMovieClip (fourthLane, "fourthLane" + i, i);
_root["fourthLane" + i]._x = x * 1200;
_root["fourthLane" + i]._y = 1245;
i++;
duplicateMovieClip (thirdlogLane, "thirdlogLane" + i, i);
_root["thirdlogLane" + i]._x = x * 1220;
_root["thirdlogLane" + i]._y = 1100;
i++;
duplicateMovieClip (fourthlogLane, "fourthlogLane" + i, i);
_root["fourthlogLane" + i]._x = x * 1240;
_root["fourthlogLane" + i]._y = 1165;
i++;
x++;
}
};
placeFrog = function () {
duplicateMovieClip (frog, "frogClip", 1000);
_root.frogClip._x = 500;
_root.frogClip._y = 800;
};
looseLife = function () {
timer = false;
lives--;
death._x = frogClip._x;
death._y = frogClip._y;
removeMovieClip(_root.frogClip);
death.gotoAndPlay(2);
};
levelUp = function () {
if (checkPoints == 5) {
checkPoints = 0;
score = score + 500;
level++;
levelUpClip.gotoAndPlay(2);
lane1Speed = lane1Speed + 0.2;
lane2Speed = lane2Speed + 0.2;
lane3Speed = lane3Speed + 0.2;
lane4Speed = lane4Speed + 0.2;
log1Speed = log1Speed + 0.2;
log2Speed = log2Speed + 0.2;
log3Speed = log3Speed + 0.2;
log4Speed = log4Speed + 0.2;
resetCheckPoints();
}
};
resetCheckPoints = function () {
firstCheck.gotoAndStop(1);
secondCheck.gotoAndStop(1);
thirdCheck.gotoAndStop(1);
fourthCheck.gotoAndStop(1);
fifthCheck.gotoAndStop(1);
firstCheck.flag = false;
secondCheck.flag = false;
thirdCheck.flag = false;
fourthCheck.flag = false;
fifthCheck.flag = false;
play();
};
resetGame();
startGame();
placeFrog();
stop();
stopAllSounds();
Symbol 13 Button
on (release) {
_root.play();
}
Symbol 14 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
setProperty(bar, _xscale , PercentLoaded);
} else {
gotoAndStop (3);
}
Symbol 14 MovieClip Frame 2
gotoAndPlay (1);
Symbol 20 Button
on (release) {
gotoAndStop (6);
}
Symbol 29 Button
on (release) {
gotoAndPlay (3);
stopAllSounds();
}
Symbol 33 MovieClip Frame 1
stop();
Symbol 35 MovieClip Frame 1
stop();
Symbol 37 MovieClip Frame 1
stop();
Symbol 39 MovieClip Frame 1
stop();
Symbol 45 MovieClip Frame 1
stop();
Symbol 45 MovieClip Frame 17
if (_root.lives > 0) {
_root.timeGraph._width = 100;
_root.timer = true;
_root.placeFrog();
} else {
_root.gameOverClip.gotoAndStop(2);
}
Symbol 63 MovieClip Frame 1
stop();
Symbol 66 MovieClip Frame 1
stop();
Symbol 72 MovieClip Frame 1
this.ratio = 100;
dragger.onPress = function () {
this.startDrag(true, 0, 0, line._width, 0);
this.onEnterFrame = function () {
ratio = Math.round(this._x);
_root.ratiovalue = ratio;
};
};
dragger.onRelease = (dragger.onreleaseOutside = stopDrag);
Symbol 74 MovieClip Frame 2
stop();
Symbol 74 MovieClip Frame 3
stop();
Symbol 83 MovieClip Frame 1
gotoAndPlay (31);
Symbol 83 MovieClip Frame 2
play();
Symbol 83 MovieClip Frame 30
stop();
Instance of Symbol 82 MovieClip in Symbol 83 MovieClip Frame 398
onClipEvent (enterFrame) {
if (this.hitTest(_root.frogClip)) {
if (!flag) {
flag = true;
this.gotoAndStop(2);
_root.timeGraph._width = 100;
_root.frogClip._x = 200;
_root.frogClip._y = 380;
_root.checkPoints++;
_root.score = _root.score + 200;
_root.levelUp();
} else {
_root.looseLife();
}
}
}
Instance of Symbol 82 MovieClip in Symbol 83 MovieClip Frame 1330
onClipEvent (enterFrame) {
if (this.hitTest(_root.frogClip)) {
if (!flag) {
flag = true;
this.gotoAndStop(2);
_root.timeGraph._width = 100;
_root.frogClip._x = 200;
_root.frogClip._y = 380;
_root.checkPoints++;
_root.score = _root.score + 200;
_root.levelUp();
} else {
_root.looseLife();
}
}
}
Symbol 84 MovieClip Frame 1
gotoAndPlay (31);
Symbol 84 MovieClip Frame 2
play();
Symbol 84 MovieClip Frame 30
stop();
Instance of Symbol 82 MovieClip in Symbol 84 MovieClip Frame 273
onClipEvent (enterFrame) {
if (this.hitTest(_root.frogClip)) {
if (!flag) {
flag = true;
this.gotoAndStop(2);
_root.timeGraph._width = 100;
_root.frogClip._x = 200;
_root.frogClip._y = 380;
_root.checkPoints++;
_root.score = _root.score + 200;
_root.levelUp();
} else {
_root.looseLife();
}
}
}
Instance of Symbol 82 MovieClip in Symbol 84 MovieClip Frame 1119
onClipEvent (enterFrame) {
if (this.hitTest(_root.frogClip)) {
if (!flag) {
flag = true;
this.gotoAndStop(2);
_root.timeGraph._width = 100;
_root.frogClip._x = 200;
_root.frogClip._y = 380;
_root.checkPoints++;
_root.score = _root.score + 200;
_root.levelUp();
} else {
_root.looseLife();
}
}
}
Symbol 85 MovieClip Frame 1
gotoAndPlay (31);
Symbol 85 MovieClip Frame 2
play();
Symbol 85 MovieClip Frame 30
stop();
Instance of Symbol 82 MovieClip in Symbol 85 MovieClip Frame 113
onClipEvent (enterFrame) {
if (this.hitTest(_root.frogClip)) {
if (!flag) {
flag = true;
this.gotoAndStop(2);
_root.timeGraph._width = 100;
_root.frogClip._x = 200;
_root.frogClip._y = 380;
_root.checkPoints++;
_root.score = _root.score + 200;
_root.levelUp();
} else {
_root.looseLife();
}
}
}
Instance of Symbol 82 MovieClip in Symbol 85 MovieClip Frame 959
onClipEvent (enterFrame) {
if (this.hitTest(_root.frogClip)) {
if (!flag) {
flag = true;
this.gotoAndStop(2);
_root.timeGraph._width = 100;
_root.frogClip._x = 200;
_root.frogClip._y = 380;
_root.checkPoints++;
_root.score = _root.score + 200;
_root.levelUp();
} else {
_root.looseLife();
}
}
}
Symbol 86 MovieClip Frame 1
gotoAndPlay (31);
Symbol 86 MovieClip Frame 2
play();
Symbol 86 MovieClip Frame 30
stop();
Instance of Symbol 82 MovieClip in Symbol 86 MovieClip Frame 1337
onClipEvent (enterFrame) {
if (this.hitTest(_root.frogClip)) {
if (!flag) {
flag = true;
this.gotoAndStop(2);
_root.timeGraph._width = 100;
_root.frogClip._x = 200;
_root.frogClip._y = 380;
_root.checkPoints++;
_root.score = _root.score + 200;
_root.levelUp();
} else {
_root.looseLife();
}
}
}
Instance of Symbol 82 MovieClip in Symbol 86 MovieClip Frame 2183
onClipEvent (enterFrame) {
if (this.hitTest(_root.frogClip)) {
if (!flag) {
flag = true;
this.gotoAndStop(2);
_root.timeGraph._width = 100;
_root.frogClip._x = 200;
_root.frogClip._y = 380;
_root.checkPoints++;
_root.score = _root.score + 200;
_root.levelUp();
} else {
_root.looseLife();
}
}
}
Symbol 87 MovieClip Frame 1
gotoAndPlay (31);
Symbol 87 MovieClip Frame 2
play();
Symbol 87 MovieClip Frame 30
stop();
Instance of Symbol 82 MovieClip in Symbol 87 MovieClip Frame 643
onClipEvent (enterFrame) {
if (this.hitTest(_root.frogClip)) {
if (!flag) {
flag = true;
this.gotoAndStop(2);
_root.timeGraph._width = 100;
_root.frogClip._x = 200;
_root.frogClip._y = 380;
_root.checkPoints++;
_root.score = _root.score + 200;
_root.levelUp();
} else {
_root.looseLife();
}
}
}
Instance of Symbol 82 MovieClip in Symbol 87 MovieClip Frame 1489
onClipEvent (enterFrame) {
if (this.hitTest(_root.frogClip)) {
if (!flag) {
flag = true;
this.gotoAndStop(2);
_root.timeGraph._width = 100;
_root.frogClip._x = 200;
_root.frogClip._y = 380;
_root.checkPoints++;
_root.score = _root.score + 200;
_root.levelUp();
} else {
_root.looseLife();
}
}
}
Symbol 92 Button
on (release) {
stopAllSounds();
gotoAndPlay (5);
}
Symbol 109 Button
on (release) {
gotoAndStop (6);
}
Symbol 122 Button
on (release) {
gotoAndStop (1);
}