21/11/2012, 05:37
|
| | | Fecha de Ingreso: marzo-2004 Ubicación: Barcelona
Mensajes: 313
Antigüedad: 20 años, 7 meses Puntos: 7 | |
Respuesta: setTimeout() Encontre un ejemplo. Lo mirare ...
var my_timedProcess:Number = setTimeout(my_funcion, 2000, "two second delay");
function my_funcion (arg1) {
trace(arg1);
}
var escListener:Object = new Object();
escListener.onKeyDown = function() {
if (Key.isDown(Key.ESCAPE)) {
clearTimeout(my_timedProcess);
}
};
Key.addListener(escListener); |