Frame 1
function menuChoiceOne() {
}
NewMenu = new ContextMenu();
NewMenu.hideBuiltInItems();
NewMenu.customItems.push(new ContextMenuItem("Created by Fsdf40", menuChoiceOne));
this.menu = NewMenu;
Instance of Symbol 6 MovieClip in Frame 1
onClipEvent (enterFrame) {
_y = (_y + (acelerar * Math.sin(_rotation / 57.3)));
_x = (_x + (acelerar * Math.cos(_rotation / 57.3)));
acelerar = acelerar * 0.8;
}
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
acelerar = 20;
} else {
acelerar = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
acelerar = -25;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
_rotation = (_rotation - 15);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
_rotation = (_rotation + 15);
}
}
Symbol 6 MovieClip Frame 1
stop();
Instance of Symbol 5 MovieClip in Symbol 6 MovieClip Frame 1
on (keyPress "<Space>") {
gotoAndPlay (2);
}
on (keyPress "<Enter>") {
gotoAndPlay (3);
}