setInterval timer not consistent?
I am working on an interactive flash program for a gallery installation that will be running for two weeks. This interactive flash program has buttons that users that take users to various "pages," like a website. However, as this is a gallery installation, I want the program to reset to the Splash page after a certain amount of time has passed. I have had limited success with setInterval(). It works great the first time, and the delay is what I set it as (I set it as 10 seconds for this test). However on subsequent tries (ie, after it has reset to the Splash page, and I start the process again), the delay is only about 1 or 2 seconds. What is going on here? Why is the delay not consitent?
Here is my simple code:
function FlashReset1():void
{
gotoAndStop("SPLASH");
}
setInterval(FlashReset1,10000);
