OnMicMuteChanged Event



 
Fires when the microphone mixer has been muted or unmuted.


Syntax

    SiteKiosk.Keyboard.OnMicMuteChanged = handler
Parameters
    muted Boolean value that indicates if
    the microphone mixer is muted.
Remarks
    The object that caused the event can be referenced in the event function using "this".
Examples
    The following example shows the muted status when it has been changed.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteKiosk.Keyboard.OnMicMuteChanged = OnMicMuteChanged;
    function OnMicMuteChanged(muted)
    {
       alert(muted);
    }
    </SCRIPT>

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

Back to top