Frame 1
totalBytes = Math.round(getBytesTotal() / 1024);
loadedBytes = Math.round(getBytesLoaded() / 1024);
percentDone = Math.round((loadedBytes / totalBytes) * 100);
Stage.showMenu = false;
_root.tiles.gotoAndStop(percentDone);
if (_root._framesloaded >= _root._totalframes) {
gotoAndStop (3);
}
Frame 2
gotoAndPlay (1);
Frame 3
stop();
Frame 4
stop();
level = 1;
thislevelframe = 1;
karrstartX = 146;
karrstartY = 170;
karrstartRot = 0;
antalPplattor = 9;
antalSplash = 0;
klarad = false;
hopp = true;
nyckel = false;
paus = false;
ljud = true;
_root.pausruta._visible = false;
_root.info._visible = false;
_root.infoknapp._visible = false;
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.howto._visible = false;
_root.howknapp1._visible = false;
_root.howknapp2._visible = false;
_root.howknapp3._visible = false;
_root.howknapp4._visible = false;
_root.howknapp5._visible = false;
_root.onEnterFrame = function () {
if (_root.sorry._visible == true) {
if (Key.isDown(13)) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = karrstartX;
_root.karr._y = karrstartY;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.karr.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
hopp = true;
}
}
if (_root.info._visible == true) {
if (Key.isDown(13)) {
klarad = true;
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = 194;
_root.karr._y = 194;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
_root.karr.gotoAndStop(1);
hopp = true;
_root.info._visible == false;
play();
}
}
if ((hopp == true) && (paus == false)) {
if (Key.isDown(39)) {
vilkethall = 1;
hopp = false;
_root.karr._rotation = 0;
hoppaRight = 2;
nextplattaRight = _root.karr._x + 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(37)) {
vilkethall = 2;
hopp = false;
_root.karr._rotation = 180;
hoppaLeft = -2;
nextplattaLeft = _root.karr._x - 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(40)) {
vilkethall = 3;
hopp = false;
_root.karr._rotation = 90;
hoppaDown = 2;
nextplattaDown = _root.karr._y + 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(38)) {
vilkethall = 4;
hopp = false;
_root.karr._rotation = -90;
hoppaUp = -2;
nextplattaUp = _root.karr._y - 24;
if (ljud == true) {
_root.hoppljud.play();
}
}
if (Key.isDown(68)) {
vilkethall = 5;
hopp = false;
_root.karr._rotation = 0;
hoppaRight = 2;
nextplattaRight = _root.karr._x + 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(65)) {
vilkethall = 6;
hopp = false;
_root.karr._rotation = 180;
hoppaLeft = -2;
nextplattaLeft = _root.karr._x - 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(83)) {
vilkethall = 7;
hopp = false;
_root.karr._rotation = 90;
hoppaDown = 2;
nextplattaDown = _root.karr._y + 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(87)) {
vilkethall = 8;
hopp = false;
_root.karr._rotation = -90;
hoppaUp = -2;
nextplattaUp = _root.karr._y - 48;
if (ljud == true) {
_root.hoppljud.play();
}
}
}
if ((paus == false) && ((vilkethall == 1) || (vilkethall == 5))) {
hoppaRight--;
karr._x = karr._x - hoppaRight;
if (karr._x > nextplattaRight) {
karr._x = nextplattaRight;
hoppaRight = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 2) || (vilkethall == 6))) {
hoppaLeft++;
karr._x = karr._x - hoppaLeft;
if (karr._x < nextplattaLeft) {
karr._x = nextplattaLeft;
hoppaLeft = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 3) || (vilkethall == 7))) {
hoppaDown--;
karr._y = karr._y - hoppaDown;
if (karr._y > nextplattaDown) {
karr._y = nextplattaDown;
hoppaDown = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 4) || (vilkethall == 8))) {
hoppaUp--;
karr._y = karr._y + hoppaUp;
if (karr._y < nextplattaUp) {
karr._y = nextplattaUp;
hoppaUp = 0;
hopp = true;
}
}
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (((((hoppaUp == -3) || (hoppaRight == 1)) || (hoppaDown == -1)) || (hoppaLeft == -1)) && (_root[pnamn].hitTest(_root.karr))) {
if (_root[pnamn].typ == "platta") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "red") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "yellow") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "green") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "blue") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
}
}
if (((hopp == true) && (klarad == false)) && (_root[pnamn].hitTest(_root.karr))) {
if (_root[pnamn].typ == "borta") {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "blue") && (_root.karr.typ != "blue")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "green") && (_root.karr.typ != "green")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "red") && (_root.karr.typ != "red")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "yellow") && (_root.karr.typ != "yellow")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
}
}
i++;
}
if ((hopp == true) && (_root.key.hitTest(_root.karr))) {
nyckel = true;
if (ljud == true) {
_root.objektljud.play();
}
_root.key.play();
if (_root.key._currentframe == 1) {
_root.gotkey.play();
}
}
if (((hopp == true) && (nyckel == true)) && (_root.goal.hitTest(_root.karr))) {
_root.info._visible = true;
_root.infoknapp._visible = true;
hopp = false;
}
};
Frame 5
stop();
level = 2;
thislevelframe = 2;
karrstartX = 194;
karrstartY = 194;
karrstartRot = 0;
antalPplattor = 9;
antalSplash = 0;
klarad = false;
hopp = true;
nyckel = false;
paus = false;
_root.pausruta._visible = false;
_root.info._visible = false;
_root.infoknapp._visible = false;
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.howto._visible = false;
_root.howknapp1._visible = false;
_root.howknapp2._visible = false;
_root.howknapp3._visible = false;
_root.howknapp4._visible = false;
_root.howknapp5._visible = false;
_root.onEnterFrame = function () {
if (_root.sorry._visible == true) {
if (Key.isDown(13)) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = karrstartX;
_root.karr._y = karrstartY;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.karr.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
hopp = true;
}
}
if (_root.info._visible == true) {
if (Key.isDown(13)) {
klarad = true;
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = 194;
_root.karr._y = 170;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
_root.karr.gotoAndStop(1);
hopp = true;
_root.info._visible == false;
play();
}
}
if ((hopp == true) && (paus == false)) {
if (Key.isDown(39)) {
vilkethall = 1;
hopp = false;
_root.karr._rotation = 0;
hoppaRight = 2;
nextplattaRight = _root.karr._x + 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(37)) {
vilkethall = 2;
hopp = false;
_root.karr._rotation = 180;
hoppaLeft = -2;
nextplattaLeft = _root.karr._x - 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(40)) {
vilkethall = 3;
hopp = false;
_root.karr._rotation = 90;
hoppaDown = 2;
nextplattaDown = _root.karr._y + 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(38)) {
vilkethall = 4;
hopp = false;
_root.karr._rotation = -90;
hoppaUp = -2;
nextplattaUp = _root.karr._y - 24;
if (ljud == true) {
_root.hoppljud.play();
}
}
if (Key.isDown(68)) {
vilkethall = 5;
hopp = false;
_root.karr._rotation = 0;
hoppaRight = 2;
nextplattaRight = _root.karr._x + 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(65)) {
vilkethall = 6;
hopp = false;
_root.karr._rotation = 180;
hoppaLeft = -2;
nextplattaLeft = _root.karr._x - 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(83)) {
vilkethall = 7;
hopp = false;
_root.karr._rotation = 90;
hoppaDown = 2;
nextplattaDown = _root.karr._y + 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(87)) {
vilkethall = 8;
hopp = false;
_root.karr._rotation = -90;
hoppaUp = -2;
nextplattaUp = _root.karr._y - 48;
if (ljud == true) {
_root.hoppljud.play();
}
}
}
if ((paus == false) && ((vilkethall == 1) || (vilkethall == 5))) {
hoppaRight--;
karr._x = karr._x - hoppaRight;
if (karr._x > nextplattaRight) {
karr._x = nextplattaRight;
hoppaRight = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 2) || (vilkethall == 6))) {
hoppaLeft++;
karr._x = karr._x - hoppaLeft;
if (karr._x < nextplattaLeft) {
karr._x = nextplattaLeft;
hoppaLeft = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 3) || (vilkethall == 7))) {
hoppaDown--;
karr._y = karr._y - hoppaDown;
if (karr._y > nextplattaDown) {
karr._y = nextplattaDown;
hoppaDown = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 4) || (vilkethall == 8))) {
hoppaUp--;
karr._y = karr._y + hoppaUp;
if (karr._y < nextplattaUp) {
karr._y = nextplattaUp;
hoppaUp = 0;
hopp = true;
}
}
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (((((hoppaUp == -3) || (hoppaRight == 1)) || (hoppaDown == -1)) || (hoppaLeft == -1)) && (_root[pnamn].hitTest(_root.karr))) {
if (_root[pnamn].typ == "platta") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "red") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "yellow") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "green") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "blue") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
}
}
if (((hopp == true) && (klarad == false)) && (_root[pnamn].hitTest(_root.karr))) {
if (_root[pnamn].typ == "borta") {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "blue") && (_root.karr.typ != "blue")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "green") && (_root.karr.typ != "green")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "red") && (_root.karr.typ != "red")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "yellow") && (_root.karr.typ != "yellow")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
}
}
i++;
}
if ((hopp == true) && (_root.key.hitTest(_root.karr))) {
nyckel = true;
if (ljud == true) {
_root.objektljud.play();
}
_root.key.play();
if (_root.key._currentframe == 1) {
_root.gotkey.play();
}
}
if (((hopp == true) && (nyckel == true)) && (_root.goal.hitTest(_root.karr))) {
_root.info._visible = true;
_root.infoknapp._visible = true;
hopp = false;
}
};
Frame 6
stop();
level = 3;
thislevelframe = 3;
karrstartX = 194;
karrstartY = 170;
karrstartRot = 0;
antalPplattor = 15;
antalSplash = 1;
klarad = false;
hopp = true;
nyckel = false;
paus = false;
_root.pausruta._visible = false;
_root.info._visible = false;
_root.infoknapp._visible = false;
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.howto._visible = false;
_root.howknapp1._visible = false;
_root.howknapp2._visible = false;
_root.howknapp3._visible = false;
_root.howknapp4._visible = false;
_root.howknapp5._visible = false;
_root.onEnterFrame = function () {
if (_root.sorry._visible == true) {
if (Key.isDown(13)) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = karrstartX;
_root.karr._y = karrstartY;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.karr.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
hopp = true;
}
}
if (_root.info._visible == true) {
if (Key.isDown(13)) {
klarad = true;
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = 122;
_root.karr._y = 146;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
_root.karr.gotoAndStop(1);
hopp = true;
_root.info._visible == false;
play();
}
}
if ((hopp == true) && (paus == false)) {
if (Key.isDown(39)) {
vilkethall = 1;
hopp = false;
_root.karr._rotation = 0;
hoppaRight = 2;
nextplattaRight = _root.karr._x + 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(37)) {
vilkethall = 2;
hopp = false;
_root.karr._rotation = 180;
hoppaLeft = -2;
nextplattaLeft = _root.karr._x - 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(40)) {
vilkethall = 3;
hopp = false;
_root.karr._rotation = 90;
hoppaDown = 2;
nextplattaDown = _root.karr._y + 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(38)) {
vilkethall = 4;
hopp = false;
_root.karr._rotation = -90;
hoppaUp = -2;
nextplattaUp = _root.karr._y - 24;
if (ljud == true) {
_root.hoppljud.play();
}
}
if (Key.isDown(68)) {
vilkethall = 5;
hopp = false;
_root.karr._rotation = 0;
hoppaRight = 2;
nextplattaRight = _root.karr._x + 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(65)) {
vilkethall = 6;
hopp = false;
_root.karr._rotation = 180;
hoppaLeft = -2;
nextplattaLeft = _root.karr._x - 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(83)) {
vilkethall = 7;
hopp = false;
_root.karr._rotation = 90;
hoppaDown = 2;
nextplattaDown = _root.karr._y + 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(87)) {
vilkethall = 8;
hopp = false;
_root.karr._rotation = -90;
hoppaUp = -2;
nextplattaUp = _root.karr._y - 48;
if (ljud == true) {
_root.hoppljud.play();
}
}
}
if ((paus == false) && ((vilkethall == 1) || (vilkethall == 5))) {
hoppaRight--;
karr._x = karr._x - hoppaRight;
if (karr._x > nextplattaRight) {
karr._x = nextplattaRight;
hoppaRight = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 2) || (vilkethall == 6))) {
hoppaLeft++;
karr._x = karr._x - hoppaLeft;
if (karr._x < nextplattaLeft) {
karr._x = nextplattaLeft;
hoppaLeft = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 3) || (vilkethall == 7))) {
hoppaDown--;
karr._y = karr._y - hoppaDown;
if (karr._y > nextplattaDown) {
karr._y = nextplattaDown;
hoppaDown = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 4) || (vilkethall == 8))) {
hoppaUp--;
karr._y = karr._y + hoppaUp;
if (karr._y < nextplattaUp) {
karr._y = nextplattaUp;
hoppaUp = 0;
hopp = true;
}
}
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (((((hoppaUp == -3) || (hoppaRight == 1)) || (hoppaDown == -1)) || (hoppaLeft == -1)) && (_root[pnamn].hitTest(_root.karr))) {
if (_root[pnamn].typ == "platta") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "red") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "yellow") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "green") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "blue") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
}
}
if (((hopp == true) && (klarad == false)) && (_root[pnamn].hitTest(_root.karr))) {
if (_root[pnamn].typ == "borta") {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "blue") && (_root.karr.typ != "blue")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "green") && (_root.karr.typ != "green")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "red") && (_root.karr.typ != "red")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "yellow") && (_root.karr.typ != "yellow")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
}
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn].hitTest(_root.karr)) {
if ((hopp == true) && (_root[snamn].typ == "yellow")) {
_root.karr.gotoAndStop("yellow");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "red")) {
_root.karr.gotoAndStop("red");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "blue")) {
_root.karr.gotoAndStop("blue");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "green")) {
_root.karr.gotoAndStop("green");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
}
}
i++;
}
if ((hopp == true) && (_root.key.hitTest(_root.karr))) {
nyckel = true;
if (ljud == true) {
_root.objektljud.play();
}
_root.key.play();
if (_root.key._currentframe == 1) {
_root.gotkey.play();
}
}
if (((hopp == true) && (nyckel == true)) && (_root.goal.hitTest(_root.karr))) {
_root.info._visible = true;
_root.infoknapp._visible = true;
hopp = false;
}
};
Frame 7
stop();
level = 4;
thislevelframe = 4;
karrstartX = 122;
karrstartY = 146;
karrstartRot = 0;
antalPplattor = 15;
antalSplash = 1;
klarad = false;
hopp = true;
nyckel = false;
paus = false;
_root.pausruta._visible = false;
_root.info._visible = false;
_root.infoknapp._visible = false;
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.howto._visible = false;
_root.howknapp1._visible = false;
_root.howknapp2._visible = false;
_root.howknapp3._visible = false;
_root.howknapp4._visible = false;
_root.howknapp5._visible = false;
_root.onEnterFrame = function () {
if (_root.sorry._visible == true) {
if (Key.isDown(13)) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = karrstartX;
_root.karr._y = karrstartY;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.karr.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
hopp = true;
}
}
if (_root.info._visible == true) {
if (Key.isDown(13)) {
klarad = true;
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = 218;
_root.karr._y = 146;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
_root.karr.gotoAndStop(1);
hopp = true;
_root.info._visible == false;
play();
}
}
if ((hopp == true) && (paus == false)) {
if (Key.isDown(39)) {
vilkethall = 1;
hopp = false;
_root.karr._rotation = 0;
hoppaRight = 2;
nextplattaRight = _root.karr._x + 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(37)) {
vilkethall = 2;
hopp = false;
_root.karr._rotation = 180;
hoppaLeft = -2;
nextplattaLeft = _root.karr._x - 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(40)) {
vilkethall = 3;
hopp = false;
_root.karr._rotation = 90;
hoppaDown = 2;
nextplattaDown = _root.karr._y + 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(38)) {
vilkethall = 4;
hopp = false;
_root.karr._rotation = -90;
hoppaUp = -2;
nextplattaUp = _root.karr._y - 24;
if (ljud == true) {
_root.hoppljud.play();
}
}
if (Key.isDown(68)) {
vilkethall = 5;
hopp = false;
_root.karr._rotation = 0;
hoppaRight = 2;
nextplattaRight = _root.karr._x + 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(65)) {
vilkethall = 6;
hopp = false;
_root.karr._rotation = 180;
hoppaLeft = -2;
nextplattaLeft = _root.karr._x - 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(83)) {
vilkethall = 7;
hopp = false;
_root.karr._rotation = 90;
hoppaDown = 2;
nextplattaDown = _root.karr._y + 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(87)) {
vilkethall = 8;
hopp = false;
_root.karr._rotation = -90;
hoppaUp = -2;
nextplattaUp = _root.karr._y - 48;
if (ljud == true) {
_root.hoppljud.play();
}
}
}
if ((paus == false) && ((vilkethall == 1) || (vilkethall == 5))) {
hoppaRight--;
karr._x = karr._x - hoppaRight;
if (karr._x > nextplattaRight) {
karr._x = nextplattaRight;
hoppaRight = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 2) || (vilkethall == 6))) {
hoppaLeft++;
karr._x = karr._x - hoppaLeft;
if (karr._x < nextplattaLeft) {
karr._x = nextplattaLeft;
hoppaLeft = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 3) || (vilkethall == 7))) {
hoppaDown--;
karr._y = karr._y - hoppaDown;
if (karr._y > nextplattaDown) {
karr._y = nextplattaDown;
hoppaDown = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 4) || (vilkethall == 8))) {
hoppaUp--;
karr._y = karr._y + hoppaUp;
if (karr._y < nextplattaUp) {
karr._y = nextplattaUp;
hoppaUp = 0;
hopp = true;
}
}
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (((((hoppaUp == -3) || (hoppaRight == 1)) || (hoppaDown == -1)) || (hoppaLeft == -1)) && (_root[pnamn].hitTest(_root.karr))) {
if (_root[pnamn].typ == "platta") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "red") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "yellow") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "green") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "blue") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
}
}
if (((hopp == true) && (klarad == false)) && (_root[pnamn].hitTest(_root.karr))) {
if (_root[pnamn].typ == "borta") {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "blue") && (_root.karr.typ != "blue")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "green") && (_root.karr.typ != "green")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "red") && (_root.karr.typ != "red")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "yellow") && (_root.karr.typ != "yellow")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
}
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn].hitTest(_root.karr)) {
if ((hopp == true) && (_root[snamn].typ == "yellow")) {
_root.karr.gotoAndStop("yellow");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "red")) {
_root.karr.gotoAndStop("red");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "blue")) {
_root.karr.gotoAndStop("blue");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "green")) {
_root.karr.gotoAndStop("green");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
}
}
i++;
}
if ((hopp == true) && (_root.key.hitTest(_root.karr))) {
nyckel = true;
if (ljud == true) {
_root.objektljud.play();
}
_root.key.play();
if (_root.key._currentframe == 1) {
_root.gotkey.play();
}
}
if (((hopp == true) && (nyckel == true)) && (_root.goal.hitTest(_root.karr))) {
_root.info._visible = true;
_root.infoknapp._visible = true;
hopp = false;
}
};
Frame 8
stop();
level = 5;
thislevelframe = 5;
karrstartX = 218;
karrstartY = 146;
karrstartRot = 0;
antalPplattor = 15;
antalSplash = 1;
klarad = false;
hopp = true;
nyckel = false;
paus = false;
_root.pausruta._visible = false;
_root.info._visible = false;
_root.infoknapp._visible = false;
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.howto._visible = false;
_root.howknapp1._visible = false;
_root.howknapp2._visible = false;
_root.howknapp3._visible = false;
_root.howknapp4._visible = false;
_root.howknapp5._visible = false;
_root.onEnterFrame = function () {
if (_root.sorry._visible == true) {
if (Key.isDown(13)) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = karrstartX;
_root.karr._y = karrstartY;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.karr.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
hopp = true;
}
}
if (_root.info._visible == true) {
if (Key.isDown(13)) {
klarad = true;
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = 194;
_root.karr._y = 146;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
_root.karr.gotoAndStop(1);
hopp = true;
_root.info._visible == false;
play();
}
}
if ((hopp == true) && (paus == false)) {
if (Key.isDown(39)) {
vilkethall = 1;
hopp = false;
_root.karr._rotation = 0;
hoppaRight = 2;
nextplattaRight = _root.karr._x + 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(37)) {
vilkethall = 2;
hopp = false;
_root.karr._rotation = 180;
hoppaLeft = -2;
nextplattaLeft = _root.karr._x - 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(40)) {
vilkethall = 3;
hopp = false;
_root.karr._rotation = 90;
hoppaDown = 2;
nextplattaDown = _root.karr._y + 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(38)) {
vilkethall = 4;
hopp = false;
_root.karr._rotation = -90;
hoppaUp = -2;
nextplattaUp = _root.karr._y - 24;
if (ljud == true) {
_root.hoppljud.play();
}
}
if (Key.isDown(68)) {
vilkethall = 5;
hopp = false;
_root.karr._rotation = 0;
hoppaRight = 2;
nextplattaRight = _root.karr._x + 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(65)) {
vilkethall = 6;
hopp = false;
_root.karr._rotation = 180;
hoppaLeft = -2;
nextplattaLeft = _root.karr._x - 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(83)) {
vilkethall = 7;
hopp = false;
_root.karr._rotation = 90;
hoppaDown = 2;
nextplattaDown = _root.karr._y + 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(87)) {
vilkethall = 8;
hopp = false;
_root.karr._rotation = -90;
hoppaUp = -2;
nextplattaUp = _root.karr._y - 48;
if (ljud == true) {
_root.hoppljud.play();
}
}
}
if ((paus == false) && ((vilkethall == 1) || (vilkethall == 5))) {
hoppaRight--;
karr._x = karr._x - hoppaRight;
if (karr._x > nextplattaRight) {
karr._x = nextplattaRight;
hoppaRight = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 2) || (vilkethall == 6))) {
hoppaLeft++;
karr._x = karr._x - hoppaLeft;
if (karr._x < nextplattaLeft) {
karr._x = nextplattaLeft;
hoppaLeft = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 3) || (vilkethall == 7))) {
hoppaDown--;
karr._y = karr._y - hoppaDown;
if (karr._y > nextplattaDown) {
karr._y = nextplattaDown;
hoppaDown = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 4) || (vilkethall == 8))) {
hoppaUp--;
karr._y = karr._y + hoppaUp;
if (karr._y < nextplattaUp) {
karr._y = nextplattaUp;
hoppaUp = 0;
hopp = true;
}
}
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (((((hoppaUp == -3) || (hoppaRight == 1)) || (hoppaDown == -1)) || (hoppaLeft == -1)) && (_root[pnamn].hitTest(_root.karr))) {
if (_root[pnamn].typ == "platta") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "red") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "yellow") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "green") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "blue") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
}
}
if (((hopp == true) && (klarad == false)) && (_root[pnamn].hitTest(_root.karr))) {
if (_root[pnamn].typ == "borta") {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "blue") && (_root.karr.typ != "blue")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "green") && (_root.karr.typ != "green")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "red") && (_root.karr.typ != "red")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "yellow") && (_root.karr.typ != "yellow")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
}
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn].hitTest(_root.karr)) {
if ((hopp == true) && (_root[snamn].typ == "yellow")) {
_root.karr.gotoAndStop("yellow");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "red")) {
_root.karr.gotoAndStop("red");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "blue")) {
_root.karr.gotoAndStop("blue");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "green")) {
_root.karr.gotoAndStop("green");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
}
}
i++;
}
if ((hopp == true) && (_root.key.hitTest(_root.karr))) {
nyckel = true;
if (ljud == true) {
_root.objektljud.play();
}
_root.key.play();
if (_root.key._currentframe == 1) {
_root.gotkey.play();
}
}
if (((hopp == true) && (nyckel == true)) && (_root.goal.hitTest(_root.karr))) {
_root.info._visible = true;
_root.infoknapp._visible = true;
hopp = false;
}
};
Frame 9
stop();
level = 6;
thislevelframe = 6;
karrstartX = 194;
karrstartY = 146;
karrstartRot = 0;
antalPplattor = 23;
antalSplash = 2;
klarad = false;
hopp = true;
nyckel = false;
paus = false;
_root.pausruta._visible = false;
_root.info._visible = false;
_root.infoknapp._visible = false;
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.howto._visible = false;
_root.howknapp1._visible = false;
_root.howknapp2._visible = false;
_root.howknapp3._visible = false;
_root.howknapp4._visible = false;
_root.howknapp5._visible = false;
_root.onEnterFrame = function () {
if (_root.sorry._visible == true) {
if (Key.isDown(13)) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = karrstartX;
_root.karr._y = karrstartY;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.karr.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
hopp = true;
}
}
if (_root.info._visible == true) {
if (Key.isDown(13)) {
klarad = true;
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = 194;
_root.karr._y = 242;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
_root.karr.gotoAndStop(1);
hopp = true;
_root.info._visible == false;
play();
}
}
if ((hopp == true) && (paus == false)) {
if (Key.isDown(39)) {
vilkethall = 1;
hopp = false;
_root.karr._rotation = 0;
hoppaRight = 2;
nextplattaRight = _root.karr._x + 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(37)) {
vilkethall = 2;
hopp = false;
_root.karr._rotation = 180;
hoppaLeft = -2;
nextplattaLeft = _root.karr._x - 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(40)) {
vilkethall = 3;
hopp = false;
_root.karr._rotation = 90;
hoppaDown = 2;
nextplattaDown = _root.karr._y + 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(38)) {
vilkethall = 4;
hopp = false;
_root.karr._rotation = -90;
hoppaUp = -2;
nextplattaUp = _root.karr._y - 24;
if (ljud == true) {
_root.hoppljud.play();
}
}
if (Key.isDown(68)) {
vilkethall = 5;
hopp = false;
_root.karr._rotation = 0;
hoppaRight = 2;
nextplattaRight = _root.karr._x + 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(65)) {
vilkethall = 6;
hopp = false;
_root.karr._rotation = 180;
hoppaLeft = -2;
nextplattaLeft = _root.karr._x - 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(83)) {
vilkethall = 7;
hopp = false;
_root.karr._rotation = 90;
hoppaDown = 2;
nextplattaDown = _root.karr._y + 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(87)) {
vilkethall = 8;
hopp = false;
_root.karr._rotation = -90;
hoppaUp = -2;
nextplattaUp = _root.karr._y - 48;
if (ljud == true) {
_root.hoppljud.play();
}
}
}
if ((paus == false) && ((vilkethall == 1) || (vilkethall == 5))) {
hoppaRight--;
karr._x = karr._x - hoppaRight;
if (karr._x > nextplattaRight) {
karr._x = nextplattaRight;
hoppaRight = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 2) || (vilkethall == 6))) {
hoppaLeft++;
karr._x = karr._x - hoppaLeft;
if (karr._x < nextplattaLeft) {
karr._x = nextplattaLeft;
hoppaLeft = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 3) || (vilkethall == 7))) {
hoppaDown--;
karr._y = karr._y - hoppaDown;
if (karr._y > nextplattaDown) {
karr._y = nextplattaDown;
hoppaDown = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 4) || (vilkethall == 8))) {
hoppaUp--;
karr._y = karr._y + hoppaUp;
if (karr._y < nextplattaUp) {
karr._y = nextplattaUp;
hoppaUp = 0;
hopp = true;
}
}
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (((((hoppaUp == -3) || (hoppaRight == 1)) || (hoppaDown == -1)) || (hoppaLeft == -1)) && (_root[pnamn].hitTest(_root.karr))) {
if (_root[pnamn].typ == "platta") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "red") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "yellow") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "green") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "blue") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
}
}
if (((hopp == true) && (klarad == false)) && (_root[pnamn].hitTest(_root.karr))) {
if (_root[pnamn].typ == "borta") {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "blue") && (_root.karr.typ != "blue")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "green") && (_root.karr.typ != "green")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "red") && (_root.karr.typ != "red")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "yellow") && (_root.karr.typ != "yellow")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
}
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn].hitTest(_root.karr)) {
if ((hopp == true) && (_root[snamn].typ == "yellow")) {
_root.karr.gotoAndStop("yellow");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "red")) {
_root.karr.gotoAndStop("red");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "blue")) {
_root.karr.gotoAndStop("blue");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "green")) {
_root.karr.gotoAndStop("green");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
}
}
i++;
}
if ((hopp == true) && (_root.key.hitTest(_root.karr))) {
nyckel = true;
if (ljud == true) {
_root.objektljud.play();
}
_root.key.play();
if (_root.key._currentframe == 1) {
_root.gotkey.play();
}
}
if (((hopp == true) && (nyckel == true)) && (_root.goal.hitTest(_root.karr))) {
_root.info._visible = true;
_root.infoknapp._visible = true;
hopp = false;
}
};
Frame 10
stop();
level = 7;
thislevelframe = 7;
karrstartX = 194;
karrstartY = 242;
karrstartRot = 0;
antalPplattor = 19;
antalSplash = 0;
klarad = false;
hopp = true;
nyckel = false;
paus = false;
_root.pausruta._visible = false;
_root.info._visible = false;
_root.infoknapp._visible = false;
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.howto._visible = false;
_root.howknapp1._visible = false;
_root.howknapp2._visible = false;
_root.howknapp3._visible = false;
_root.howknapp4._visible = false;
_root.howknapp5._visible = false;
_root.onEnterFrame = function () {
if (_root.sorry._visible == true) {
if (Key.isDown(13)) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = karrstartX;
_root.karr._y = karrstartY;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.karr.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
hopp = true;
}
}
if (_root.info._visible == true) {
if (Key.isDown(13)) {
klarad = true;
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = 218;
_root.karr._y = 122;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
_root.karr.gotoAndStop(1);
hopp = true;
_root.info._visible == false;
play();
}
}
if ((hopp == true) && (paus == false)) {
if (Key.isDown(39)) {
vilkethall = 1;
hopp = false;
_root.karr._rotation = 0;
hoppaRight = 2;
nextplattaRight = _root.karr._x + 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(37)) {
vilkethall = 2;
hopp = false;
_root.karr._rotation = 180;
hoppaLeft = -2;
nextplattaLeft = _root.karr._x - 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(40)) {
vilkethall = 3;
hopp = false;
_root.karr._rotation = 90;
hoppaDown = 2;
nextplattaDown = _root.karr._y + 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(38)) {
vilkethall = 4;
hopp = false;
_root.karr._rotation = -90;
hoppaUp = -2;
nextplattaUp = _root.karr._y - 24;
if (ljud == true) {
_root.hoppljud.play();
}
}
if (Key.isDown(68)) {
vilkethall = 5;
hopp = false;
_root.karr._rotation = 0;
hoppaRight = 2;
nextplattaRight = _root.karr._x + 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(65)) {
vilkethall = 6;
hopp = false;
_root.karr._rotation = 180;
hoppaLeft = -2;
nextplattaLeft = _root.karr._x - 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(83)) {
vilkethall = 7;
hopp = false;
_root.karr._rotation = 90;
hoppaDown = 2;
nextplattaDown = _root.karr._y + 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(87)) {
vilkethall = 8;
hopp = false;
_root.karr._rotation = -90;
hoppaUp = -2;
nextplattaUp = _root.karr._y - 48;
if (ljud == true) {
_root.hoppljud.play();
}
}
}
if ((paus == false) && ((vilkethall == 1) || (vilkethall == 5))) {
hoppaRight--;
karr._x = karr._x - hoppaRight;
if (karr._x > nextplattaRight) {
karr._x = nextplattaRight;
hoppaRight = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 2) || (vilkethall == 6))) {
hoppaLeft++;
karr._x = karr._x - hoppaLeft;
if (karr._x < nextplattaLeft) {
karr._x = nextplattaLeft;
hoppaLeft = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 3) || (vilkethall == 7))) {
hoppaDown--;
karr._y = karr._y - hoppaDown;
if (karr._y > nextplattaDown) {
karr._y = nextplattaDown;
hoppaDown = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 4) || (vilkethall == 8))) {
hoppaUp--;
karr._y = karr._y + hoppaUp;
if (karr._y < nextplattaUp) {
karr._y = nextplattaUp;
hoppaUp = 0;
hopp = true;
}
}
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (((((hoppaUp == -3) || (hoppaRight == 1)) || (hoppaDown == -1)) || (hoppaLeft == -1)) && (_root[pnamn].hitTest(_root.karr))) {
if (_root[pnamn].typ == "platta") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "red") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "yellow") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "green") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "blue") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
}
}
if (((hopp == true) && (klarad == false)) && (_root[pnamn].hitTest(_root.karr))) {
if (_root[pnamn].typ == "borta") {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "blue") && (_root.karr.typ != "blue")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "green") && (_root.karr.typ != "green")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "red") && (_root.karr.typ != "red")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "yellow") && (_root.karr.typ != "yellow")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
}
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn].hitTest(_root.karr)) {
if ((hopp == true) && (_root[snamn].typ == "yellow")) {
_root.karr.gotoAndStop("yellow");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "red")) {
_root.karr.gotoAndStop("red");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "blue")) {
_root.karr.gotoAndStop("blue");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "green")) {
_root.karr.gotoAndStop("green");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
}
}
i++;
}
if ((hopp == true) && (_root.key.hitTest(_root.karr))) {
nyckel = true;
if (ljud == true) {
_root.objektljud.play();
}
_root.key.play();
if (_root.key._currentframe == 1) {
_root.gotkey.play();
}
}
if (((hopp == true) && (nyckel == true)) && (_root.goal.hitTest(_root.karr))) {
_root.info._visible = true;
_root.infoknapp._visible = true;
hopp = false;
}
};
Frame 11
stop();
level = 8;
thislevelframe = 8;
karrstartX = 218;
karrstartY = 122;
karrstartRot = 0;
antalPplattor = 21;
antalSplash = 2;
klarad = false;
hopp = true;
nyckel = false;
paus = false;
_root.pausruta._visible = false;
_root.info._visible = false;
_root.infoknapp._visible = false;
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.howto._visible = false;
_root.howknapp1._visible = false;
_root.howknapp2._visible = false;
_root.howknapp3._visible = false;
_root.howknapp4._visible = false;
_root.howknapp5._visible = false;
_root.onEnterFrame = function () {
if (_root.sorry._visible == true) {
if (Key.isDown(13)) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = karrstartX;
_root.karr._y = karrstartY;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.karr.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
hopp = true;
}
}
if (_root.info._visible == true) {
if (Key.isDown(13)) {
klarad = true;
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = 122;
_root.karr._y = 98;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
_root.karr.gotoAndStop(1);
hopp = true;
_root.info._visible == false;
play();
}
}
if ((hopp == true) && (paus == false)) {
if (Key.isDown(39)) {
vilkethall = 1;
hopp = false;
_root.karr._rotation = 0;
hoppaRight = 2;
nextplattaRight = _root.karr._x + 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(37)) {
vilkethall = 2;
hopp = false;
_root.karr._rotation = 180;
hoppaLeft = -2;
nextplattaLeft = _root.karr._x - 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(40)) {
vilkethall = 3;
hopp = false;
_root.karr._rotation = 90;
hoppaDown = 2;
nextplattaDown = _root.karr._y + 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(38)) {
vilkethall = 4;
hopp = false;
_root.karr._rotation = -90;
hoppaUp = -2;
nextplattaUp = _root.karr._y - 24;
if (ljud == true) {
_root.hoppljud.play();
}
}
if (Key.isDown(68)) {
vilkethall = 5;
hopp = false;
_root.karr._rotation = 0;
hoppaRight = 2;
nextplattaRight = _root.karr._x + 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(65)) {
vilkethall = 6;
hopp = false;
_root.karr._rotation = 180;
hoppaLeft = -2;
nextplattaLeft = _root.karr._x - 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(83)) {
vilkethall = 7;
hopp = false;
_root.karr._rotation = 90;
hoppaDown = 2;
nextplattaDown = _root.karr._y + 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(87)) {
vilkethall = 8;
hopp = false;
_root.karr._rotation = -90;
hoppaUp = -2;
nextplattaUp = _root.karr._y - 48;
if (ljud == true) {
_root.hoppljud.play();
}
}
}
if ((paus == false) && ((vilkethall == 1) || (vilkethall == 5))) {
hoppaRight--;
karr._x = karr._x - hoppaRight;
if (karr._x > nextplattaRight) {
karr._x = nextplattaRight;
hoppaRight = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 2) || (vilkethall == 6))) {
hoppaLeft++;
karr._x = karr._x - hoppaLeft;
if (karr._x < nextplattaLeft) {
karr._x = nextplattaLeft;
hoppaLeft = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 3) || (vilkethall == 7))) {
hoppaDown--;
karr._y = karr._y - hoppaDown;
if (karr._y > nextplattaDown) {
karr._y = nextplattaDown;
hoppaDown = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 4) || (vilkethall == 8))) {
hoppaUp--;
karr._y = karr._y + hoppaUp;
if (karr._y < nextplattaUp) {
karr._y = nextplattaUp;
hoppaUp = 0;
hopp = true;
}
}
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (((((hoppaUp == -3) || (hoppaRight == 1)) || (hoppaDown == -1)) || (hoppaLeft == -1)) && (_root[pnamn].hitTest(_root.karr))) {
if (_root[pnamn].typ == "platta") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "red") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "yellow") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "green") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "blue") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
}
}
if (((hopp == true) && (klarad == false)) && (_root[pnamn].hitTest(_root.karr))) {
if (_root[pnamn].typ == "borta") {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "blue") && (_root.karr.typ != "blue")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "green") && (_root.karr.typ != "green")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "red") && (_root.karr.typ != "red")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "yellow") && (_root.karr.typ != "yellow")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
}
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn].hitTest(_root.karr)) {
if ((hopp == true) && (_root[snamn].typ == "yellow")) {
_root.karr.gotoAndStop("yellow");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "red")) {
_root.karr.gotoAndStop("red");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "blue")) {
_root.karr.gotoAndStop("blue");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "green")) {
_root.karr.gotoAndStop("green");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
}
}
i++;
}
if ((hopp == true) && (_root.key.hitTest(_root.karr))) {
nyckel = true;
if (ljud == true) {
_root.objektljud.play();
}
_root.key.play();
if (_root.key._currentframe == 1) {
_root.gotkey.play();
}
}
if (((hopp == true) && (nyckel == true)) && (_root.goal.hitTest(_root.karr))) {
_root.info._visible = true;
_root.infoknapp._visible = true;
hopp = false;
}
};
Frame 12
stop();
level = 9;
thislevelframe = 9;
karrstartX = 122;
karrstartY = 98;
karrstartRot = 0;
antalPplattor = 31;
antalSplash = 5;
klarad = false;
hopp = true;
nyckel = false;
paus = false;
_root.pausruta._visible = false;
_root.info._visible = false;
_root.infoknapp._visible = false;
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.howto._visible = false;
_root.howknapp1._visible = false;
_root.howknapp2._visible = false;
_root.howknapp3._visible = false;
_root.howknapp4._visible = false;
_root.howknapp5._visible = false;
_root.onEnterFrame = function () {
if (_root.sorry._visible == true) {
if (Key.isDown(13)) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = karrstartX;
_root.karr._y = karrstartY;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.karr.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
hopp = true;
}
}
if (_root.info._visible == true) {
if (Key.isDown(13)) {
klarad = true;
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = 98;
_root.karr._y = 170;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
_root.karr.gotoAndStop(1);
hopp = true;
_root.info._visible == false;
play();
}
}
if ((hopp == true) && (paus == false)) {
if (Key.isDown(39)) {
vilkethall = 1;
hopp = false;
_root.karr._rotation = 0;
hoppaRight = 2;
nextplattaRight = _root.karr._x + 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(37)) {
vilkethall = 2;
hopp = false;
_root.karr._rotation = 180;
hoppaLeft = -2;
nextplattaLeft = _root.karr._x - 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(40)) {
vilkethall = 3;
hopp = false;
_root.karr._rotation = 90;
hoppaDown = 2;
nextplattaDown = _root.karr._y + 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(38)) {
vilkethall = 4;
hopp = false;
_root.karr._rotation = -90;
hoppaUp = -2;
nextplattaUp = _root.karr._y - 24;
if (ljud == true) {
_root.hoppljud.play();
}
}
if (Key.isDown(68)) {
vilkethall = 5;
hopp = false;
_root.karr._rotation = 0;
hoppaRight = 2;
nextplattaRight = _root.karr._x + 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(65)) {
vilkethall = 6;
hopp = false;
_root.karr._rotation = 180;
hoppaLeft = -2;
nextplattaLeft = _root.karr._x - 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(83)) {
vilkethall = 7;
hopp = false;
_root.karr._rotation = 90;
hoppaDown = 2;
nextplattaDown = _root.karr._y + 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(87)) {
vilkethall = 8;
hopp = false;
_root.karr._rotation = -90;
hoppaUp = -2;
nextplattaUp = _root.karr._y - 48;
if (ljud == true) {
_root.hoppljud.play();
}
}
}
if ((paus == false) && ((vilkethall == 1) || (vilkethall == 5))) {
hoppaRight--;
karr._x = karr._x - hoppaRight;
if (karr._x > nextplattaRight) {
karr._x = nextplattaRight;
hoppaRight = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 2) || (vilkethall == 6))) {
hoppaLeft++;
karr._x = karr._x - hoppaLeft;
if (karr._x < nextplattaLeft) {
karr._x = nextplattaLeft;
hoppaLeft = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 3) || (vilkethall == 7))) {
hoppaDown--;
karr._y = karr._y - hoppaDown;
if (karr._y > nextplattaDown) {
karr._y = nextplattaDown;
hoppaDown = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 4) || (vilkethall == 8))) {
hoppaUp--;
karr._y = karr._y + hoppaUp;
if (karr._y < nextplattaUp) {
karr._y = nextplattaUp;
hoppaUp = 0;
hopp = true;
}
}
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (((((hoppaUp == -3) || (hoppaRight == 1)) || (hoppaDown == -1)) || (hoppaLeft == -1)) && (_root[pnamn].hitTest(_root.karr))) {
if (_root[pnamn].typ == "platta") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "red") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "yellow") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "green") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "blue") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
}
}
if (((hopp == true) && (klarad == false)) && (_root[pnamn].hitTest(_root.karr))) {
if (_root[pnamn].typ == "borta") {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "blue") && (_root.karr.typ != "blue")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "green") && (_root.karr.typ != "green")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "red") && (_root.karr.typ != "red")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "yellow") && (_root.karr.typ != "yellow")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
}
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn].hitTest(_root.karr)) {
if ((hopp == true) && (_root[snamn].typ == "yellow")) {
_root.karr.gotoAndStop("yellow");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "red")) {
_root.karr.gotoAndStop("red");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "blue")) {
_root.karr.gotoAndStop("blue");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "green")) {
_root.karr.gotoAndStop("green");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
}
}
i++;
}
if ((hopp == true) && (_root.key.hitTest(_root.karr))) {
nyckel = true;
if (ljud == true) {
_root.objektljud.play();
}
_root.key.play();
if (_root.key._currentframe == 1) {
_root.gotkey.play();
}
}
if (((hopp == true) && (nyckel == true)) && (_root.goal.hitTest(_root.karr))) {
_root.info._visible = true;
_root.infoknapp._visible = true;
hopp = false;
}
};
Frame 13
stop();
level = 10;
thislevelframe = 10;
karrstartX = 98;
karrstartY = 170;
karrstartRot = 0;
antalPplattor = 56;
antalSplash = 4;
klarad = false;
hopp = true;
nyckel = false;
paus = false;
_root.pausruta._visible = false;
_root.info._visible = false;
_root.infoknapp._visible = false;
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.howto._visible = false;
_root.howknapp1._visible = false;
_root.howknapp2._visible = false;
_root.howknapp3._visible = false;
_root.howknapp4._visible = false;
_root.howknapp5._visible = false;
_root.onEnterFrame = function () {
if (_root.sorry._visible == true) {
if (Key.isDown(13)) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = karrstartX;
_root.karr._y = karrstartY;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.karr.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
hopp = true;
}
}
if (_root.info._visible == true) {
if (Key.isDown(13)) {
klarad = true;
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = 74;
_root.karr._y = 242;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
_root.karr.gotoAndStop(1);
hopp = true;
_root.info._visible == false;
play();
}
}
if ((hopp == true) && (paus == false)) {
if (Key.isDown(39)) {
vilkethall = 1;
hopp = false;
_root.karr._rotation = 0;
hoppaRight = 2;
nextplattaRight = _root.karr._x + 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(37)) {
vilkethall = 2;
hopp = false;
_root.karr._rotation = 180;
hoppaLeft = -2;
nextplattaLeft = _root.karr._x - 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(40)) {
vilkethall = 3;
hopp = false;
_root.karr._rotation = 90;
hoppaDown = 2;
nextplattaDown = _root.karr._y + 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(38)) {
vilkethall = 4;
hopp = false;
_root.karr._rotation = -90;
hoppaUp = -2;
nextplattaUp = _root.karr._y - 24;
if (ljud == true) {
_root.hoppljud.play();
}
}
if (Key.isDown(68)) {
vilkethall = 5;
hopp = false;
_root.karr._rotation = 0;
hoppaRight = 2;
nextplattaRight = _root.karr._x + 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(65)) {
vilkethall = 6;
hopp = false;
_root.karr._rotation = 180;
hoppaLeft = -2;
nextplattaLeft = _root.karr._x - 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(83)) {
vilkethall = 7;
hopp = false;
_root.karr._rotation = 90;
hoppaDown = 2;
nextplattaDown = _root.karr._y + 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(87)) {
vilkethall = 8;
hopp = false;
_root.karr._rotation = -90;
hoppaUp = -2;
nextplattaUp = _root.karr._y - 48;
if (ljud == true) {
_root.hoppljud.play();
}
}
}
if ((paus == false) && ((vilkethall == 1) || (vilkethall == 5))) {
hoppaRight--;
karr._x = karr._x - hoppaRight;
if (karr._x > nextplattaRight) {
karr._x = nextplattaRight;
hoppaRight = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 2) || (vilkethall == 6))) {
hoppaLeft++;
karr._x = karr._x - hoppaLeft;
if (karr._x < nextplattaLeft) {
karr._x = nextplattaLeft;
hoppaLeft = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 3) || (vilkethall == 7))) {
hoppaDown--;
karr._y = karr._y - hoppaDown;
if (karr._y > nextplattaDown) {
karr._y = nextplattaDown;
hoppaDown = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 4) || (vilkethall == 8))) {
hoppaUp--;
karr._y = karr._y + hoppaUp;
if (karr._y < nextplattaUp) {
karr._y = nextplattaUp;
hoppaUp = 0;
hopp = true;
}
}
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (((((hoppaUp == -3) || (hoppaRight == 1)) || (hoppaDown == -1)) || (hoppaLeft == -1)) && (_root[pnamn].hitTest(_root.karr))) {
if (_root[pnamn].typ == "platta") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "red") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "yellow") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "green") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "blue") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
}
}
if (((hopp == true) && (klarad == false)) && (_root[pnamn].hitTest(_root.karr))) {
if (_root[pnamn].typ == "borta") {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "blue") && (_root.karr.typ != "blue")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "green") && (_root.karr.typ != "green")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "red") && (_root.karr.typ != "red")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "yellow") && (_root.karr.typ != "yellow")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
}
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn].hitTest(_root.karr)) {
if ((hopp == true) && (_root[snamn].typ == "yellow")) {
_root.karr.gotoAndStop("yellow");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "red")) {
_root.karr.gotoAndStop("red");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "blue")) {
_root.karr.gotoAndStop("blue");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "green")) {
_root.karr.gotoAndStop("green");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
}
}
i++;
}
if ((hopp == true) && (_root.key.hitTest(_root.karr))) {
nyckel = true;
if (ljud == true) {
_root.objektljud.play();
}
_root.key.play();
if (_root.key._currentframe == 1) {
_root.gotkey.play();
}
}
if (((hopp == true) && (nyckel == true)) && (_root.goal.hitTest(_root.karr))) {
_root.info._visible = true;
_root.infoknapp._visible = true;
hopp = false;
}
};
Frame 14
stop();
level = 11;
thislevelframe = 11;
karrstartX = 74;
karrstartY = 242;
karrstartRot = 0;
antalPplattor = 48;
antalSplash = 5;
klarad = false;
hopp = true;
nyckel = false;
paus = false;
_root.pausruta._visible = false;
_root.info._visible = false;
_root.infoknapp._visible = false;
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.howto._visible = false;
_root.howknapp1._visible = false;
_root.howknapp2._visible = false;
_root.howknapp3._visible = false;
_root.howknapp4._visible = false;
_root.howknapp5._visible = false;
_root.onEnterFrame = function () {
if (_root.sorry._visible == true) {
if (Key.isDown(13)) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = karrstartX;
_root.karr._y = karrstartY;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.karr.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
hopp = true;
}
}
if (_root.info._visible == true) {
if (Key.isDown(13)) {
klarad = true;
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = 50;
_root.karr._y = 50;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
_root.karr.gotoAndStop(1);
hopp = true;
_root.info._visible == false;
play();
}
}
if ((hopp == true) && (paus == false)) {
if (Key.isDown(39)) {
vilkethall = 1;
hopp = false;
_root.karr._rotation = 0;
hoppaRight = 2;
nextplattaRight = _root.karr._x + 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(37)) {
vilkethall = 2;
hopp = false;
_root.karr._rotation = 180;
hoppaLeft = -2;
nextplattaLeft = _root.karr._x - 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(40)) {
vilkethall = 3;
hopp = false;
_root.karr._rotation = 90;
hoppaDown = 2;
nextplattaDown = _root.karr._y + 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(38)) {
vilkethall = 4;
hopp = false;
_root.karr._rotation = -90;
hoppaUp = -2;
nextplattaUp = _root.karr._y - 24;
if (ljud == true) {
_root.hoppljud.play();
}
}
if (Key.isDown(68)) {
vilkethall = 5;
hopp = false;
_root.karr._rotation = 0;
hoppaRight = 2;
nextplattaRight = _root.karr._x + 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(65)) {
vilkethall = 6;
hopp = false;
_root.karr._rotation = 180;
hoppaLeft = -2;
nextplattaLeft = _root.karr._x - 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(83)) {
vilkethall = 7;
hopp = false;
_root.karr._rotation = 90;
hoppaDown = 2;
nextplattaDown = _root.karr._y + 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(87)) {
vilkethall = 8;
hopp = false;
_root.karr._rotation = -90;
hoppaUp = -2;
nextplattaUp = _root.karr._y - 48;
if (ljud == true) {
_root.hoppljud.play();
}
}
}
if ((paus == false) && ((vilkethall == 1) || (vilkethall == 5))) {
hoppaRight--;
karr._x = karr._x - hoppaRight;
if (karr._x > nextplattaRight) {
karr._x = nextplattaRight;
hoppaRight = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 2) || (vilkethall == 6))) {
hoppaLeft++;
karr._x = karr._x - hoppaLeft;
if (karr._x < nextplattaLeft) {
karr._x = nextplattaLeft;
hoppaLeft = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 3) || (vilkethall == 7))) {
hoppaDown--;
karr._y = karr._y - hoppaDown;
if (karr._y > nextplattaDown) {
karr._y = nextplattaDown;
hoppaDown = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 4) || (vilkethall == 8))) {
hoppaUp--;
karr._y = karr._y + hoppaUp;
if (karr._y < nextplattaUp) {
karr._y = nextplattaUp;
hoppaUp = 0;
hopp = true;
}
}
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (((((hoppaUp == -3) || (hoppaRight == 1)) || (hoppaDown == -1)) || (hoppaLeft == -1)) && (_root[pnamn].hitTest(_root.karr))) {
if (_root[pnamn].typ == "platta") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "red") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "yellow") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "green") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "blue") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
}
}
if (((hopp == true) && (klarad == false)) && (_root[pnamn].hitTest(_root.karr))) {
if (_root[pnamn].typ == "borta") {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "blue") && (_root.karr.typ != "blue")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "green") && (_root.karr.typ != "green")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "red") && (_root.karr.typ != "red")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "yellow") && (_root.karr.typ != "yellow")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
}
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn].hitTest(_root.karr)) {
if ((hopp == true) && (_root[snamn].typ == "yellow")) {
_root.karr.gotoAndStop("yellow");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "red")) {
_root.karr.gotoAndStop("red");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "blue")) {
_root.karr.gotoAndStop("blue");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "green")) {
_root.karr.gotoAndStop("green");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
}
}
i++;
}
if ((hopp == true) && (_root.key.hitTest(_root.karr))) {
nyckel = true;
if (ljud == true) {
_root.objektljud.play();
}
_root.key.play();
if (_root.key._currentframe == 1) {
_root.gotkey.play();
}
}
if (((hopp == true) && (nyckel == true)) && (_root.goal.hitTest(_root.karr))) {
_root.info._visible = true;
_root.infoknapp._visible = true;
hopp = false;
}
};
Frame 15
stop();
level = 12;
thislevelframe = 12;
karrstartX = 50;
karrstartY = 50;
karrstartRot = 0;
antalPplattor = 74;
antalSplash = 4;
klarad = false;
hopp = true;
nyckel = false;
paus = false;
_root.pausruta._visible = false;
_root.info._visible = false;
_root.infoknapp._visible = false;
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.howto._visible = false;
_root.howknapp1._visible = false;
_root.howknapp2._visible = false;
_root.howknapp3._visible = false;
_root.howknapp4._visible = false;
_root.howknapp5._visible = false;
_root.onEnterFrame = function () {
if (_root.sorry._visible == true) {
if (Key.isDown(13)) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = karrstartX;
_root.karr._y = karrstartY;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.karr.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
hopp = true;
}
}
if (_root.info._visible == true) {
if (Key.isDown(13)) {
klarad = true;
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = 170;
_root.karr._y = 146;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
_root.karr.gotoAndStop(1);
hopp = true;
_root.info._visible == false;
play();
}
}
if ((hopp == true) && (paus == false)) {
if (Key.isDown(39)) {
vilkethall = 1;
hopp = false;
_root.karr._rotation = 0;
hoppaRight = 2;
nextplattaRight = _root.karr._x + 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(37)) {
vilkethall = 2;
hopp = false;
_root.karr._rotation = 180;
hoppaLeft = -2;
nextplattaLeft = _root.karr._x - 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(40)) {
vilkethall = 3;
hopp = false;
_root.karr._rotation = 90;
hoppaDown = 2;
nextplattaDown = _root.karr._y + 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(38)) {
vilkethall = 4;
hopp = false;
_root.karr._rotation = -90;
hoppaUp = -2;
nextplattaUp = _root.karr._y - 24;
if (ljud == true) {
_root.hoppljud.play();
}
}
if (Key.isDown(68)) {
vilkethall = 5;
hopp = false;
_root.karr._rotation = 0;
hoppaRight = 2;
nextplattaRight = _root.karr._x + 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(65)) {
vilkethall = 6;
hopp = false;
_root.karr._rotation = 180;
hoppaLeft = -2;
nextplattaLeft = _root.karr._x - 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(83)) {
vilkethall = 7;
hopp = false;
_root.karr._rotation = 90;
hoppaDown = 2;
nextplattaDown = _root.karr._y + 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(87)) {
vilkethall = 8;
hopp = false;
_root.karr._rotation = -90;
hoppaUp = -2;
nextplattaUp = _root.karr._y - 48;
if (ljud == true) {
_root.hoppljud.play();
}
}
}
if ((paus == false) && ((vilkethall == 1) || (vilkethall == 5))) {
hoppaRight--;
karr._x = karr._x - hoppaRight;
if (karr._x > nextplattaRight) {
karr._x = nextplattaRight;
hoppaRight = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 2) || (vilkethall == 6))) {
hoppaLeft++;
karr._x = karr._x - hoppaLeft;
if (karr._x < nextplattaLeft) {
karr._x = nextplattaLeft;
hoppaLeft = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 3) || (vilkethall == 7))) {
hoppaDown--;
karr._y = karr._y - hoppaDown;
if (karr._y > nextplattaDown) {
karr._y = nextplattaDown;
hoppaDown = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 4) || (vilkethall == 8))) {
hoppaUp--;
karr._y = karr._y + hoppaUp;
if (karr._y < nextplattaUp) {
karr._y = nextplattaUp;
hoppaUp = 0;
hopp = true;
}
}
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (((((hoppaUp == -3) || (hoppaRight == 1)) || (hoppaDown == -1)) || (hoppaLeft == -1)) && (_root[pnamn].hitTest(_root.karr))) {
if (_root[pnamn].typ == "platta") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "red") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "yellow") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "green") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "blue") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
}
}
if (((hopp == true) && (klarad == false)) && (_root[pnamn].hitTest(_root.karr))) {
if (_root[pnamn].typ == "borta") {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "blue") && (_root.karr.typ != "blue")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "green") && (_root.karr.typ != "green")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "red") && (_root.karr.typ != "red")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "yellow") && (_root.karr.typ != "yellow")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
}
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn].hitTest(_root.karr)) {
if ((hopp == true) && (_root[snamn].typ == "yellow")) {
_root.karr.gotoAndStop("yellow");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "red")) {
_root.karr.gotoAndStop("red");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "blue")) {
_root.karr.gotoAndStop("blue");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "green")) {
_root.karr.gotoAndStop("green");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
}
}
i++;
}
if ((hopp == true) && (_root.key.hitTest(_root.karr))) {
nyckel = true;
if (ljud == true) {
_root.objektljud.play();
}
_root.key.play();
if (_root.key._currentframe == 1) {
_root.gotkey.play();
}
}
if (((hopp == true) && (nyckel == true)) && (_root.goal.hitTest(_root.karr))) {
_root.info._visible = true;
_root.infoknapp._visible = true;
hopp = false;
}
};
Frame 16
stop();
level = 13;
thislevelframe = 13;
karrstartX = 170;
karrstartY = 146;
karrstartRot = 0;
antalPplattor = 25;
antalSplash = 3;
klarad = false;
hopp = true;
nyckel = false;
paus = false;
_root.pausruta._visible = false;
_root.info._visible = false;
_root.infoknapp._visible = false;
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.howto._visible = false;
_root.howknapp1._visible = false;
_root.howknapp2._visible = false;
_root.howknapp3._visible = false;
_root.howknapp4._visible = false;
_root.howknapp5._visible = false;
_root.onEnterFrame = function () {
if (_root.sorry._visible == true) {
if (Key.isDown(13)) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = karrstartX;
_root.karr._y = karrstartY;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.karr.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
hopp = true;
}
}
if (_root.info._visible == true) {
if (Key.isDown(13)) {
klarad = true;
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = 98;
_root.karr._y = 218;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
_root.karr.gotoAndStop(1);
hopp = true;
_root.info._visible == false;
play();
}
}
if ((hopp == true) && (paus == false)) {
if (Key.isDown(39)) {
vilkethall = 1;
hopp = false;
_root.karr._rotation = 0;
hoppaRight = 2;
nextplattaRight = _root.karr._x + 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(37)) {
vilkethall = 2;
hopp = false;
_root.karr._rotation = 180;
hoppaLeft = -2;
nextplattaLeft = _root.karr._x - 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(40)) {
vilkethall = 3;
hopp = false;
_root.karr._rotation = 90;
hoppaDown = 2;
nextplattaDown = _root.karr._y + 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(38)) {
vilkethall = 4;
hopp = false;
_root.karr._rotation = -90;
hoppaUp = -2;
nextplattaUp = _root.karr._y - 24;
if (ljud == true) {
_root.hoppljud.play();
}
}
if (Key.isDown(68)) {
vilkethall = 5;
hopp = false;
_root.karr._rotation = 0;
hoppaRight = 2;
nextplattaRight = _root.karr._x + 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(65)) {
vilkethall = 6;
hopp = false;
_root.karr._rotation = 180;
hoppaLeft = -2;
nextplattaLeft = _root.karr._x - 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(83)) {
vilkethall = 7;
hopp = false;
_root.karr._rotation = 90;
hoppaDown = 2;
nextplattaDown = _root.karr._y + 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(87)) {
vilkethall = 8;
hopp = false;
_root.karr._rotation = -90;
hoppaUp = -2;
nextplattaUp = _root.karr._y - 48;
if (ljud == true) {
_root.hoppljud.play();
}
}
}
if ((paus == false) && ((vilkethall == 1) || (vilkethall == 5))) {
hoppaRight--;
karr._x = karr._x - hoppaRight;
if (karr._x > nextplattaRight) {
karr._x = nextplattaRight;
hoppaRight = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 2) || (vilkethall == 6))) {
hoppaLeft++;
karr._x = karr._x - hoppaLeft;
if (karr._x < nextplattaLeft) {
karr._x = nextplattaLeft;
hoppaLeft = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 3) || (vilkethall == 7))) {
hoppaDown--;
karr._y = karr._y - hoppaDown;
if (karr._y > nextplattaDown) {
karr._y = nextplattaDown;
hoppaDown = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 4) || (vilkethall == 8))) {
hoppaUp--;
karr._y = karr._y + hoppaUp;
if (karr._y < nextplattaUp) {
karr._y = nextplattaUp;
hoppaUp = 0;
hopp = true;
}
}
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (((((hoppaUp == -3) || (hoppaRight == 1)) || (hoppaDown == -1)) || (hoppaLeft == -1)) && (_root[pnamn].hitTest(_root.karr))) {
if (_root[pnamn].typ == "platta") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "red") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "yellow") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "green") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "blue") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
}
}
if (((hopp == true) && (klarad == false)) && (_root[pnamn].hitTest(_root.karr))) {
if (_root[pnamn].typ == "borta") {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "blue") && (_root.karr.typ != "blue")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "green") && (_root.karr.typ != "green")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "red") && (_root.karr.typ != "red")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "yellow") && (_root.karr.typ != "yellow")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
}
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn].hitTest(_root.karr)) {
if ((hopp == true) && (_root[snamn].typ == "yellow")) {
_root.karr.gotoAndStop("yellow");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "red")) {
_root.karr.gotoAndStop("red");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "blue")) {
_root.karr.gotoAndStop("blue");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "green")) {
_root.karr.gotoAndStop("green");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
}
}
i++;
}
if ((hopp == true) && (_root.key.hitTest(_root.karr))) {
nyckel = true;
if (ljud == true) {
_root.objektljud.play();
}
_root.key.play();
if (_root.key._currentframe == 1) {
_root.gotkey.play();
}
}
if (((hopp == true) && (nyckel == true)) && (_root.goal.hitTest(_root.karr))) {
_root.info._visible = true;
_root.infoknapp._visible = true;
hopp = false;
}
};
Frame 17
stop();
level = 14;
thislevelframe = 14;
karrstartX = 98;
karrstartY = 218;
karrstartRot = 0;
antalPplattor = 42;
antalSplash = 4;
klarad = false;
hopp = true;
nyckel = false;
paus = false;
_root.pausruta._visible = false;
_root.info._visible = false;
_root.infoknapp._visible = false;
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.howto._visible = false;
_root.howknapp1._visible = false;
_root.howknapp2._visible = false;
_root.howknapp3._visible = false;
_root.howknapp4._visible = false;
_root.howknapp5._visible = false;
_root.onEnterFrame = function () {
if (_root.sorry._visible == true) {
if (Key.isDown(13)) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = karrstartX;
_root.karr._y = karrstartY;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.karr.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
hopp = true;
}
}
if (_root.info._visible == true) {
if (Key.isDown(13)) {
klarad = true;
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = 50;
_root.karr._y = 218;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
_root.karr.gotoAndStop(1);
hopp = true;
_root.info._visible == false;
play();
}
}
if ((hopp == true) && (paus == false)) {
if (Key.isDown(39)) {
vilkethall = 1;
hopp = false;
_root.karr._rotation = 0;
hoppaRight = 2;
nextplattaRight = _root.karr._x + 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(37)) {
vilkethall = 2;
hopp = false;
_root.karr._rotation = 180;
hoppaLeft = -2;
nextplattaLeft = _root.karr._x - 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(40)) {
vilkethall = 3;
hopp = false;
_root.karr._rotation = 90;
hoppaDown = 2;
nextplattaDown = _root.karr._y + 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(38)) {
vilkethall = 4;
hopp = false;
_root.karr._rotation = -90;
hoppaUp = -2;
nextplattaUp = _root.karr._y - 24;
if (ljud == true) {
_root.hoppljud.play();
}
}
if (Key.isDown(68)) {
vilkethall = 5;
hopp = false;
_root.karr._rotation = 0;
hoppaRight = 2;
nextplattaRight = _root.karr._x + 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(65)) {
vilkethall = 6;
hopp = false;
_root.karr._rotation = 180;
hoppaLeft = -2;
nextplattaLeft = _root.karr._x - 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(83)) {
vilkethall = 7;
hopp = false;
_root.karr._rotation = 90;
hoppaDown = 2;
nextplattaDown = _root.karr._y + 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(87)) {
vilkethall = 8;
hopp = false;
_root.karr._rotation = -90;
hoppaUp = -2;
nextplattaUp = _root.karr._y - 48;
if (ljud == true) {
_root.hoppljud.play();
}
}
}
if ((paus == false) && ((vilkethall == 1) || (vilkethall == 5))) {
hoppaRight--;
karr._x = karr._x - hoppaRight;
if (karr._x > nextplattaRight) {
karr._x = nextplattaRight;
hoppaRight = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 2) || (vilkethall == 6))) {
hoppaLeft++;
karr._x = karr._x - hoppaLeft;
if (karr._x < nextplattaLeft) {
karr._x = nextplattaLeft;
hoppaLeft = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 3) || (vilkethall == 7))) {
hoppaDown--;
karr._y = karr._y - hoppaDown;
if (karr._y > nextplattaDown) {
karr._y = nextplattaDown;
hoppaDown = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 4) || (vilkethall == 8))) {
hoppaUp--;
karr._y = karr._y + hoppaUp;
if (karr._y < nextplattaUp) {
karr._y = nextplattaUp;
hoppaUp = 0;
hopp = true;
}
}
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (((((hoppaUp == -3) || (hoppaRight == 1)) || (hoppaDown == -1)) || (hoppaLeft == -1)) && (_root[pnamn].hitTest(_root.karr))) {
if (_root[pnamn].typ == "platta") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "red") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "yellow") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "green") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "blue") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
}
}
if (((hopp == true) && (klarad == false)) && (_root[pnamn].hitTest(_root.karr))) {
if (_root[pnamn].typ == "borta") {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "blue") && (_root.karr.typ != "blue")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "green") && (_root.karr.typ != "green")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "red") && (_root.karr.typ != "red")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "yellow") && (_root.karr.typ != "yellow")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
}
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn].hitTest(_root.karr)) {
if ((hopp == true) && (_root[snamn].typ == "yellow")) {
_root.karr.gotoAndStop("yellow");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "red")) {
_root.karr.gotoAndStop("red");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "blue")) {
_root.karr.gotoAndStop("blue");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "green")) {
_root.karr.gotoAndStop("green");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
}
}
i++;
}
if ((hopp == true) && (_root.key.hitTest(_root.karr))) {
nyckel = true;
if (ljud == true) {
_root.objektljud.play();
}
_root.key.play();
if (_root.key._currentframe == 1) {
_root.gotkey.play();
}
}
if (((hopp == true) && (nyckel == true)) && (_root.goal.hitTest(_root.karr))) {
_root.info._visible = true;
_root.infoknapp._visible = true;
hopp = false;
}
};
Frame 18
stop();
level = 15;
thislevelframe = 15;
karrstartX = 50;
karrstartY = 218;
karrstartRot = 0;
antalPplattor = 47;
antalSplash = 4;
klarad = false;
hopp = true;
nyckel = false;
paus = false;
_root.pausruta._visible = false;
_root.info._visible = false;
_root.infoknapp._visible = false;
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.howto._visible = false;
_root.howknapp1._visible = false;
_root.howknapp2._visible = false;
_root.howknapp3._visible = false;
_root.howknapp4._visible = false;
_root.howknapp5._visible = false;
_root.onEnterFrame = function () {
if (_root.sorry._visible == true) {
if (Key.isDown(13)) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = karrstartX;
_root.karr._y = karrstartY;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.karr.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
hopp = true;
}
}
if (_root.info._visible == true) {
if (Key.isDown(13)) {
klarad = true;
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = 194;
_root.karr._y = 194;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
_root.karr.gotoAndStop(1);
hopp = true;
_root.info._visible == false;
play();
}
}
if ((hopp == true) && (paus == false)) {
if (Key.isDown(39)) {
vilkethall = 1;
hopp = false;
_root.karr._rotation = 0;
hoppaRight = 2;
nextplattaRight = _root.karr._x + 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(37)) {
vilkethall = 2;
hopp = false;
_root.karr._rotation = 180;
hoppaLeft = -2;
nextplattaLeft = _root.karr._x - 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(40)) {
vilkethall = 3;
hopp = false;
_root.karr._rotation = 90;
hoppaDown = 2;
nextplattaDown = _root.karr._y + 24;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(38)) {
vilkethall = 4;
hopp = false;
_root.karr._rotation = -90;
hoppaUp = -2;
nextplattaUp = _root.karr._y - 24;
if (ljud == true) {
_root.hoppljud.play();
}
}
if (Key.isDown(68)) {
vilkethall = 5;
hopp = false;
_root.karr._rotation = 0;
hoppaRight = 2;
nextplattaRight = _root.karr._x + 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(65)) {
vilkethall = 6;
hopp = false;
_root.karr._rotation = 180;
hoppaLeft = -2;
nextplattaLeft = _root.karr._x - 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(83)) {
vilkethall = 7;
hopp = false;
_root.karr._rotation = 90;
hoppaDown = 2;
nextplattaDown = _root.karr._y + 48;
if (ljud == true) {
_root.hoppljud.play();
}
} else if (Key.isDown(87)) {
vilkethall = 8;
hopp = false;
_root.karr._rotation = -90;
hoppaUp = -2;
nextplattaUp = _root.karr._y - 48;
if (ljud == true) {
_root.hoppljud.play();
}
}
}
if ((paus == false) && ((vilkethall == 1) || (vilkethall == 5))) {
hoppaRight--;
karr._x = karr._x - hoppaRight;
if (karr._x > nextplattaRight) {
karr._x = nextplattaRight;
hoppaRight = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 2) || (vilkethall == 6))) {
hoppaLeft++;
karr._x = karr._x - hoppaLeft;
if (karr._x < nextplattaLeft) {
karr._x = nextplattaLeft;
hoppaLeft = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 3) || (vilkethall == 7))) {
hoppaDown--;
karr._y = karr._y - hoppaDown;
if (karr._y > nextplattaDown) {
karr._y = nextplattaDown;
hoppaDown = 0;
hopp = true;
}
} else if ((paus == false) && ((vilkethall == 4) || (vilkethall == 8))) {
hoppaUp--;
karr._y = karr._y + hoppaUp;
if (karr._y < nextplattaUp) {
karr._y = nextplattaUp;
hoppaUp = 0;
hopp = true;
}
}
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (((((hoppaUp == -3) || (hoppaRight == 1)) || (hoppaDown == -1)) || (hoppaLeft == -1)) && (_root[pnamn].hitTest(_root.karr))) {
if (_root[pnamn].typ == "platta") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "red") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "yellow") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "green") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
} else if (_root[pnamn].typ == "blue") {
_root[pnamn].play();
if (ljud == true) {
_root.plattljud.play();
}
}
}
if (((hopp == true) && (klarad == false)) && (_root[pnamn].hitTest(_root.karr))) {
if (_root[pnamn].typ == "borta") {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "blue") && (_root.karr.typ != "blue")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "green") && (_root.karr.typ != "green")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "red") && (_root.karr.typ != "red")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
} else if ((_root[pnamn].typ == "yellow") && (_root.karr.typ != "yellow")) {
sorry._visible = true;
resetknapp._visible = true;
hopp = false;
}
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn].hitTest(_root.karr)) {
if ((hopp == true) && (_root[snamn].typ == "yellow")) {
_root.karr.gotoAndStop("yellow");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "red")) {
_root.karr.gotoAndStop("red");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "blue")) {
_root.karr.gotoAndStop("blue");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
} else if ((hopp == true) && (_root[snamn].typ == "green")) {
_root.karr.gotoAndStop("green");
if (ljud == true) {
_root.fargljud.play();
}
_root[snamn].play();
}
}
i++;
}
if ((hopp == true) && (_root.key.hitTest(_root.karr))) {
nyckel = true;
if (ljud == true) {
_root.objektljud.play();
}
_root.key.play();
if (_root.key._currentframe == 1) {
_root.gotkey.play();
}
}
if (((hopp == true) && (nyckel == true)) && (_root.goal.hitTest(_root.karr))) {
_root.info._visible = true;
_root.infoknapp._visible = true;
hopp = false;
}
};
Frame 19
stop();
Symbol 18 MovieClip Frame 1
this.typ = "platta";
stop();
Symbol 18 MovieClip Frame 8
this.typ = "borta";
stop();
Symbol 19 MovieClip Frame 1
stop();
Symbol 19 MovieClip Frame 24
stop();
Symbol 19 MovieClip Frame 26
stop();
Symbol 19 MovieClip Frame 28
stop();
Symbol 19 MovieClip Frame 30
stop();
Symbol 19 MovieClip Frame 32
stop();
Symbol 19 MovieClip Frame 34
stop();
Symbol 19 MovieClip Frame 36
stop();
Symbol 19 MovieClip Frame 38
stop();
Symbol 19 MovieClip Frame 40
stop();
Symbol 19 MovieClip Frame 42
stop();
Symbol 19 MovieClip Frame 44
stop();
Symbol 19 MovieClip Frame 46
stop();
Symbol 19 MovieClip Frame 48
stop();
Symbol 19 MovieClip Frame 50
stop();
Symbol 19 MovieClip Frame 52
stop();
Symbol 19 MovieClip Frame 54
stop();
Symbol 19 MovieClip Frame 56
stop();
Symbol 19 MovieClip Frame 58
stop();
Symbol 19 MovieClip Frame 60
stop();
Symbol 19 MovieClip Frame 62
stop();
Symbol 19 MovieClip Frame 64
stop();
Symbol 19 MovieClip Frame 66
stop();
Symbol 19 MovieClip Frame 68
stop();
Symbol 19 MovieClip Frame 70
stop();
Symbol 19 MovieClip Frame 72
stop();
Symbol 19 MovieClip Frame 74
stop();
Symbol 19 MovieClip Frame 76
stop();
Symbol 19 MovieClip Frame 78
stop();
Symbol 19 MovieClip Frame 80
stop();
Symbol 19 MovieClip Frame 82
stop();
Symbol 19 MovieClip Frame 84
stop();
Symbol 19 MovieClip Frame 86
stop();
Symbol 19 MovieClip Frame 88
stop();
Symbol 23 Button
on (release) {
gotoAndStop (4);
}
Symbol 25 MovieClip Frame 1
stop();
Symbol 27 MovieClip Frame 1
stop();
Symbol 29 MovieClip Frame 1
stop();
Symbol 31 MovieClip Frame 1
stop();
Symbol 34 MovieClip Frame 1
this.typ = "borta";
stop();
Symbol 42 MovieClip Frame 1
this.typ = "normal";
stop();
Symbol 42 MovieClip Frame 3
this.typ = "blue";
stop();
Symbol 42 MovieClip Frame 5
this.typ = "red";
stop();
Symbol 42 MovieClip Frame 7
this.typ = "green";
stop();
Symbol 42 MovieClip Frame 9
this.typ = "yellow";
stop();
Symbol 45 MovieClip Frame 1
stop();
Symbol 45 MovieClip Frame 10
stop();
Symbol 50 MovieClip Frame 1
stop();
Symbol 50 MovieClip Frame 5
stop();
Symbol 57 Button
on (release) {
if (paus == false) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = karrstartX;
_root.karr._y = karrstartY;
_root.karr._rotation = karrstartRot;
_root.info._visible = false;
_root.infoknapp._visible = false;
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.howto._visible = false;
_root.howknapp1._visible = false;
_root.howknapp2._visible = false;
_root.howknapp3._visible = false;
_root.howknapp4._visible = false;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.karr.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
hopp = true;
gotoAndStop(thislevelframe +3);
}
}
Symbol 61 Button
on (release) {
if (paus == false) {
musikkryss.play();
}
}
Symbol 63 MovieClip Frame 1
_root.ljud = true;
stop();
Symbol 63 MovieClip Frame 3
_root.ljud = false;
stop();
Symbol 69 Button
on (release) {
_root.paus = true;
if (_root.info._visible == true) {
_root.info._visible = false;
_root.infoknapp._visible = false;
}
_root.hopp = false;
_root.howto._visible = true;
_root.howknapp1._visible = true;
_root.howknapp2._visible = true;
_root.howknapp3._visible = true;
_root.howknapp4._visible = true;
_root.howknapp5._visible = true;
}
Symbol 74 Button
on (release) {
if (((_root.howto._visible == false) && (_root.info._visible == false)) && (_root.sorry._visible == false)) {
_root.paus = true;
_root.pausruta._visible = true;
}
}
Symbol 80 Button
on (release) {
_root.paus = false;
_root.pausruta._visible = false;
}
Symbol 84 Button
on (release) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = karrstartX;
_root.karr._y = karrstartY;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.sorry._visible = false;
_root.resetknapp._visible = false;
_root.karr.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
hopp = true;
gotoAndStop(_root.thislevelframe +3);
}
Symbol 86 MovieClip Frame 5
e1.play();
Symbol 86 MovieClip Frame 16
e3.play();
Symbol 86 MovieClip Frame 27
e9.play();
Symbol 86 MovieClip Frame 38
e7.play();
Symbol 86 MovieClip Frame 47
e4.play();
Symbol 86 MovieClip Frame 58
e6.play();
Symbol 86 MovieClip Frame 67
e5.play();
Symbol 86 MovieClip Frame 76
e8.play();
Symbol 86 MovieClip Frame 87
e2.play();
Symbol 86 MovieClip Frame 102
e1.gotoAndStop(1);
e2.gotoAndStop(1);
e3.gotoAndStop(1);
e4.gotoAndStop(1);
e5.gotoAndStop(1);
e6.gotoAndStop(1);
e7.gotoAndStop(1);
e8.gotoAndStop(1);
e9.gotoAndStop(1);
Symbol 89 MovieClip Frame 5
e1.play();
Symbol 89 MovieClip Frame 12
e2.play();
Symbol 89 MovieClip Frame 19
e3.play();
Symbol 89 MovieClip Frame 26
e4.play();
Symbol 89 MovieClip Frame 37
e1.gotoAndStop(1);
e2.gotoAndStop(1);
e3.gotoAndStop(1);
e4.gotoAndStop(1);
Symbol 96 MovieClip Frame 6
e1.play();
Symbol 96 MovieClip Frame 17
e2.play();
Symbol 96 MovieClip Frame 28
e3.play();
Symbol 96 MovieClip Frame 39
e4.play();
Symbol 96 MovieClip Frame 55
e1.gotoAndStop(1);
e2.gotoAndStop(1);
e3.gotoAndStop(1);
e4.gotoAndStop(1);
Symbol 105 MovieClip Frame 1
this.typ = "green";
stop();
Symbol 105 MovieClip Frame 8
this.typ = "borta";
stop();
Symbol 111 MovieClip Frame 1
this.typ = "blue";
stop();
Symbol 111 MovieClip Frame 8
this.typ = "borta";
stop();
Symbol 117 MovieClip Frame 1
this.typ = "yellow";
stop();
Symbol 117 MovieClip Frame 8
this.typ = "borta";
stop();
Symbol 123 MovieClip Frame 1
this.typ = "red";
stop();
Symbol 123 MovieClip Frame 8
this.typ = "borta";
stop();
Symbol 134 MovieClip Frame 1
this.typ = "platta";
stop();
Symbol 134 MovieClip Frame 4
this.typ = "platta";
stop();
Symbol 134 MovieClip Frame 7
this.typ = "platta";
stop();
Symbol 134 MovieClip Frame 11
this.typ = "platta";
stop();
Symbol 134 MovieClip Frame 15
this.typ = "borta";
stop();
Symbol 139 MovieClip Frame 1
this.typ = "platta";
stop();
Symbol 139 MovieClip Frame 4
this.typ = "platta";
stop();
Symbol 139 MovieClip Frame 12
this.typ = "borta";
stop();
Symbol 146 MovieClip Frame 1
this.typ = "blue";
stop();
Symbol 146 MovieClip Frame 3
this.typ = "";
stop();
Symbol 149 MovieClip Frame 1
this.typ = "green";
stop();
Symbol 149 MovieClip Frame 3
this.typ = "";
stop();
Symbol 152 MovieClip Frame 1
this.typ = "yellow";
stop();
Symbol 152 MovieClip Frame 3
this.typ = "";
stop();
Symbol 155 MovieClip Frame 1
this.typ = "red";
stop();
Symbol 155 MovieClip Frame 3
this.typ = "";
stop();
Symbol 158 MovieClip Frame 1
stop();
Symbol 158 MovieClip Frame 2
stop();
Symbol 158 MovieClip Frame 3
stop();
Symbol 158 MovieClip Frame 4
stop();
Symbol 159 Button
on (release) {
_root.howto.gotoAndStop(1);
_root.hopp = false;
}
Symbol 164 Button
on (release) {
_root.howto.gotoAndStop(2);
_root.hopp = false;
}
Symbol 168 MovieClip Frame 10
stop();
Symbol 170 Button
on (release) {
_root.howto.gotoAndStop(3);
_root.hopp = false;
}
Symbol 173 Button
on (release) {
_root.howto.gotoAndStop(4);
_root.hopp = false;
}
Symbol 178 Button
on (release) {
_root.howto._visible = false;
_root.howknapp1._visible = false;
_root.howknapp2._visible = false;
_root.howknapp3._visible = false;
_root.howknapp4._visible = false;
_root.howknapp5._visible = false;
_root.hopp = true;
_root.paus = false;
}
Symbol 187 Button
on (release) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = 194;
_root.karr._y = 194;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
_root.karr.gotoAndStop(1);
hopp = true;
paus = false;
play();
}
Symbol 188 Button
on (release) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = 194;
_root.karr._y = 170;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
_root.karr.gotoAndStop(1);
hopp = true;
paus = false;
play();
}
Symbol 189 Button
on (release) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = 122;
_root.karr._y = 146;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
_root.karr.gotoAndStop(1);
hopp = true;
paus = false;
play();
}
Symbol 190 Button
on (release) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = 218;
_root.karr._y = 146;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
_root.karr.gotoAndStop(1);
hopp = true;
play();
}
Symbol 191 Button
on (release) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = 194;
_root.karr._y = 146;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
_root.karr.gotoAndStop(1);
hopp = true;
paus = true;
play();
}
Symbol 197 MovieClip Frame 1
this.typ = "green";
stop();
Symbol 197 MovieClip Frame 4
this.typ = "green";
stop();
Symbol 197 MovieClip Frame 12
this.typ = "borta";
stop();
Symbol 198 Button
on (release) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = 194;
_root.karr._y = 242;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
_root.karr.gotoAndStop(1);
hopp = true;
paus = true;
play();
}
Symbol 199 Button
on (release) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = 218;
_root.karr._y = 122;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
_root.karr.gotoAndStop(1);
hopp = true;
paus = true;
play();
}
Symbol 205 MovieClip Frame 1
this.typ = "yellow";
stop();
Symbol 205 MovieClip Frame 4
this.typ = "yellow";
stop();
Symbol 205 MovieClip Frame 12
this.typ = "borta";
stop();
Symbol 206 Button
on (release) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = 122;
_root.karr._y = 98;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
_root.karr.gotoAndStop(1);
hopp = true;
paus = true;
play();
}
Symbol 207 Button
on (release) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = 98;
_root.karr._y = 170;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
_root.karr.gotoAndStop(1);
hopp = true;
paus = true;
play();
}
Symbol 208 Button
on (release) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = 74;
_root.karr._y = 242;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
_root.karr.gotoAndStop(1);
hopp = true;
paus = true;
play();
}
Symbol 209 Button
on (release) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = 50;
_root.karr._y = 50;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
_root.karr.gotoAndStop(1);
hopp = true;
paus = true;
play();
}
Symbol 210 Button
on (release) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = 170;
_root.karr._y = 146;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
_root.karr.gotoAndStop(1);
hopp = true;
paus = true;
play();
}
Symbol 211 Button
on (release) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = 98;
_root.karr._y = 218;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
_root.karr.gotoAndStop(1);
hopp = true;
paus = true;
play();
}
Symbol 212 Button
on (release) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = 50;
_root.karr._y = 218;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
_root.karr.gotoAndStop(1);
hopp = true;
paus = true;
play();
}
Symbol 213 Button
on (release) {
i = 0;
while (i <= antalPplattor) {
pnamn = "P" + i;
if (_root[pnamn]._currentframe != 1) {
_root[pnamn].gotoAndPlay(1);
}
i++;
}
i = 0;
while (i <= antalSplash) {
snamn = "S" + i;
if (_root[snamn]._currentframe != 1) {
_root[snamn].gotoAndPlay(1);
}
i++;
}
_root.karr._x = 194;
_root.karr._y = 170;
_root.karr._rotation = karrstartRot;
vilkethall = 0;
nyckel = false;
_root.key.gotoAndStop(1);
_root.gotkey.gotoAndStop(1);
_root.karr.gotoAndStop(1);
hopp = true;
paus = true;
play();
}
Symbol 216 Button
on (release) {
_root.karr._x = 146;
_root.karr._y = 170;
hoppaLeft = 0;
hoppaRight = 0;
hoppaDown = 0;
hoppaUp = 0;
gotoAndStop (4);
}