onClipEvent (enterFrame) { if (Key.isDown(Key.UP)) { _y -= 5; } if (Key.isDown(Key.DOWN)) { _y += 5; } if (Key.isDown(Key.RIGHT)){ _x += 5; } if (Key.isDown(Key.LEFT)){ _x -= 5; }}