DecreaseVolume Method



 
The DecreaseVolume method decreases the volume by a specified amount.


Syntax

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

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

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

Back to top