OnMuteChanged Event



 
Fires when the mixer has been muted or unmuted.


Syntax

    SiteKiosk.Keyboard.OnMuteChanged = handler
Parameters
    muted Boolean value that indicates if
    the 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.OnMuteChanged = OnMuteChanged;
    function OnMuteChanged(muted)
    {
       alert(muted);
    }
    </SCRIPT>

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

Back to top