# Moveing backwards?

**URL:** https://forum.kirupa.com/t/moveing-backwards/143999
**Category:** Uncategorized
**Created:** [April 10, 2005, 10:25pm UTC](https://forum.kirupa.com/t/moveing-backwards/143999 "2005-04-10T22:25:44Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Robin105](https://avatars.discourse-cdn.com/v4/letter/r/5e9695/32.png) [@Robin105](https://forum.kirupa.com/u/Robin105)
#### Post date: [April 10, 2005, 10:25pm UTC](https://forum.kirupa.com/t/moveing-backwards/143999/1 "2005-04-10T22:25:44Z")

</div>

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]
