Arrow Keys


this.onEnterFrame = function(){
    if (Key.isDown(Key.LEFT)) {
            _x -= speed;
     }
    if (Key.isDown(Key.RIGHT)) {
            _x += speed;
    }
}