A more direct answer that doesn't require you to reprogram your interval names was obtained from the blog below. I've included the relevant snippet here but there are some other useful tidbits at Ted on Flex.
Code:Or if you simply want to clear out all the Intervals within the Flash Player: i = setInterval(function(){},100) + 1 while(i--){ clearInterval(i) }




Reply With Quote