OnRecMuteChanged Event



 
Fires when the recoding mixer has been muted or unmuted.


Syntax

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

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

Back to top