ok i am using this code to use monement i used it for 3 objects so far (on the same frame) the probem is that when i make it into a .swf and when i use the arrows keys everything moves backwards!!!Why?!
[color=#333399][size=3][color=#333399][size=3][font=Times New Roman][/font][/size][/color]
[color=#333399][size=3][font=Times New Roman]onClipEvent (load) {
moveSpeed = 10;
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.RIGHT)) {
this._x += moveSpeed;
} else if (Key.isDown(Key.LEFT)) {
this._x -= moveSpeed;
}
if (Key.isDown(Key.DOWN)) {
this._y += moveSpeed;
} else if (Key.isDown(Key.UP)) {
this._y -= moveSpeed;
}
}
[/font][/size][/color]
[/size][/color]