14/08/2007, 21:41
|
| | Fecha de Ingreso: marzo-2007 Ubicación: México
Mensajes: 133
Antigüedad: 17 años, 8 meses Puntos: 0 | |
Re: otro Intervalo de tiempo de x segundos ya probaste con la clase timer?
var timer:Tiemer=new Timer(milisegundos, veces a ejecutar);
timer.addEventListener(TimerEvent.TIMER, funcionAescuchar);
timer.start();
function funcionAescuchar(t:TimerEvent){
trace("ok");
} |