Page.StartTimer

Page.StartTimer ( 

number Interval = 1000,

number ID = 10 )

Description

Starts a timer for the current page.

Note: Once started, the page timer will continually trigger the page's On Timer event on the interval that you specify. You can find the On Timer event tab in the script editor.

Parameters

Interval

(number) The timer interval in milliseconds.

ID

(number) The ID of the timer you want to start.

Returns

Nothing. You can use Application.GetLastError to determine whether this action failed, and why.

See also:  Related Actions