ANUBIS Typhoon Wireless Access Point Instrukcja Konfiguracji Strona 89

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj
  • Strona
    / 101
  • Spis treści
  • BOOKMARKI
  • Oceniono. / 5. Na podstawie oceny klientów
Przeglądanie stron 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
Przeglądanie stron 88
1 2 ... 84 85 86 87 88 89 90 91 92 93 94 ... 100 101

Komentarze do niniejszej Instrukcji

Brak uwag