onClipEvent (enterFrame) {
if (Key.isDown(Key.RIGHT)) {
this._x = this._x+10;
}
}


I cannot get this to work in KM. I am trying to move an object when the arrow keys are pressed.