Ver Mensaje Individual
  #2 (permalink)  
Antiguo 09/12/2005, 12:42
Avatar de luistar
luistar
 
Fecha de Ingreso: marzo-2005
Ubicación: Argentina
Mensajes: 939
Antigüedad: 19 años, 1 mes
Puntos: 0
Código PHP:
function cuenta_regresiva(demora) {
    var 
inicio:Number getTimer();
    
this.onEnterFrame = function() {
        if (
getTimer()-inicio>=demora*1000) {
            
delete this.onEnterFrame;
            
//gotoAndPlay(2);
            
trace('pasaron ya '+demora+' segundos');
        }else{
            
trace(Math.round((getTimer()-inicio)/1000)+' segs');
        }
    };
}
cuenta_regresiva(180);
stop(); 
:D
__________________
Si digo que soy mentiroso. ¿Lo soy?