hola jat ibo:
yo lo he hecho de las siguientes maneras y me ha funcionado bien:
Código:
stop();
segundos = 5;
espera = function (){
play();
clearInterval(a);
};
a = setInterval(espera, segundos*1000);
Código:
numSeg = 4;
stop();
tiempo = Math.round(getTimer()/1000);
this.createEmptyMovieClip("loop_mc", this);
loop_mc.onEnterFrame = function(){
tiempoActual = Math.round(getTimer()/1000);
if((tiempoActual - tiempo) > numSeg){
trace("Paso al frame 2.");
gotoAndStop(2);
}
}
espero sea de ayuda.
saludos
...