Setup guide
See Also
Change Display Mode action
Globals Object
The Globals object can be used to save variables between script executions or to pass variables to other scripts.
Globals(
sVariableName, Value
)
Arguments
sVariableName
Required. A string containing the name of the variable.
Value
Required.Variant value of the variable.
Remarks
The Globals collection object can store any kind of values. All variables remain in memory until uICE exits and are
accessible from different scripts across commands and applications.
Use a somewhat unique name for sVariableName to prevent overwriting values of other scripts, unless this is intended
of course.
To remove a variable from the object, call
Globals.Remove(sVariableName)
VBScript example:
Globals("MyGlobalNumber")=2003
Globals("MyGlobalString")="uICE"
Alert Globals("MyGlobalString") + CStr(Globals("MyGlobalNumber"))
Globals.Remove "MyGlobalNumber"
Audio Mixer Overview
uICE provides a set of objects to represent the Windows audio mixer in an object oriented way. The following illustration
shows a typical mixer hierarchy and its representing objects: