A Flash Developer Resource Site

Results 1 to 10 of 10

Thread: clear ALL Intervals ?

Hybrid View

  1. #1
    Senior Member fantasio's Avatar
    Join Date
    May 2000
    Location
    at the progress bar
    Posts
    409

    Cool Idea !

    thanks

  2. #2
    Junior Member
    Join Date
    Jan 2007
    Posts
    4
    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) 
    }

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center