Ver Mensaje Individual
  #2 (permalink)  
Antiguo 11/11/2005, 13:01
Avatar de julio archila
julio archila
 
Fecha de Ingreso: marzo-2005
Ubicación: Quetzaltenango, Guatemala
Mensajes: 272
Antigüedad: 19 años, 1 mes
Puntos: 0
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 ...
__________________
Julio Archila