OnMicVolumeChanged Event



 
Fires when the microphone volume has been changed.


Syntax

    SiteKiosk.Keyboard.OnMicVolumeChanged = handler
Parameters
    micvolume Float value value between 0 and 1 that
    retrieves the current microphone volume.
Remarks
    The object that caused the event can be referenced in the event function using "this".
Examples
    The following example shows the current microphone volume when it has been changed.

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

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

Back to top