Package Win32::GUI::Timer
Constructor
new Win32::GUI::Timer(PARENT, NAME, ELAPSE)
Creates a new timer in the PARENT window named NAME that will trigger its Timer() event after ELAPSE milliseconds. Can also be called as PARENT->AddTimer(NAME, ELAPSE).
Methods
Interval(ELAPSE)
Changes the timeout value of the Timer to ELAPSE milliseconds. If ELAPSE is 0, the Timer is disabled; can also be used to resume a Timer after a Kill().
Kill() Disables the Timer.
Timer() Sent when the Timer reaches its timeout value, eg. after the number of milliseconds specified when creating the Timer.
3 POD Errors The following errors were encountered while parsing the POD: You can't have =items (as at line 55) unless the first thing after the =over is an =item You can't have =items (as at line 71) unless the first thing after the =over is an =item You can't have =items (as at line 95) unless the first thing after the =over is an =itemEvents