ID
(number) The ID of the timer you want to start.
Re t u r n s
Nothing. You can use Application.GetLastError to determine whether this action failed, and why.
See also: Related Actions
Page.StopTimer
OverviewExamples
Page.StopTimer ( number ID = 10 )
De s cr ip t ion
Stops a page timer.
In other words, this action stops the On Timer event from being triggered by the page timer that was started with a Page.StartTimer action using the same timer ID. Other page timers will continue to run until they are stopped.
P arame t er s
ID
(number) The ID of the page timer to stop.
Re t u r n s
Nothing. You can use Application.GetLastError to determine whether this action failed, and why.
See also: Related Actions
P a r a g r a p h
Paragraph.GetPos
OverviewExamples
table Paragraph.GetPos ( string ObjectName )
De s cr ip t ion
Returns the X and Y page or dialog coordinates of a paragraph object in pixels. This coordinate refers to the upper left hand corner of the object's bounding box relative to the page or dialog.
Note: The upper left hand corner of a page or dialog has X and Y coordinates of 0.
P arame t er s
ObjectName
(string) The name of the paragraph object.
Re t u r n s
(table) A table containing the object's current coordinates, indexed by values X and Y. If the object cannot be found, nil will be returned. You can use Application.GetLastError to determine whether this action failed, and why.