Kenny Bunch wrote an interval manager way back when.
 
http://www.kennybunch.com/index.php?p=16 
 
To answer your question, though, setInterval returns a number, which is a 
unique id reference for that interval.  If you set another interval to the same 
var, you orphan the previous interval forever lost, forever running.  As a 
matter of good practice you should always clearInterval before you setInterval.
 
clearInterval(myInterval);
myInterval = setInterval(...);
 
 
_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to