How is the Timer.currentCount implemented in AIR on a Mac.
I have a timer (delay=2000,repeat=0) which should run forever, but it stops after about 25 days.
A 32 bit signed integer incrementing every 100ms will overflow in day 24, hour 20 so I am suspecting that this will be the problem (somehow).
I see that the currentCount of the timer increments every 2 seconds, so I am wondering if currentCount is implemented as a time in milliseconds divided by the delay and when it overflows the timer stops.
Can anyone confirm this in the run time, or offer a better explanation?
