Ver Mensaje Individual
  #2  
Antiguo 28-03-2007
elcigarra elcigarra is offline
Miembro
 
Registrado: may 2005
Posts: 269
Reputación: 20
elcigarra Va por buen camino
Por si algún día alguien la necesita:

Código:
function wait(mc, n) {
mc.stop();
var myInterval = setInterval(function () {
mc.play();
clearInterval(myInterval);
}, 3 * 1000);
}
_root.wait(this, n)
Responder Con Cita