How to pause in FLASH
August 31st, 2007 by steamfrog
Add this code to the frame you want to pause
clearInterval(nDelayID);
stop();
var nDelayID:Number = setInterval(this, “pause”, 7000);
// where 4000 is 4000 milliseconds
function pause():Void {
clearInterval(nDelayID);
play();
}




























