DecreaseMicVolume Method
The DecreaseMicVolume method decreases the microphone volume by a specified amount.
Syntax
SiteKiosk.Multimedia.DecreaseMicVolume(amount)
|
Parameters
amount |
Float value between 0 and 1 that specifies the
microphone volume decrease. |
Return Value
Remarks
Examples
The following example decreases the microphone volume by 10 percent.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteKiosk.Multimedia.DecreaseMicVolume(0.1);
</SCRIPT>
|
Applies to
SiteKiosk v7.0 (and later versions).
Back to top