WebTimer.Action
From Xojo Documentation
Event
Executes each time the control’s Period property elapses.
Example
In the Action event handler, you put the code that you want to run when the Timer period is reached. This example increases a ProgressBar each time the timer period is reached:
ProgressBar1.Value = ProgressBar1.Value + 1