Frame 1
stop();
root_cm = new ContextMenu();
root_cm.hideBuiltInItems();
_root.menu = root_cm;
Frame 2
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (3);
}
};
_root.music.nextFrame();
Instance of Symbol 201 MovieClip "platform" in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y - 2)) {
_root.player._y = _root.player._y - 0.1;
} else {
_root.player._y = _root.player._y + 0.1;
}
}
Instance of Symbol 38 MovieClip "player" in Frame 2
onClipEvent (load) {
gotoAndStop (1);
}
Instance of Symbol 38 MovieClip "player" in Frame 3
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
}
Instance of Symbol 719 MovieClip "lvl1" in Frame 3
onClipEvent (enterFrame) {
gotoAndStop (1);
}
Instance of Symbol 728 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(4);
}
}
Frame 4
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (5);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 4
onClipEvent (enterFrame) {
this.gotoAndStop(2);
}
Instance of Symbol 726 MovieClip in Frame 4
onClipEvent (enterFrame) {
this.gotoAndStop(2);
}
Instance of Symbol 719 MovieClip "lvl1" in Frame 5
onClipEvent (enterFrame) {
this.gotoAndStop(2);
}
Instance of Symbol 38 MovieClip "player" in Frame 5
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Instance of Symbol 728 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Frame 6
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (7);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 6
onClipEvent (enterFrame) {
this.gotoAndStop(3);
}
Instance of Symbol 726 MovieClip in Frame 6
onClipEvent (enterFrame) {
this.gotoAndStop(3);
}
Instance of Symbol 719 MovieClip "lvl1" in Frame 7
onClipEvent (enterFrame) {
this.gotoAndStop(3);
}
Instance of Symbol 38 MovieClip "player" in Frame 7
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Instance of Symbol 728 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 728 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Frame 8
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (9);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 8
onClipEvent (enterFrame) {
this.gotoAndStop(4);
}
Instance of Symbol 38 MovieClip "player" in Frame 8
onClipEvent (load) {
this.gotoAndStop(1);
}
Instance of Symbol 726 MovieClip in Frame 8
onClipEvent (enterFrame) {
this.gotoAndStop(4);
}
Instance of Symbol 728 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 38 MovieClip "player" in Frame 9
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 10
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (11);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 10
onClipEvent (enterFrame) {
this.gotoAndStop(5);
}
Instance of Symbol 38 MovieClip "player" in Frame 10
onClipEvent (load) {
this.gotoAndStop(1);
}
Instance of Symbol 726 MovieClip in Frame 10
onClipEvent (enterFrame) {
this.gotoAndStop(5);
}
Instance of Symbol 728 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 38 MovieClip "player" in Frame 11
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 13
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (14);
}
};
Instance of Symbol 194 MovieClip in Frame 13
onClipEvent (enterFrame) {
this.gotoAndStop(2);
}
Instance of Symbol 728 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 719 MovieClip "lvl1" in Frame 13
onClipEvent (enterFrame) {
this.gotoAndStop(6);
}
Instance of Symbol 38 MovieClip "player" in Frame 14
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 15
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (16);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 15
onClipEvent (enterFrame) {
this.gotoAndStop(7);
}
Instance of Symbol 38 MovieClip "player" in Frame 16
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 17
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (18);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 17
onClipEvent (enterFrame) {
this.gotoAndStop(8);
}
Instance of Symbol 38 MovieClip "player" in Frame 18
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 19
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (20);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 19
onClipEvent (enterFrame) {
this.gotoAndStop(9);
}
Instance of Symbol 38 MovieClip "player" in Frame 20
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 21
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (22);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 21
onClipEvent (enterFrame) {
this.gotoAndStop(10);
}
Instance of Symbol 38 MovieClip "player" in Frame 22
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 23
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (24);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 23
onClipEvent (enterFrame) {
this.gotoAndStop(11);
}
Instance of Symbol 38 MovieClip "player" in Frame 24
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 25
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (26);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 25
onClipEvent (enterFrame) {
this.gotoAndStop(12);
}
Instance of Symbol 38 MovieClip "player" in Frame 26
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 27
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (28);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 27
onClipEvent (enterFrame) {
this.gotoAndStop(13);
}
Instance of Symbol 38 MovieClip "player" in Frame 28
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 29
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (30);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 29
onClipEvent (enterFrame) {
this.gotoAndStop(14);
}
Instance of Symbol 38 MovieClip "player" in Frame 30
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 31
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (32);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 31
onClipEvent (enterFrame) {
this.gotoAndStop(15);
}
Instance of Symbol 38 MovieClip "player" in Frame 32
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Instance of Symbol 731 MovieClip in Frame 33
onClipEvent (load) {
_root.time.gotoAndPlay(1);
}
Frame 34
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (35);
}
};
Instance of Symbol 194 MovieClip in Frame 34
onClipEvent (enterFrame) {
this.gotoAndStop(3);
}
Instance of Symbol 719 MovieClip "lvl1" in Frame 34
onClipEvent (enterFrame) {
this.gotoAndStop(16);
}
Instance of Symbol 38 MovieClip "player" in Frame 35
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 36
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (37);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 36
onClipEvent (enterFrame) {
this.gotoAndStop(17);
}
Instance of Symbol 38 MovieClip "player" in Frame 37
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 38
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (39);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 38
onClipEvent (enterFrame) {
this.gotoAndStop(18);
}
Instance of Symbol 38 MovieClip "player" in Frame 39
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 40
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (41);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 40
onClipEvent (enterFrame) {
this.gotoAndStop(19);
}
Instance of Symbol 38 MovieClip "player" in Frame 41
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 42
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (43);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 42
onClipEvent (enterFrame) {
this.gotoAndStop(20);
}
Instance of Symbol 38 MovieClip "player" in Frame 43
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 44
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (45);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 44
onClipEvent (enterFrame) {
this.gotoAndStop(21);
}
Instance of Symbol 38 MovieClip "player" in Frame 45
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 46
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (47);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 46
onClipEvent (enterFrame) {
this.gotoAndStop(22);
}
Instance of Symbol 38 MovieClip "player" in Frame 47
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 48
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (49);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 48
onClipEvent (enterFrame) {
this.gotoAndStop(23);
}
Instance of Symbol 38 MovieClip "player" in Frame 49
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 50
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (51);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 50
onClipEvent (enterFrame) {
this.gotoAndStop(24);
}
Instance of Symbol 38 MovieClip "player" in Frame 51
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 52
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (53);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 52
onClipEvent (enterFrame) {
this.gotoAndStop(25);
}
Instance of Symbol 38 MovieClip "player" in Frame 53
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Instance of Symbol 731 MovieClip in Frame 54
onClipEvent (load) {
_root.time.gotoAndPlay(1);
}
Frame 55
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (56);
}
};
Instance of Symbol 194 MovieClip in Frame 55
onClipEvent (enterFrame) {
this.gotoAndStop(4);
}
Instance of Symbol 719 MovieClip "lvl1" in Frame 55
onClipEvent (enterFrame) {
this.gotoAndStop(26);
}
Instance of Symbol 38 MovieClip "player" in Frame 56
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 57
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (58);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 57
onClipEvent (enterFrame) {
this.gotoAndStop(27);
}
Instance of Symbol 38 MovieClip "player" in Frame 58
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 59
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (60);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 59
onClipEvent (enterFrame) {
this.gotoAndStop(28);
}
Instance of Symbol 38 MovieClip "player" in Frame 60
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 61
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (62);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 61
onClipEvent (enterFrame) {
this.gotoAndStop(29);
}
Instance of Symbol 38 MovieClip "player" in Frame 62
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 63
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (64);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 63
onClipEvent (enterFrame) {
this.gotoAndStop(30);
}
Instance of Symbol 38 MovieClip "player" in Frame 64
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 65
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (66);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 65
onClipEvent (enterFrame) {
this.gotoAndStop(31);
}
Instance of Symbol 38 MovieClip "player" in Frame 66
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 67
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (68);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 67
onClipEvent (enterFrame) {
this.gotoAndStop(32);
}
Instance of Symbol 38 MovieClip "player" in Frame 68
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 69
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (70);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 69
onClipEvent (enterFrame) {
this.gotoAndStop(33);
}
Instance of Symbol 38 MovieClip "player" in Frame 70
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 71
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (72);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 71
onClipEvent (enterFrame) {
this.gotoAndStop(34);
}
Instance of Symbol 38 MovieClip "player" in Frame 72
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 73
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (74);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 73
onClipEvent (enterFrame) {
this.gotoAndStop(35);
}
Instance of Symbol 38 MovieClip "player" in Frame 74
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Instance of Symbol 731 MovieClip in Frame 75
onClipEvent (load) {
_root.time.gotoAndPlay(1);
}
Frame 76
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (77);
}
};
Instance of Symbol 194 MovieClip in Frame 76
onClipEvent (enterFrame) {
this.gotoAndStop(5);
}
Instance of Symbol 719 MovieClip "lvl1" in Frame 76
onClipEvent (enterFrame) {
this.gotoAndStop(36);
}
Instance of Symbol 38 MovieClip "player" in Frame 77
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 78
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (79);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 78
onClipEvent (enterFrame) {
this.gotoAndStop(37);
}
Instance of Symbol 38 MovieClip "player" in Frame 79
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 80
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (81);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 80
onClipEvent (enterFrame) {
this.gotoAndStop(38);
}
Instance of Symbol 38 MovieClip "player" in Frame 81
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 82
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (83);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 82
onClipEvent (enterFrame) {
this.gotoAndStop(39);
}
Instance of Symbol 38 MovieClip "player" in Frame 83
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 84
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (85);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 84
onClipEvent (enterFrame) {
this.gotoAndStop(40);
}
Instance of Symbol 38 MovieClip "player" in Frame 85
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 86
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (87);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 86
onClipEvent (enterFrame) {
this.gotoAndStop(41);
}
Instance of Symbol 38 MovieClip "player" in Frame 87
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 88
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (89);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 88
onClipEvent (enterFrame) {
this.gotoAndStop(42);
}
Instance of Symbol 38 MovieClip "player" in Frame 89
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 90
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (91);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 90
onClipEvent (enterFrame) {
this.gotoAndStop(43);
}
Instance of Symbol 38 MovieClip "player" in Frame 91
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 92
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (93);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 92
onClipEvent (enterFrame) {
this.gotoAndStop(44);
}
Instance of Symbol 38 MovieClip "player" in Frame 93
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 94
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (95);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 94
onClipEvent (enterFrame) {
this.gotoAndStop(45);
}
Instance of Symbol 38 MovieClip "player" in Frame 95
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Instance of Symbol 731 MovieClip in Frame 96
onClipEvent (load) {
_root.time.gotoAndPlay(1);
}
Frame 97
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (98);
}
};
Instance of Symbol 194 MovieClip in Frame 97
onClipEvent (enterFrame) {
this.gotoAndStop(6);
}
Instance of Symbol 719 MovieClip "lvl1" in Frame 97
onClipEvent (enterFrame) {
this.gotoAndStop(46);
}
Instance of Symbol 728 MovieClip "exit1" in Frame 98
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 38 MovieClip "player" in Frame 98
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Instance of Symbol 719 MovieClip "lvl1" in Frame 98
onClipEvent (load) {
this.gotoAndStop(46);
}
onClipEvent (enterFrame) {
this._x = this._x - 6;
_root.exit1._x = _root.exit1._x - 6;
if (Key.isDown(39)) {
this._x = this._x - 3;
_root.exit1._x = _root.exit1._x - 3;
}
if (Key.isDown(37)) {
this._x = this._x + 3;
_root.exit1._x = _root.exit1._x + 3;
}
}
Frame 99
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (100);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 99
onClipEvent (load) {
this.gotoAndStop(47);
}
Instance of Symbol 728 MovieClip "exit2" in Frame 100
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 38 MovieClip "player" in Frame 100
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Instance of Symbol 719 MovieClip "lvl1" in Frame 100
onClipEvent (load) {
this.gotoAndStop(47);
}
onClipEvent (enterFrame) {
this._x = this._x - 6;
_root.exit2._x = _root.exit2._x - 6;
if (Key.isDown(39)) {
this._x = this._x - 3;
_root.exit2._x = _root.exit2._x - 3;
}
if (Key.isDown(37)) {
this._x = this._x + 3;
_root.exit2._x = _root.exit2._x + 3;
}
}
Frame 101
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (102);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 101
onClipEvent (load) {
this.gotoAndStop(48);
}
Instance of Symbol 728 MovieClip "exit2" in Frame 102
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 38 MovieClip "player" in Frame 102
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Instance of Symbol 719 MovieClip "lvl1" in Frame 102
onClipEvent (load) {
this.gotoAndStop(48);
}
onClipEvent (enterFrame) {
this._x = this._x - 6;
_root.exit2._x = _root.exit2._x - 6;
if (Key.isDown(39)) {
this._x = this._x - 3;
_root.exit2._x = _root.exit2._x - 3;
}
if (Key.isDown(37)) {
this._x = this._x + 3;
_root.exit2._x = _root.exit2._x + 3;
}
}
Frame 103
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (104);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 103
onClipEvent (load) {
this.gotoAndStop(49);
}
Instance of Symbol 728 MovieClip "exit2" in Frame 104
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 719 MovieClip "lvl1" in Frame 104
onClipEvent (load) {
this.gotoAndStop(49);
}
onClipEvent (enterFrame) {
this._x = this._x - 5;
_root.exit2._x = _root.exit2._x - 5;
if (Key.isDown(39)) {
this._x = this._x - 3;
_root.exit2._x = _root.exit2._x - 3;
}
if (Key.isDown(37)) {
this._x = this._x + 2;
_root.exit2._x = _root.exit2._x + 2;
}
}
Frame 105
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (106);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 105
onClipEvent (load) {
this.gotoAndStop(50);
}
Instance of Symbol 38 MovieClip "player" in Frame 106
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 5;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 8;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Instance of Symbol 731 MovieClip in Frame 107
onClipEvent (load) {
_root.timer.gotoAndPlay(1);
}
Instance of Symbol 763 MovieClip "credits" in Frame 109
onClipEvent (enterFrame) {
_y = (_y - 2);
if (Key.isDown(38)) {
_y = (_y - 3);
}
}
Instance of Symbol 765 MovieClip in Frame 109
onClipEvent (enterFrame) {
if (this.hitTest(_root.credits)) {
_root.nextFrame();
}
}
Frame 111
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (112);
}
};
Instance of Symbol 194 MovieClip in Frame 111
onClipEvent (enterFrame) {
this.gotoAndStop(7);
}
Instance of Symbol 728 MovieClip in Frame 111
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 719 MovieClip "lvl1" in Frame 111
onClipEvent (enterFrame) {
this.gotoAndStop(51);
}
Instance of Symbol 38 MovieClip "player" in Frame 112
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 7;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 10;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 113
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (114);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 113
onClipEvent (enterFrame) {
this.gotoAndStop(52);
}
Instance of Symbol 728 MovieClip in Frame 114
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(110);
}
}
Instance of Symbol 38 MovieClip "player" in Frame 114
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 7;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 10;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 115
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (116);
}
};
Instance of Symbol 194 MovieClip in Frame 115
onClipEvent (enterFrame) {
this.gotoAndStop(8);
}
Instance of Symbol 728 MovieClip in Frame 115
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 201 MovieClip "platform" in Frame 115
onClipEvent (enterFrame) {
gotoAndStop (2);
}
Instance of Symbol 719 MovieClip "lvl1" in Frame 115
onClipEvent (enterFrame) {
this.gotoAndStop(53);
}
Instance of Symbol 38 MovieClip "player" in Frame 116
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 7;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 10;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 117
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (118);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 117
onClipEvent (enterFrame) {
this.gotoAndStop(54);
}
Instance of Symbol 728 MovieClip in Frame 118
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(110);
}
}
Instance of Symbol 38 MovieClip "player" in Frame 118
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 7;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 10;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 119
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (120);
}
};
Instance of Symbol 194 MovieClip in Frame 119
onClipEvent (enterFrame) {
this.gotoAndStop(9);
}
Instance of Symbol 728 MovieClip in Frame 119
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 719 MovieClip "lvl1" in Frame 119
onClipEvent (enterFrame) {
this.gotoAndStop(55);
}
Instance of Symbol 38 MovieClip "player" in Frame 120
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 7;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 10;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 121
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (122);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 121
onClipEvent (enterFrame) {
this.gotoAndStop(56);
}
Instance of Symbol 728 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(110);
}
}
Instance of Symbol 38 MovieClip "player" in Frame 122
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 7;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 10;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 123
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (124);
}
};
Instance of Symbol 194 MovieClip in Frame 123
onClipEvent (enterFrame) {
this.gotoAndStop(10);
}
Instance of Symbol 728 MovieClip in Frame 123
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 719 MovieClip "lvl1" in Frame 123
onClipEvent (enterFrame) {
this.gotoAndStop(57);
}
Instance of Symbol 38 MovieClip "player" in Frame 124
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 7;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 10;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 125
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (126);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 125
onClipEvent (enterFrame) {
this.gotoAndStop(58);
}
Instance of Symbol 728 MovieClip in Frame 126
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(110);
}
}
Instance of Symbol 38 MovieClip "player" in Frame 126
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 7;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 10;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 127
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (128);
}
};
Instance of Symbol 194 MovieClip in Frame 127
onClipEvent (enterFrame) {
this.gotoAndStop(11);
}
Instance of Symbol 728 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 719 MovieClip "lvl1" in Frame 127
onClipEvent (enterFrame) {
this.gotoAndStop(59);
}
Instance of Symbol 38 MovieClip "player" in Frame 128
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 7;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 10;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Frame 129
onEnterFrame = function () {
if (Key.isDown(32)) {
gotoAndStop (130);
}
};
Instance of Symbol 719 MovieClip "lvl1" in Frame 129
onClipEvent (enterFrame) {
this.gotoAndStop(60);
}
Instance of Symbol 728 MovieClip "exit1" in Frame 130
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = 4;
_root.player._y = 166;
}
}
Instance of Symbol 38 MovieClip "player" in Frame 130
onClipEvent (load) {
gravity = 5;
maxJump = 4;
spd = 7;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x + spd;
if (Key.isDown(39)) {
this.gotoAndStop(4);
spd = 10;
} else {
spd = 5;
}
if (air == true) {
_y = (_y + gravity);
}
}
onClipEvent (enterFrame) {
if (air == true) {
this._y = this._y + gravity;
}
if (_root.platform.hitTest(_x, _y, true)) {
air = false;
} else {
air = true;
}
if (air == false) {
jump = false;
}
if (air == false) {
jump = true;
jumpcount = 0;
jumpSpeed = 20;
}
if (Key.isDown(38)) {
jumpcount = jumpcount + 1;
}
if (Key.isDown(40)) {
maxJump = 2;
}
if (Key.isDown(38) && (jump == true)) {
_y = (_y - jumpSpeed);
this.gotoAndStop(3);
}
if ((jumpcount > maxJump) && (jumpSpeed > -2)) {
jumpSpeed = jumpSpeed - 2;
}
if (_root.lvl1.hitTest(_x + 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x - 10, _y - 18, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y - 36, true)) {
_root.prevFrame();
}
if (_root.lvl1.hitTest(_x, _y, true)) {
_root.prevFrame();
}
}
onClipEvent (keyUp) {
this.gotoAndStop(2);
spd = 5;
}
Symbol 11 Button
on (release) {
_root.play();
}
Symbol 12 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
bar._xscale = PercentLoaded;
} else {
_root.intro.gotoAndStop(2);
}
Symbol 12 MovieClip Frame 2
gotoAndPlay (1);
Symbol 16 Button
on (release) {
nextFrame();
}
Symbol 38 MovieClip Frame 1
stop();
Symbol 43 MovieClip Frame 13
gotoAndPlay (8);
Symbol 49 MovieClip Frame 12
gotoAndPlay (6);
Symbol 94 MovieClip Frame 44
stop();
Symbol 163 MovieClip Frame 72
stop();
Symbol 170 Button
on (release) {
_root.intro.prevFrame();
}
Symbol 179 MovieClip Frame 839
stop();
Symbol 180 MovieClip Frame 1
stop();
Symbol 180 MovieClip Frame 2
stop();
Symbol 180 MovieClip Frame 3
stop();
onEnterFrame = function () {
if (Key.isDown(32)) {
_root.gotoAndStop(2);
}
};
Instance of Symbol 94 MovieClip in Symbol 180 MovieClip Frame 3
on (release) {
_root.gotoAndStop(2);
}
Instance of Symbol 163 MovieClip in Symbol 180 MovieClip Frame 3
on (release) {
_root.intro.nextFrame();
}
Symbol 183 MovieClip Frame 1
stop();
Symbol 194 MovieClip Frame 1
stop();
Symbol 201 MovieClip Frame 1
stop();
Instance of Symbol 386 MovieClip in Symbol 401 MovieClip Frame 1
onClipEvent (enterFrame) {
this._rotation = this._rotation + 22;
}
Symbol 491 MovieClip Frame 14
stop();
Symbol 681 MovieClip Frame 1
stop();
Symbol 719 MovieClip Frame 1
stop();
Symbol 719 MovieClip Frame 2
stop();
Symbol 719 MovieClip Frame 3
stop();
Symbol 719 MovieClip Frame 4
stop();
Symbol 719 MovieClip Frame 5
stop();
Symbol 719 MovieClip Frame 6
stop();
Symbol 719 MovieClip Frame 7
stop();
Symbol 719 MovieClip Frame 8
stop();
Symbol 719 MovieClip Frame 9
stop();
Symbol 719 MovieClip Frame 10
stop();
Symbol 719 MovieClip Frame 11
stop();
Symbol 719 MovieClip Frame 12
stop();
Symbol 719 MovieClip Frame 13
stop();
Symbol 719 MovieClip Frame 14
stop();
Symbol 719 MovieClip Frame 15
stop();
Symbol 719 MovieClip Frame 16
stop();
Symbol 719 MovieClip Frame 17
stop();
Symbol 719 MovieClip Frame 18
stop();
Symbol 719 MovieClip Frame 19
stop();
Symbol 719 MovieClip Frame 20
stop();
Symbol 719 MovieClip Frame 21
stop();
Symbol 719 MovieClip Frame 22
stop();
Symbol 719 MovieClip Frame 23
stop();
Symbol 719 MovieClip Frame 24
stop();
Symbol 719 MovieClip Frame 25
stop();
Symbol 719 MovieClip Frame 26
stop();
Symbol 719 MovieClip Frame 27
stop();
Symbol 719 MovieClip Frame 28
stop();
Symbol 719 MovieClip Frame 29
stop();
Symbol 719 MovieClip Frame 30
stop();
Symbol 719 MovieClip Frame 31
stop();
Symbol 719 MovieClip Frame 32
stop();
Symbol 719 MovieClip Frame 33
stop();
Symbol 719 MovieClip Frame 34
stop();
Symbol 719 MovieClip Frame 35
stop();
Symbol 719 MovieClip Frame 36
stop();
Symbol 719 MovieClip Frame 37
stop();
Symbol 719 MovieClip Frame 38
stop();
Symbol 719 MovieClip Frame 39
stop();
Symbol 719 MovieClip Frame 40
stop();
Symbol 719 MovieClip Frame 41
stop();
Symbol 719 MovieClip Frame 42
stop();
Symbol 719 MovieClip Frame 43
stop();
Symbol 719 MovieClip Frame 44
stop();
Symbol 719 MovieClip Frame 45
stop();
Symbol 719 MovieClip Frame 46
stop();
Symbol 719 MovieClip Frame 47
stop();
Symbol 719 MovieClip Frame 48
stop();
Symbol 719 MovieClip Frame 49
stop();
Symbol 719 MovieClip Frame 50
stop();
Symbol 719 MovieClip Frame 51
stop();
Symbol 719 MovieClip Frame 52
stop();
Symbol 719 MovieClip Frame 53
stop();
Symbol 719 MovieClip Frame 54
stop();
Symbol 719 MovieClip Frame 55
stop();
Symbol 719 MovieClip Frame 56
stop();
Instance of Symbol 681 MovieClip in Symbol 719 MovieClip Frame 56
onClipEvent (enterFrame) {
this.gotoAndStop(2);
}
Instance of Symbol 681 MovieClip in Symbol 719 MovieClip Frame 56
onClipEvent (enterFrame) {
this.gotoAndStop(2);
}
Instance of Symbol 681 MovieClip in Symbol 719 MovieClip Frame 56
onClipEvent (enterFrame) {
this.gotoAndStop(2);
}
Symbol 719 MovieClip Frame 57
stop();
Symbol 719 MovieClip Frame 58
stop();
Symbol 719 MovieClip Frame 59
stop();
Symbol 719 MovieClip Frame 60
stop();
Symbol 726 MovieClip Frame 1
stop();
Symbol 731 MovieClip Frame 45
_root.nextFrame();
Instance of Symbol 744 MovieClip in Symbol 759 MovieClip Frame 1
onClipEvent (enterFrame) {
this._rotation = this._rotation + 3;
}
Symbol 759 MovieClip Frame 150
_root.nextFrame();
Symbol 773 Button
on (release) {
gotoAndStop (1);
}
Symbol 775 Button
on (release) {
gotoAndStop (1);
}