OnRecVolumeChanged Event



 
Fires when the recording volume has been changed.


Syntax

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

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

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

Back to top