IncreaseRecVolume Method



 
The IncreaseRecVolume method increases the recording volume by a specified amount.


Syntax

    SiteKiosk.Multimedia.IncreaseRecVolume(amount)
Parameters
    amount Float value between 0 and 1 that specifies the
    recording volume increase.
Return Value
    None.
Remarks
    None.
Examples
    The following example increases the recording volume by 10 percent.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteKiosk.Multimedia.IncreaseRecVolume(0.1);
    </SCRIPT>

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

Back to top