DestroyTimer()
Summary
Cancels a timer that executes a macro at fixed-time intervals.
Syntax
DestroyTimer(string timer_name)
| Argument | Contents |
|---|---|
| timer_name | The name used in the call to CreateTimer() |
Notes
-
Only one timer may be active at a time.
Example
DestroyTimer("GPS Vehicle Locator")
See Also
| Function | Summary |
|---|---|
| CreateTimer() | Sets up a timer that executes a macro at fixed-time intervals |
| Pause() | Uses a timer to go into a waiting loop that yields to other processes, allowing Windows messages to be dispatched while waiting |
| Sleep() | Uses a timer to go into a busy waiting loop that yields to other processes |
| CreateStopwatch() | Start a stopwatch to track clock time |
| CheckStopwatch() | Determine the elapsed time since a stopwatch was started |
| DestroyStopwatch() | Stops or cancels a stopwatch |