ANUBIS Typhoon Wireless Access Point Einstellungsanleitung Seite 89

  • Herunterladen
  • Zu meinen Handbüchern hinzufügen
  • Drucken
  • Seite
    / 101
  • Inhaltsverzeichnis
  • LESEZEICHEN
  • Bewertet. / 5. Basierend auf Kundenbewertungen
Seitenansicht 88
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
Seitenansicht 88
1 2 ... 84 85 86 87 88 89 90 91 92 93 94 ... 100 101

Kommentare zu diesen Handbüchern

Keine Kommentare