This is an archive. | |
See the new ClickWiki at https://clickwiki.github.io. This version is just an archive for the purposes of migrating content to the new structure. |
Timer Object
Author | |
Status | Released |
Release Date | Unknown |
Available for | Not yet documented |
Supported Runtimes | |
License | Free |
Download | |
---|---|
Includes Examples | No |
Includes Help Files | Yes |
Links | Included by default. |
The Timer object is a built-in clock that runs throughout your application and keeps track of the elapsed time since the start of your application. The timer starts at zero and increases by one every thousandth of a second. The Timer object can trigger actions when the timer is equal to, less than, or greater than a specific time value. You can even trigger actions if the user has left the computer for a set time period.
The Timer object is a system object and is only available in the Event editor.
Contents
Conditions
Every
The Every condition lets the application perform the actions inserted on this event line at a specified time interval.
Is The Timer Equal To A Certain Value?
The Is The Timer Equal To A Certain Value? condition tests to see if the timer is equal to a specific time value. The Timer object counts up from 0 at the start of each frame. This condition is only satisfied at the moment that the timer is equal to the set value, for only one loop of the application.
Is The Timer Less Than A Certain Value?
The Is The Timer Less Than A Certain Value? condition tests to see if the timer is less than a specific time value. The Timer object counts up from 0 at the start of each frame. This condition is continuously satisfied until the timer reaches the set value. You can choose to enter the time via a calculation, in 1/1000th of seconds.
Is The Timer Greater Than A Certain Value?
The Is The Timer Greater Than A Certain Value? condition tests to see if the timer is greater than a specific time value. The Timer object counts up from 0 at the start of each frame. This condition is continuously satisfied once the timer reaches the set value. You can choose to enter the time via a calculation, in 1/1000th of seconds.
On event
No info available, please add some!
User Has Left The Computer Since
The User Has Left The Computer Since condition tests to see if the user has depressed a key or moved the mouse pointer within a certain time period. You can choose to enter the time via a calculation, in 1/1000th of seconds.
Actions
Set Timer
The Set Timer action changes the value of the timer to a new time.
Fire event after given delay
No info available, please add some!
Fire event N times after given delay-
No info available, please add some!
Expressions
Timer Count In 1/1000 Since Start Of Frame
timer
The Timer Count In 1/1000 Since Start Of Frame function retrieves the thousandths of seconds since the start of the frame. This will be a numerical value.
Timer Count, Hours
hours
The Timer Count, Hours function retrieves the number of hours since the start of the frame. This will be a numerical value.
Timer Count, Seconds
seconds
The Timer Count, Seconds function retrieves the number of seconds since the start of the frame. This will be a numerical value.
Timer Count, 1/100 Value
hundreds
The Timer Count, 1/100 Value function retrieves the hundredths of seconds since the start of the frame. This will be a numerical value.
Timer Count, Minutes
minutes
The Timer Count, Minutes function retrieves the number of minutes since the start of the frame. This will be a numerical value.
Event call number
eventindex
No info available, please add some!