Muted Property
The Muted property indicates if the mixer is currently muted.
Syntax
[bool=] SiteKiosk.Multimedia.Muted
|
Possible Values
Boolean value that specifies or retrieves whether the mixer is muted.
|
The property is read/write.
Remarks
Before using this property the first time, check the MutedAvail property to determine
if the mixer can be muted.
Examples
The following example determines if the mixer is currently muted and shows it in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Multimedia.Muted);
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top