elapsed = TimerElapsed(id[, reset])
id has elapsed and returns True if it
has, False otherwise. By default, the timer will be reset to 0 when it has elapsed.
If you don't want that, pass False in the reset argument.
The threshold when a timer elapses can be set either when creating a timer using StartTimer() or later using SetTimerElapse().
True if the elapsed timers should be reset to 0, False otherwise
(defaults to True)True if the timer has elapsed, False otherwiseStartTimer(1, 10000) Repeat VWait Until TimerElapsed(1) = True