Download ANUBIS Typhoon Wireless Access Point Setup guide

Transcript
The Wave source is Mixer.Playback(1) or Mixer.Playback("Wave") .
MixerSource objects are collection objects containing one or more MixerControl objects. The following VBScript
example enumerates all available MixerControl objects of the "Wave" MixerSource:
Dim str
For Each control In Mixer.Playback("Wave")
str=str+control.Name+" "
Next
Alert str 'str contains "Volume Mute "
or using a JScript for(;;) loop and a numerical index:
str="";
for (i=0; i<Mixer.Playback(1).Count; i++)
str=str+Mixer.Playback(1)(i).Name+" ";
Alert(str);
See Also
MixerControl Object
MixerControl Object
The MixerControl object contains properties and methods of a single mixer control like volume or mute.
Mixer.mixerdestination( SourceIndex ).Control( ControlIndexOrName )
Mixer.mixerdestination( SourceIndex )( ControlIndexOrName )
Arguments
ControlIndexOrName
Required. Numerical index or name of the control.
Mixer.mixerdestination( SourceIndex ).Volume
Mixer.mixerdestination( SourceIndex ).Treble
Mixer.mixerdestination( SourceIndex ).Bass
Mixer.mixerdestination( SourceIndex ).Panning
Mixer.mixerdestination( SourceIndex ).Fader
Mixer.mixerdestination( SourceIndex ).Mute