Retrieves a mute setting of a sound device.
Setting := SoundGetMute(Component, Device)
If blank or omitted, it defaults to the master mute setting. Otherwise, specify the component's display name and/or index, e.g. 1
, "Line in"
or "Line in:2"
.
For further details, see Component (Sound Functions).
If blank or omitted, it defaults to the system's default device for playback (which is not necessarily device 1). Otherwise, specify the device's display name and/or index, e.g. 1
, "Speakers"
, "Speakers:2"
or "Speakers (Example HD Audio)"
.
For further details, see Device (Sound Functions).
Type: Integer (boolean)
This function returns 0 (false) for unmuted or 1 (true) for muted.
A TargetError is thrown if the device or component could not be found or if the component does not support this control type. Otherwise, an OSError is thrown on failure.
To discover the capabilities of the sound devices installed on the system -- such as the names and available components -- run the soundcard analysis script.
Checks whether the default playback device is muted.
master_mute := SoundGetMute() if master_mute MsgBox "The default playback device is muted." else MsgBox "The default playback device is not muted."