Volume
(number) The volume level represented by a number between 0 and 100. The value 0 is silent and 100 is the loudest.
Re t u r n s
Nothing. You can use Application.GetLastError to determine whether this action failed, and why.
See also: Related Actions
Video.Stop
OverviewExamples
Video.Stop ( string ObjectName )
De s cr ip t ion
Stops the playback of the video in a video object.
P arame t er s
ObjectName
(string) The name of the video object.
Re t u r n s
Nothing. You can use Application.GetLastError to determine whether this action failed, and why.
See also: Related Actions
W e b
Web.Back
OverviewExamples
Web.Back ( string ObjectName )
De s cr ip t ion
Navigates one page back in a web object.
P arame t er s
ObjectName
(string) The name of the web object.
Re t u r n s
Nothing. You can use Application.GetLastError to determine whether this action failed, and why.
See also: Related Actions
Web.Forward
OverviewExamples
Web.Forward ( string ObjectName )
De s cr ip t ion
Navigates one page forward in a web object.
P arame t er s
ObjectName
(string) The name of the web object.
Re t u r n s
Nothing. You can use Application.GetLastError to determine whether this action failed, and why.
See also: Related Actions
Web.GetPos
OverviewExamples
table Web.GetPos ( string ObjectName )
De s cr ip t ion
Returns the X and Y page or dialog coordinates of a web 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 web 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.