Setup guide
Arguments
mixerdestination
Required. A MixerDestination object (i.e.
Playback
or
Record
)
SourceIndex
Required. Index to a MixerSource object.
Properties
Remarks
The Value property is a combination of all channels. Value is the default property of the MixerControl object. Examples
of valid Values:
MixerControl type volume, bass or treble: 0 to 100 in percent
MixerControl type panning or fader: -100 to 100 in percent (negative is left or rear, 0 is center)
MixerControl type mute (boolean): 0 or 1 (false/true)
Examples:
Mixer.Playback(0).Volume = 10 // set volume to 10%
Mixer.Playback(0).Panning = -50 // set panning to 50% left
Mixer.Playback(0).Mute = true // mute
Mixer.Playback(0).Mute = !Mixer.Playback(0).Mute.Value//toggle mute
Methods
mixercontrol
.ShowOSD()
Displays an appropriate OSD for the object.
Arguments
mixercontrol
Required. A MixerControl object (see above)
JScript example:
Mixer.Playback(0).Volume.ShowOSD();
Mouse Object
Name
Read-only string containing the name of the object
Value
Read/write long value containing the value of the object. The value is a combination of all
channels. Valid values depend on the type of the control.
Channels
Number of channels. 2=Stereo, 1=Mono
Channel
Read/write number containing the value of a single channel.