Ver Mensaje Individual
  #2 (permalink)  
Antiguo 14/08/2007, 21:41
ezra.wong
 
Fecha de Ingreso: marzo-2007
Ubicación: México
Mensajes: 133
Antigüedad: 17 años, 1 mes
Puntos: 0
Busqueda 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");

}