Ver Mensaje Individual
  #3 (permalink)  
Antiguo 26/08/2002, 12:53
Avatar de TMeister
TMeister
Crazy Coder
 
Fecha de Ingreso: enero-2002
Ubicación: En la Oficina
Mensajes: 2.880
Antigüedad: 22 años, 3 meses
Puntos: 193
Re: Movimiento de objetos con el teclado

El Codigo Salio Repetido lo posteo de Nuevo!

onClipEvent (keyDown) {
if (Key.isDown( key.LEFT)) {
_x-=10;
}
}
onClipEvent (keyDown) {
if (Key.isDown( key.RIGHT)) {
_x+=10;
}
}
onClipEvent (keyDown) {
if (Key.isDown( key.UP )) {
_y-=10;
}
}
onClipEvent (keyDown) {
if (Key.isDown( key.DOWN )) {
_y+=10;
}
}

Ahora Si!!

Saludos!! :cantar: :cantar: