Instance of Symbol 24 MovieClip in Frame 1 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 2 (8 B)
stop();
Instance of Symbol 26 MovieClip in Frame 2 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 2 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 2 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 2 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 2 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 2 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 2 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 2 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 2 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 34 MovieClip in Frame 2 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 2 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 2 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 2 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 2 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 2 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 2 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 41 MovieClip in Frame 2 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 2 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 44 MovieClip in Frame 2 (89 B)
onClipEvent (enterFrame) {
if (_parent.character.hitTest(this)) {
_parent.play();
}
}
Instance of Symbol 64 MovieClip "character" in Frame 2 (1.92 KiB) ●
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 10);
_rotation = 0;
this.gotoAndStop(2);
}
if (Key.isDown(40)) {
_y = (_y + 10);
_rotation = 0;
this.gotoAndStop(1);
}
if (Key.isDown(39)) {
_x = (_x + 10);
_rotation = 0;
this.gotoAndStop(4);
}
if (Key.isDown(37)) {
_x = (_x - 10);
_rotation = 0;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32) && (_root.character.hitTest(_root.car))) {
speed = speed + 1;
}
if (Key.isDown(40) && (_root.character.hitTest(_root.car))) {
speed = speed - 1;
}
if (Math.abs(speed) > 25) {
speed = speed * 0.6;
}
if (Key.isDown(37) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation - 15);
}
if (Key.isDown(39) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation + 15);
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.move.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.car)) {
_root.character._visible = false;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_root.character._visible = true;
}
}
onClipEvent (enterFrame) {
if ((visible = true)) {
speed = 0;
_rotation = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (_visible == true)) {
_y = (_y - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40) && (_visible == true)) {
_y = (_y + 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37) && (_visible == true)) {
_x = (_x - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_visible == true)) {
_x = (_x + 5);
}
}
onClipEvent (enterFrame) {
if (_root.character._visible == false) {
_y = _root.car._y;
_x = _root.car._x;
}
}
Frame 3 (8 B)
stop();
Instance of Symbol 30 MovieClip in Frame 3 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 3 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 3 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 3 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 3 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 3 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 3 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 3 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 3 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 3 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 3 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 3 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 3 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 69 MovieClip in Frame 3 (97 B)
onClipEvent (enterFrame) {
if (_parent.character.hitTest(this)) {
_parent.gotoAndPlay(3);
}
}
Instance of Symbol 77 MovieClip "character" in Frame 3 (1.92 KiB) ●
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 10);
_rotation = 0;
this.gotoAndStop(2);
}
if (Key.isDown(40)) {
_y = (_y + 10);
_rotation = 0;
this.gotoAndStop(1);
}
if (Key.isDown(39)) {
_x = (_x + 10);
_rotation = 0;
this.gotoAndStop(4);
}
if (Key.isDown(37)) {
_x = (_x - 10);
_rotation = 0;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32) && (_root.character.hitTest(_root.car))) {
speed = speed + 1;
}
if (Key.isDown(40) && (_root.character.hitTest(_root.car))) {
speed = speed - 1;
}
if (Math.abs(speed) > 25) {
speed = speed * 0.6;
}
if (Key.isDown(37) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation - 15);
}
if (Key.isDown(39) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation + 15);
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.move.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.car)) {
_root.character._visible = false;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_root.character._visible = true;
}
}
onClipEvent (enterFrame) {
if ((visible = true)) {
speed = 0;
_rotation = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (_visible == true)) {
_y = (_y - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40) && (_visible == true)) {
_y = (_y + 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37) && (_visible == true)) {
_x = (_x - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_visible == true)) {
_x = (_x + 5);
}
}
onClipEvent (enterFrame) {
if (_root.character._visible == false) {
_y = _root.car._y;
_x = _root.car._x;
}
}
Frame 75 (8 B)
stop();
Instance of Symbol 30 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 75 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 44 MovieClip in Frame 75 (97 B)
onClipEvent (enterFrame) {
if (_parent.character.hitTest(this)) {
_parent.gotoAndStop(2);
}
}
Instance of Symbol 129 MovieClip in Frame 75 (89 B)
onClipEvent (enterFrame) {
if (_parent.character.hitTest(this)) {
_parent.play();
}
}
Instance of Symbol 130 MovieClip "character" in Frame 75 (1.92 KiB) ●
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 10);
_rotation = 0;
this.gotoAndStop(2);
}
if (Key.isDown(40)) {
_y = (_y + 10);
_rotation = 0;
this.gotoAndStop(1);
}
if (Key.isDown(39)) {
_x = (_x + 10);
_rotation = 0;
this.gotoAndStop(4);
}
if (Key.isDown(37)) {
_x = (_x - 10);
_rotation = 0;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32) && (_root.character.hitTest(_root.car))) {
speed = speed + 1;
}
if (Key.isDown(40) && (_root.character.hitTest(_root.car))) {
speed = speed - 1;
}
if (Math.abs(speed) > 25) {
speed = speed * 0.6;
}
if (Key.isDown(37) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation - 15);
}
if (Key.isDown(39) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation + 15);
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.move.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.car)) {
_root.character._visible = false;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_root.character._visible = true;
}
}
onClipEvent (enterFrame) {
if ((visible = true)) {
speed = 0;
_rotation = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (_visible == true)) {
_y = (_y - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40) && (_visible == true)) {
_y = (_y + 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37) && (_visible == true)) {
_x = (_x - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_visible == true)) {
_x = (_x + 5);
}
}
onClipEvent (enterFrame) {
if (_root.character._visible == false) {
_y = _root.car._y;
_x = _root.car._x;
}
}
Frame 76 (8 B)
stop();
Instance of Symbol 26 MovieClip in Frame 76 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 76 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 76 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 76 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 76 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 76 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 76 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 76 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 76 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 76 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 76 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 76 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 76 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 34 MovieClip in Frame 76 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 76 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 76 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 76 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 76 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 76 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 76 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 41 MovieClip in Frame 76 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 76 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 76 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 134 MovieClip in Frame 76 (89 B)
onClipEvent (enterFrame) {
if (_parent.character.hitTest(this)) {
_parent.play();
}
}
Instance of Symbol 64 MovieClip "character" in Frame 76 (1.92 KiB) ●
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 10);
_rotation = 0;
this.gotoAndStop(2);
}
if (Key.isDown(40)) {
_y = (_y + 10);
_rotation = 0;
this.gotoAndStop(1);
}
if (Key.isDown(39)) {
_x = (_x + 10);
_rotation = 0;
this.gotoAndStop(4);
}
if (Key.isDown(37)) {
_x = (_x - 10);
_rotation = 0;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32) && (_root.character.hitTest(_root.car))) {
speed = speed + 1;
}
if (Key.isDown(40) && (_root.character.hitTest(_root.car))) {
speed = speed - 1;
}
if (Math.abs(speed) > 25) {
speed = speed * 0.6;
}
if (Key.isDown(37) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation - 15);
}
if (Key.isDown(39) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation + 15);
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.move.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.car)) {
_root.character._visible = false;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_root.character._visible = true;
}
}
onClipEvent (enterFrame) {
if ((visible = true)) {
speed = 0;
_rotation = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (_visible == true)) {
_y = (_y - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40) && (_visible == true)) {
_y = (_y + 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37) && (_visible == true)) {
_x = (_x - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_visible == true)) {
_x = (_x + 5);
}
}
onClipEvent (enterFrame) {
if (_root.character._visible == false) {
_y = _root.car._y;
_x = _root.car._x;
}
}
Frame 130 (8 B)
stop();
Instance of Symbol 24 MovieClip in Frame 130 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 131 (8 B)
stop();
Instance of Symbol 26 MovieClip in Frame 131 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 131 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 131 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 131 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 131 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 131 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 131 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 131 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 131 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 131 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 131 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 131 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 131 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 131 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 131 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 131 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 34 MovieClip in Frame 131 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 131 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 131 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 131 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 131 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 131 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 34 MovieClip in Frame 131 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 131 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 131 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 131 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 131 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 164 MovieClip in Frame 131 (89 B)
onClipEvent (enterFrame) {
if (_parent.character.hitTest(this)) {
_parent.play();
}
}
Instance of Symbol 166 MovieClip "character" in Frame 131 (1.92 KiB) ●
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 10);
_rotation = 0;
this.gotoAndStop(2);
}
if (Key.isDown(40)) {
_y = (_y + 10);
_rotation = 0;
this.gotoAndStop(1);
}
if (Key.isDown(39)) {
_x = (_x + 10);
_rotation = 0;
this.gotoAndStop(4);
}
if (Key.isDown(37)) {
_x = (_x - 10);
_rotation = 0;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32) && (_root.character.hitTest(_root.car))) {
speed = speed + 1;
}
if (Key.isDown(40) && (_root.character.hitTest(_root.car))) {
speed = speed - 1;
}
if (Math.abs(speed) > 25) {
speed = speed * 0.6;
}
if (Key.isDown(37) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation - 15);
}
if (Key.isDown(39) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation + 15);
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.move.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.car)) {
_root.character._visible = false;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_root.character._visible = true;
}
}
onClipEvent (enterFrame) {
if ((visible = true)) {
speed = 0;
_rotation = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (_visible == true)) {
_y = (_y - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40) && (_visible == true)) {
_y = (_y + 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37) && (_visible == true)) {
_x = (_x - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_visible == true)) {
_x = (_x + 5);
}
}
onClipEvent (enterFrame) {
if (_root.character._visible == false) {
_y = _root.car._y;
_x = _root.car._x;
}
}
Frame 132 (8 B)
stop();
Instance of Symbol 30 MovieClip in Frame 132 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 132 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 132 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 132 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 132 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 132 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 132 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 132 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 132 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 132 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 132 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 132 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 132 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 132 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 132 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 132 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 132 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 132 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 132 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 132 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 132 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 132 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 132 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 177 MovieClip in Frame 132 (89 B)
onClipEvent (enterFrame) {
if (_parent.character.hitTest(this)) {
_parent.play();
}
}
Instance of Symbol 166 MovieClip "character" in Frame 132 (1.92 KiB) ●
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 10);
_rotation = 0;
this.gotoAndStop(2);
}
if (Key.isDown(40)) {
_y = (_y + 10);
_rotation = 0;
this.gotoAndStop(1);
}
if (Key.isDown(39)) {
_x = (_x + 10);
_rotation = 0;
this.gotoAndStop(4);
}
if (Key.isDown(37)) {
_x = (_x - 10);
_rotation = 0;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32) && (_root.character.hitTest(_root.car))) {
speed = speed + 1;
}
if (Key.isDown(40) && (_root.character.hitTest(_root.car))) {
speed = speed - 1;
}
if (Math.abs(speed) > 25) {
speed = speed * 0.6;
}
if (Key.isDown(37) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation - 15);
}
if (Key.isDown(39) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation + 15);
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.move.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.car)) {
_root.character._visible = false;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_root.character._visible = true;
}
}
onClipEvent (enterFrame) {
if ((visible = true)) {
speed = 0;
_rotation = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (_visible == true)) {
_y = (_y - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40) && (_visible == true)) {
_y = (_y + 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37) && (_visible == true)) {
_x = (_x - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_visible == true)) {
_x = (_x + 5);
}
}
onClipEvent (enterFrame) {
if (_root.character._visible == false) {
_y = _root.car._y;
_x = _root.car._x;
}
}
Frame 133 (8 B)
stop();
Instance of Symbol 30 MovieClip in Frame 133 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 133 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 181 MovieClip in Frame 133 (89 B)
onClipEvent (enterFrame) {
if (_parent.character.hitTest(this)) {
_parent.play();
}
}
Instance of Symbol 166 MovieClip "character" in Frame 133 (1.92 KiB) ●
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 10);
_rotation = 0;
this.gotoAndStop(2);
}
if (Key.isDown(40)) {
_y = (_y + 10);
_rotation = 0;
this.gotoAndStop(1);
}
if (Key.isDown(39)) {
_x = (_x + 10);
_rotation = 0;
this.gotoAndStop(4);
}
if (Key.isDown(37)) {
_x = (_x - 10);
_rotation = 0;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32) && (_root.character.hitTest(_root.car))) {
speed = speed + 1;
}
if (Key.isDown(40) && (_root.character.hitTest(_root.car))) {
speed = speed - 1;
}
if (Math.abs(speed) > 25) {
speed = speed * 0.6;
}
if (Key.isDown(37) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation - 15);
}
if (Key.isDown(39) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation + 15);
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.move.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.car)) {
_root.character._visible = false;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_root.character._visible = true;
}
}
onClipEvent (enterFrame) {
if ((visible = true)) {
speed = 0;
_rotation = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (_visible == true)) {
_y = (_y - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40) && (_visible == true)) {
_y = (_y + 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37) && (_visible == true)) {
_x = (_x - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_visible == true)) {
_x = (_x + 5);
}
}
onClipEvent (enterFrame) {
if (_root.character._visible == false) {
_y = _root.car._y;
_x = _root.car._x;
}
}
Instance of Symbol 194 MovieClip in Frame 133 (125 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
this.gotoAndPlay(2);
} else {
this.gotoAndPlay(1);
}
}
Instance of Symbol 24 MovieClip in Frame 133 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 134 (38 B)
stop();
stop();
stop();
stop();
Frame 135 (38 B)
stop();
stop();
stop();
stop();
Frame 136 (18 B)
stop();
stop();
Frame 137 (8 B)
stop();
Frame 138 (8 B)
stop();
Frame 139 (8 B)
stop();
Frame 140 (18 B)
stop();
stop();
Instance of Symbol 30 MovieClip in Frame 140 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 140 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 140 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 140 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 140 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 140 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 140 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 140 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 166 MovieClip "character" in Frame 140 (1.92 KiB) ●
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 10);
_rotation = 0;
this.gotoAndStop(2);
}
if (Key.isDown(40)) {
_y = (_y + 10);
_rotation = 0;
this.gotoAndStop(1);
}
if (Key.isDown(39)) {
_x = (_x + 10);
_rotation = 0;
this.gotoAndStop(4);
}
if (Key.isDown(37)) {
_x = (_x - 10);
_rotation = 0;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32) && (_root.character.hitTest(_root.car))) {
speed = speed + 1;
}
if (Key.isDown(40) && (_root.character.hitTest(_root.car))) {
speed = speed - 1;
}
if (Math.abs(speed) > 25) {
speed = speed * 0.6;
}
if (Key.isDown(37) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation - 15);
}
if (Key.isDown(39) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation + 15);
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.move.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.car)) {
_root.character._visible = false;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_root.character._visible = true;
}
}
onClipEvent (enterFrame) {
if ((visible = true)) {
speed = 0;
_rotation = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (_visible == true)) {
_y = (_y - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40) && (_visible == true)) {
_y = (_y + 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37) && (_visible == true)) {
_x = (_x - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_visible == true)) {
_x = (_x + 5);
}
}
onClipEvent (enterFrame) {
if (_root.character._visible == false) {
_y = _root.car._y;
_x = _root.car._x;
}
}
Instance of Symbol 194 MovieClip in Frame 140 (125 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
this.gotoAndPlay(2);
} else {
this.gotoAndPlay(1);
}
}
Frame 141 (8 B)
stop();
Instance of Symbol 30 MovieClip in Frame 141 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 141 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 141 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 141 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 141 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 141 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 141 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 141 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 141 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 141 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 141 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 141 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 141 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 141 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 214 MovieClip in Frame 141 (89 B)
onClipEvent (enterFrame) {
if (_parent.character.hitTest(this)) {
_parent.play();
}
}
Instance of Symbol 166 MovieClip "character" in Frame 141 (1.92 KiB) ●
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 10);
_rotation = 0;
this.gotoAndStop(2);
}
if (Key.isDown(40)) {
_y = (_y + 10);
_rotation = 0;
this.gotoAndStop(1);
}
if (Key.isDown(39)) {
_x = (_x + 10);
_rotation = 0;
this.gotoAndStop(4);
}
if (Key.isDown(37)) {
_x = (_x - 10);
_rotation = 0;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32) && (_root.character.hitTest(_root.car))) {
speed = speed + 1;
}
if (Key.isDown(40) && (_root.character.hitTest(_root.car))) {
speed = speed - 1;
}
if (Math.abs(speed) > 25) {
speed = speed * 0.6;
}
if (Key.isDown(37) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation - 15);
}
if (Key.isDown(39) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation + 15);
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.move.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.car)) {
_root.character._visible = false;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_root.character._visible = true;
}
}
onClipEvent (enterFrame) {
if ((visible = true)) {
speed = 0;
_rotation = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (_visible == true)) {
_y = (_y - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40) && (_visible == true)) {
_y = (_y + 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37) && (_visible == true)) {
_x = (_x - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_visible == true)) {
_x = (_x + 5);
}
}
onClipEvent (enterFrame) {
if (_root.character._visible == false) {
_y = _root.car._y;
_x = _root.car._x;
}
}
Frame 142 (8 B)
stop();
Instance of Symbol 30 MovieClip in Frame 142 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 142 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 142 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 142 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 142 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 142 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 142 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 142 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 142 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 142 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 229 MovieClip in Frame 142 (89 B)
onClipEvent (enterFrame) {
if (_parent.character.hitTest(this)) {
_parent.play();
}
}
Instance of Symbol 166 MovieClip "character" in Frame 142 (1.92 KiB) ●
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 10);
_rotation = 0;
this.gotoAndStop(2);
}
if (Key.isDown(40)) {
_y = (_y + 10);
_rotation = 0;
this.gotoAndStop(1);
}
if (Key.isDown(39)) {
_x = (_x + 10);
_rotation = 0;
this.gotoAndStop(4);
}
if (Key.isDown(37)) {
_x = (_x - 10);
_rotation = 0;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32) && (_root.character.hitTest(_root.car))) {
speed = speed + 1;
}
if (Key.isDown(40) && (_root.character.hitTest(_root.car))) {
speed = speed - 1;
}
if (Math.abs(speed) > 25) {
speed = speed * 0.6;
}
if (Key.isDown(37) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation - 15);
}
if (Key.isDown(39) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation + 15);
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.move.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.car)) {
_root.character._visible = false;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_root.character._visible = true;
}
}
onClipEvent (enterFrame) {
if ((visible = true)) {
speed = 0;
_rotation = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (_visible == true)) {
_y = (_y - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40) && (_visible == true)) {
_y = (_y + 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37) && (_visible == true)) {
_x = (_x - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_visible == true)) {
_x = (_x + 5);
}
}
onClipEvent (enterFrame) {
if (_root.character._visible == false) {
_y = _root.car._y;
_x = _root.car._x;
}
}
Frame 186 (8 B)
stop();
Instance of Symbol 24 MovieClip in Frame 186 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 279 (8 B)
stop();
Instance of Symbol 24 MovieClip in Frame 279 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 316 MovieClip in Frame 327 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 369 (8 B)
stop();
Instance of Symbol 24 MovieClip in Frame 369 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 316 MovieClip in Frame 371 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 387 (8 B)
stop();
Instance of Symbol 24 MovieClip in Frame 387 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 475 (8 B)
stop();
Instance of Symbol 24 MovieClip in Frame 475 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 30 MovieClip in Frame 491 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 491 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 491 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 491 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 491 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 491 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 491 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 491 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 491 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 491 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 428 MovieClip in Frame 491 (89 B)
onClipEvent (enterFrame) {
if (_parent.character.hitTest(this)) {
_parent.play();
}
}
Instance of Symbol 166 MovieClip "character" in Frame 491 (1.92 KiB) ●
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 10);
_rotation = 0;
this.gotoAndStop(2);
}
if (Key.isDown(40)) {
_y = (_y + 10);
_rotation = 0;
this.gotoAndStop(1);
}
if (Key.isDown(39)) {
_x = (_x + 10);
_rotation = 0;
this.gotoAndStop(4);
}
if (Key.isDown(37)) {
_x = (_x - 10);
_rotation = 0;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32) && (_root.character.hitTest(_root.car))) {
speed = speed + 1;
}
if (Key.isDown(40) && (_root.character.hitTest(_root.car))) {
speed = speed - 1;
}
if (Math.abs(speed) > 25) {
speed = speed * 0.6;
}
if (Key.isDown(37) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation - 15);
}
if (Key.isDown(39) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation + 15);
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.move.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.car)) {
_root.character._visible = false;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_root.character._visible = true;
}
}
onClipEvent (enterFrame) {
if ((visible = true)) {
speed = 0;
_rotation = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (_visible == true)) {
_y = (_y - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40) && (_visible == true)) {
_y = (_y + 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37) && (_visible == true)) {
_x = (_x - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_visible == true)) {
_x = (_x + 5);
}
}
onClipEvent (enterFrame) {
if (_root.character._visible == false) {
_y = _root.car._y;
_x = _root.car._x;
}
}
Frame 492 (8 B)
stop();
Instance of Symbol 30 MovieClip in Frame 492 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 492 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 492 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 492 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 492 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 492 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 492 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 492 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 492 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 492 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 24 MovieClip in Frame 492 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 428 MovieClip in Frame 492 (89 B)
onClipEvent (enterFrame) {
if (_parent.character.hitTest(this)) {
_parent.play();
}
}
Instance of Symbol 166 MovieClip "character" in Frame 492 (1.92 KiB) ●
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 10);
_rotation = 0;
this.gotoAndStop(2);
}
if (Key.isDown(40)) {
_y = (_y + 10);
_rotation = 0;
this.gotoAndStop(1);
}
if (Key.isDown(39)) {
_x = (_x + 10);
_rotation = 0;
this.gotoAndStop(4);
}
if (Key.isDown(37)) {
_x = (_x - 10);
_rotation = 0;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32) && (_root.character.hitTest(_root.car))) {
speed = speed + 1;
}
if (Key.isDown(40) && (_root.character.hitTest(_root.car))) {
speed = speed - 1;
}
if (Math.abs(speed) > 25) {
speed = speed * 0.6;
}
if (Key.isDown(37) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation - 15);
}
if (Key.isDown(39) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation + 15);
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.move.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.car)) {
_root.character._visible = false;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_root.character._visible = true;
}
}
onClipEvent (enterFrame) {
if ((visible = true)) {
speed = 0;
_rotation = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (_visible == true)) {
_y = (_y - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40) && (_visible == true)) {
_y = (_y + 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37) && (_visible == true)) {
_x = (_x - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_visible == true)) {
_x = (_x + 5);
}
}
onClipEvent (enterFrame) {
if (_root.character._visible == false) {
_y = _root.car._y;
_x = _root.car._x;
}
}
Frame 603 (8 B)
stop();
Instance of Symbol 30 MovieClip in Frame 603 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 603 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 603 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 603 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 603 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 603 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 603 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 603 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 603 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 603 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 603 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 603 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 603 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 603 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 603 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 603 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 603 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 466 MovieClip in Frame 603 (89 B)
onClipEvent (enterFrame) {
if (_parent.character.hitTest(this)) {
_parent.play();
}
}
Instance of Symbol 166 MovieClip "character" in Frame 603 (1.92 KiB) ●
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 10);
_rotation = 0;
this.gotoAndStop(2);
}
if (Key.isDown(40)) {
_y = (_y + 10);
_rotation = 0;
this.gotoAndStop(1);
}
if (Key.isDown(39)) {
_x = (_x + 10);
_rotation = 0;
this.gotoAndStop(4);
}
if (Key.isDown(37)) {
_x = (_x - 10);
_rotation = 0;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32) && (_root.character.hitTest(_root.car))) {
speed = speed + 1;
}
if (Key.isDown(40) && (_root.character.hitTest(_root.car))) {
speed = speed - 1;
}
if (Math.abs(speed) > 25) {
speed = speed * 0.6;
}
if (Key.isDown(37) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation - 15);
}
if (Key.isDown(39) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation + 15);
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.move.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.car)) {
_root.character._visible = false;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_root.character._visible = true;
}
}
onClipEvent (enterFrame) {
if ((visible = true)) {
speed = 0;
_rotation = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (_visible == true)) {
_y = (_y - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40) && (_visible == true)) {
_y = (_y + 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37) && (_visible == true)) {
_x = (_x - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_visible == true)) {
_x = (_x + 5);
}
}
onClipEvent (enterFrame) {
if (_root.character._visible == false) {
_y = _root.car._y;
_x = _root.car._x;
}
}
Frame 716 (8 B)
stop();
Instance of Symbol 24 MovieClip in Frame 716 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 542 MovieClip in Frame 777 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 872 (8 B)
stop();
Instance of Symbol 24 MovieClip in Frame 872 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 616 MovieClip in Frame 887 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 917 (8 B)
stop();
Instance of Symbol 24 MovieClip in Frame 917 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 665 MovieClip in Frame 1008 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 1053 (8 B)
stop();
Instance of Symbol 24 MovieClip in Frame 1053 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 1128 (8 B)
stop();
Instance of Symbol 24 MovieClip in Frame 1128 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 30 MovieClip in Frame 1286 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 1286 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 1286 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 1286 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 1286 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 1286 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 1286 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 1286 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 1286 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 1286 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 24 MovieClip in Frame 1286 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 32 MovieClip in Frame 1286 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 780 MovieClip in Frame 1286 (89 B)
onClipEvent (enterFrame) {
if (_parent.character.hitTest(this)) {
_parent.play();
}
}
Instance of Symbol 166 MovieClip "character" in Frame 1286 (1.92 KiB) ●
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 10);
_rotation = 0;
this.gotoAndStop(2);
}
if (Key.isDown(40)) {
_y = (_y + 10);
_rotation = 0;
this.gotoAndStop(1);
}
if (Key.isDown(39)) {
_x = (_x + 10);
_rotation = 0;
this.gotoAndStop(4);
}
if (Key.isDown(37)) {
_x = (_x - 10);
_rotation = 0;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32) && (_root.character.hitTest(_root.car))) {
speed = speed + 1;
}
if (Key.isDown(40) && (_root.character.hitTest(_root.car))) {
speed = speed - 1;
}
if (Math.abs(speed) > 25) {
speed = speed * 0.6;
}
if (Key.isDown(37) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation - 15);
}
if (Key.isDown(39) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation + 15);
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.move.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.car)) {
_root.character._visible = false;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_root.character._visible = true;
}
}
onClipEvent (enterFrame) {
if ((visible = true)) {
speed = 0;
_rotation = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (_visible == true)) {
_y = (_y - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40) && (_visible == true)) {
_y = (_y + 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37) && (_visible == true)) {
_x = (_x - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_visible == true)) {
_x = (_x + 5);
}
}
onClipEvent (enterFrame) {
if (_root.character._visible == false) {
_y = _root.car._y;
_x = _root.car._x;
}
}
Frame 1302 (8 B)
stop();
Instance of Symbol 32 MovieClip in Frame 1303 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 1303 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 1303 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 1303 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 1303 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 1303 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 1303 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 1303 (117 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 789 MovieClip in Frame 1303 (89 B)
onClipEvent (enterFrame) {
if (_parent.character.hitTest(this)) {
_parent.play();
}
}
Instance of Symbol 166 MovieClip "character" in Frame 1303 (1.92 KiB) ●
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 10);
_rotation = 0;
this.gotoAndStop(2);
}
if (Key.isDown(40)) {
_y = (_y + 10);
_rotation = 0;
this.gotoAndStop(1);
}
if (Key.isDown(39)) {
_x = (_x + 10);
_rotation = 0;
this.gotoAndStop(4);
}
if (Key.isDown(37)) {
_x = (_x - 10);
_rotation = 0;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32) && (_root.character.hitTest(_root.car))) {
speed = speed + 1;
}
if (Key.isDown(40) && (_root.character.hitTest(_root.car))) {
speed = speed - 1;
}
if (Math.abs(speed) > 25) {
speed = speed * 0.6;
}
if (Key.isDown(37) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation - 15);
}
if (Key.isDown(39) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation + 15);
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.move.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.car)) {
_root.character._visible = false;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_root.character._visible = true;
}
}
onClipEvent (enterFrame) {
if ((visible = true)) {
speed = 0;
_rotation = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (_visible == true)) {
_y = (_y - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40) && (_visible == true)) {
_y = (_y + 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37) && (_visible == true)) {
_x = (_x - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_visible == true)) {
_x = (_x + 5);
}
}
onClipEvent (enterFrame) {
if (_root.character._visible == false) {
_y = _root.car._y;
_x = _root.car._x;
}
}
Frame 1337 (8 B)
stop();
Frame 1474 (17 B)
stopAllSounds();
Frame 1479 (8 B)
stop();
Instance of Symbol 24 MovieClip in Frame 1479 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 1556 (17 B)
stopAllSounds();
Frame 1563 (8 B)
stop();
Instance of Symbol 24 MovieClip in Frame 1563 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 1637 (17 B)
stopAllSounds();
Frame 1644 (8 B)
stop();
Instance of Symbol 24 MovieClip in Frame 1644 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 844 MovieClip in Frame 1659 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 1685 (17 B)
stopAllSounds();
Frame 1691 (8 B)
stop();
Instance of Symbol 24 MovieClip in Frame 1691 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 316 MovieClip in Frame 2002 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 2076 (17 B)
stopAllSounds();
Frame 2082 (8 B)
stop();
Instance of Symbol 24 MovieClip in Frame 2082 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 316 MovieClip in Frame 2083 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 316 MovieClip in Frame 2085 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 2113 (17 B)
stopAllSounds();
Instance of Symbol 316 MovieClip in Frame 2140 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 2159 (17 B)
stopAllSounds();
Frame 2160 (8 B)
stop();
Instance of Symbol 24 MovieClip in Frame 2160 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 316 MovieClip in Frame 2161 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 2208 (17 B)
stopAllSounds();
Frame 2209 (8 B)
stop();
Instance of Symbol 24 MovieClip in Frame 2209 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 316 MovieClip in Frame 2210 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 2256 (17 B)
stopAllSounds();
Frame 2257 (8 B)
stop();
Instance of Symbol 24 MovieClip in Frame 2257 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 316 MovieClip in Frame 2258 (60 B)
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 2301 (17 B)
stopAllSounds();
Symbol 10 Button (65 B)
on (release) {
getURL ("http://www.newgrounds.com", "_blank");
}
Symbol 18 Button (31 B)
on (release) {
_root.play();
}
Symbol 19 MovieClip Frame 1 (186 B)
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
bar._xscale = PercentLoaded;
} else {
gotoAndStop ("loaded");
}
Symbol 19 MovieClip Frame 2 (17 B)
gotoAndPlay (1);
Symbol 64 MovieClip Frame 1 (8 B)
stop();
Instance of Symbol 49 MovieClip "player" in Symbol 64 MovieClip Frame 1 (132 B)
onClipEvent (enterFrame) {
if (!Key.isDown(40)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 64 MovieClip Frame 2 (8 B)
stop();
Instance of Symbol 53 MovieClip in Symbol 64 MovieClip Frame 2 (132 B)
onClipEvent (enterFrame) {
if (!Key.isDown(38)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 64 MovieClip Frame 3 (8 B)
stop();
Instance of Symbol 58 MovieClip in Symbol 64 MovieClip Frame 3 (132 B)
onClipEvent (enterFrame) {
if (!Key.isDown(37)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 64 MovieClip Frame 4 (8 B)
stop();
Instance of Symbol 63 MovieClip in Symbol 64 MovieClip Frame 4 (132 B)
onClipEvent (enterFrame) {
if (!Key.isDown(39)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 69 MovieClip Frame 17 (8 B)
stop();
Symbol 77 MovieClip Frame 1 (8 B)
stop();
Instance of Symbol 49 MovieClip "player" in Symbol 77 MovieClip Frame 1 (132 B)
onClipEvent (enterFrame) {
if (!Key.isDown(40)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 77 MovieClip Frame 2 (8 B)
stop();
Instance of Symbol 53 MovieClip in Symbol 77 MovieClip Frame 2 (132 B)
onClipEvent (enterFrame) {
if (!Key.isDown(38)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 77 MovieClip Frame 3 (8 B)
stop();
Instance of Symbol 58 MovieClip in Symbol 77 MovieClip Frame 3 (132 B)
onClipEvent (enterFrame) {
if (!Key.isDown(37)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 77 MovieClip Frame 4 (8 B)
stop();
Instance of Symbol 63 MovieClip in Symbol 77 MovieClip Frame 4 (132 B)
onClipEvent (enterFrame) {
if (!Key.isDown(39)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 130 MovieClip Frame 1 (8 B)
stop();
Instance of Symbol 49 MovieClip "player" in Symbol 130 MovieClip Frame 1 (132 B)
onClipEvent (enterFrame) {
if (!Key.isDown(40)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 130 MovieClip Frame 2 (8 B)
stop();
Instance of Symbol 53 MovieClip in Symbol 130 MovieClip Frame 2 (132 B)
onClipEvent (enterFrame) {
if (!Key.isDown(38)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 130 MovieClip Frame 3 (8 B)
stop();
Instance of Symbol 58 MovieClip in Symbol 130 MovieClip Frame 3 (132 B)
onClipEvent (enterFrame) {
if (!Key.isDown(37)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 130 MovieClip Frame 4 (8 B)
stop();
Instance of Symbol 63 MovieClip in Symbol 130 MovieClip Frame 4 (132 B)
onClipEvent (enterFrame) {
if (!Key.isDown(39)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 141 MovieClip Frame 7 (8 B)
stop();
Symbol 150 MovieClip Frame 8 (8 B)
stop();
Symbol 160 Button (25 B)
on (release) {
play();
}
Symbol 162 MovieClip Frame 20 (8 B)
stop();
Symbol 166 MovieClip Frame 1 (8 B)
stop();
Instance of Symbol 49 MovieClip "player" in Symbol 166 MovieClip Frame 1 (132 B)
onClipEvent (enterFrame) {
if (!Key.isDown(40)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 166 MovieClip Frame 2 (8 B)
stop();
Instance of Symbol 53 MovieClip in Symbol 166 MovieClip Frame 2 (132 B)
onClipEvent (enterFrame) {
if (!Key.isDown(38)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 166 MovieClip Frame 3 (8 B)
stop();
Instance of Symbol 58 MovieClip in Symbol 166 MovieClip Frame 3 (132 B)
onClipEvent (enterFrame) {
if (!Key.isDown(37)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 166 MovieClip Frame 4 (8 B)
stop();
Instance of Symbol 63 MovieClip in Symbol 166 MovieClip Frame 4 (132 B)
onClipEvent (enterFrame) {
if (!Key.isDown(39)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 187 Button (34 B)
on (press) {
gotoAndStop (141);
}
Symbol 194 MovieClip Frame 1 (8 B)
stop();
Symbol 202 Button (23 B)
on (press) {
play();
}
Symbol 218 MovieClip Frame 5 (8 B)
stop();
Symbol 276 Button (23 B)
on (press) {
play();
}
Symbol 278 Button (34 B)
on (press) {
gotoAndPlay (425);
}
Symbol 280 Button (34 B)
on (press) {
gotoAndPlay (392);
}
Symbol 282 MovieClip Frame 11 (8 B)
stop();
Symbol 302 Button (23 B)
on (press) {
play();
}
Symbol 304 Button (34 B)
on (press) {
gotoAndPlay (425);
}
Symbol 305 Button (34 B)
on (press) {
gotoAndPlay (187);
}
Symbol 311 Button (34 B)
on (press) {
gotoAndPlay (371);
}
Symbol 358 MovieClip Frame 34 (8 B)
stop();
Symbol 365 Button (34 B)
on (press) {
gotoAndPlay (143);
}
Symbol 369 MovieClip Frame 9 (8 B)
stop();
Symbol 388 Button (34 B)
on (press) {
gotoAndPlay (491);
}
Symbol 442 MovieClip Frame 40 (8 B)
stop();
Symbol 519 Button (23 B)
on (press) {
play();
}
Symbol 540 Button (34 B)
on (press) {
gotoAndPlay (873);
}
Symbol 584 MovieClip Frame 95 (8 B)
stop();
Symbol 589 MovieClip Frame 23 (8 B)
stop();
Symbol 591 MovieClip Frame 33 (8 B)
stop();
Symbol 592 MovieClip Frame 26 (8 B)
stop();
Symbol 596 MovieClip Frame 27 (8 B)
stop();
Symbol 598 Button (34 B)
on (press) {
gotoAndPlay (632);
}
Symbol 614 Button (34 B)
on (press) {
gotoAndPlay (918);
}
Symbol 663 Button (35 B)
on (press) {
gotoAndPlay (1054);
}
Symbol 726 Button (25 B)
on (release) {
play();
}
Symbol 813 Button (51 B)
on (keyPress "<Up>") {
gotoAndPlay (1481);
}
Symbol 827 Button (35 B)
on (press) {
gotoAndPlay (1373);
}
Symbol 828 Button (50 B)
on (keyPress "<Up>") {
gotoAndPlay (109);
}
Symbol 829 Button (51 B)
on (keyPress "<Up>") {
gotoAndPlay (1565);
}
Symbol 834 Button (51 B)
on (keyPress "<Up>") {
gotoAndPlay (1646);
}
Symbol 845 Button (35 B)
on (press) {
gotoAndPlay (1693);
}
Symbol 944 Button (35 B)
on (press) {
gotoAndPlay (2083);
}
Symbol 983 MovieClip Frame 40 (8 B)
stop();
Symbol 986 Button (35 B)
on (press) {
gotoAndPlay (1989);
}
Symbol 1024 Button (35 B)
on (press) {
gotoAndPlay (2161);
}
Symbol 1035 Button (35 B)
on (press) {
gotoAndPlay (2114);
}
Symbol 1039 Button (33 B)
on (press) {
gotoAndPlay (16);
}
Symbol 1041 Button (33 B)
on (press) {
gotoAndPlay (16);
}
Symbol 1051 Button (32 B)
on (press) {
gotoAndPlay (2);
}
Symbol 1063 MovieClip Frame 1 (8 B)
stop();
Symbol 1063 MovieClip Frame 7 (8 B)
stop();
Symbol 1063 MovieClip Frame 9 (8 B)
stop();
Symbol 1063 MovieClip Frame 13 (8 B)
stop();
Symbol 1063 MovieClip Frame 15 (8 B)
stop();
Symbol 1063 MovieClip Frame 21 (8 B)
stop();
Symbol 1063 MovieClip Frame 23 (8 B)
stop();
Symbol 1068 Button (35 B)
on (press) {
gotoAndPlay (2211);
}
Symbol 1076 Button (35 B)
on (press) {
gotoAndPlay (2258);
}