![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
02/03/2009, 11:07
|
![Avatar de Diegoazul](http://static.forosdelweb.com/customavatars/avatar184067_90.gif) | | | Fecha de Ingreso: mayo-2007 Ubicación: { Dash Berlin }
Mensajes: 1.879
Antigüedad: 17 años, 8 meses Puntos: 67 | |
Respuesta: onkeydown Coloca a num=0.
Código:
var keyListener:Object = new Object();
keyListener.onKeyDown = function() {
if (Key.isDown(Key.ENTER)) {
num=0;
}
};
Key.addListener(keyListener);
|