MicVolume Property



 
The MicVolume property contains the current microphone volume.


Syntax

    [flt=] SiteKiosk.Multimedia.MicVolume
Possible Values
    Float value between 0 and 1 that
    specifies or retrieves the microphone volume.

    The property is read/write.
Remarks
    Before using this property the first time, check the MicVolumeAvail property to determine whether the microphone volume can be modified.
Examples
    The following example shows the current microphone volume in an alert window.

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

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

Back to top