MicMuted Property



 
The MicMuted property indicates if the microphone mixer is currently muted.


Syntax

    [bool=] SiteKiosk.Multimedia.MicMuted
Possible Values
    Boolean value that specifies or retrieves whether
    the microphone mixer is muted.

    The property is read/write.
Remarks
    Before using this property the first time, check the MicMutedAvail property to determine
    if the microphone mixer can be muted.
Examples
    The following example determines if the microphone mixer is currently muted and shows it in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.Multimedia.MicMuted);
    </SCRIPT>

Applies to
    SiteKiosk v7.0 (and later versions).

Back to top