Maybe i can help--use this action script instead
USE THIS INSTEAD
onClipEvent (enterFrame) {
speed = 0;
if (Key.isDown(Key.UP)) {
speed = 25;
}
if (Key.isDown(Key.DOWN)) {
speed -= 5;
}
if (Math.abs(speed)>75) {
speed *= .7;
}
if (Key.isDown(Key.LEFT)) {
_rotation -= 15;
}
if (Key.isDown(Key.RIGHT)) {
_rotation += 15;
}
speed *= .60;
x = Math.sin(_rotation*(Math.PI/180))*speed;
y = Math.cos(_rotation*(Math.PI/180))*speed*-1;
if (!_root.land.hitTest(_x+x, _y+y, true)) {
_x += x;
_y += y;
} else {
speed *= -.8;
}
if (_x>550) {
_x = 0;
}
if (_x<0) {
_x = 550;
}
if (_y>400) {
_y = 0;
}
if (_y<0) {
_y = 400;
}
}
No thanks needed :D