Timer

A Timer component monitors elapsed time.

Timer Properties

Standard Properties:
class, enabled, parent, proto, version.
enabled: Setting this property to 1 starts the timer; Setting it to zero stops it.

interval integer (1-...)
The amount of time between _ring()events, in 1/60 second intervals. For example, to receive notification once every 1/10 of second, use an interval of 6.

Timer Events

_ring()

_ring( self AS timer )

This event is generated when the timer is enabled every time the interval is reached. If the system is too slow to handle all the _ring() events generated, some _ring() events may be dropped.

Pass:

self timer
The component experiencing the event.

Timer Actions

None.