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