How to make Timer to jump to next Event


//timer to jump to Event

كود PHP:


function doElse() 
{
    
play();

    
//getURL("http://www.google.com", "target");

    
clearInterval(myInterval);
}

myInterval setInterval(doElse1000); 

or



كود PHP:


mySeconds
=120;

function 
wait() {
    
    if(
mySeconds == 0) {
           
clearInterval(myTimer);
         
_parent.nextFrame();
    } 
        
    
mySeconds--; 
}

myTimer setInterval(wait1000);