CaptureAudio Property



 
The CaptureAudio property indicates if audio will be captured next time.


Syntax

    document.all["id_name"].CaptureAudio [=boolean]
    
Possible Values
    Boolean value. True if audio is to be captured, false if not.

    The property is read/write.
Remarks
    None.
Examples
    The following example shows the CaptureAudio property in an alert window.

    <object id="webcam" border="0" width="250" height="200"
    classid="clsid:54632F4A-055A-44C1-B1E6-EDB62AC2AC3E">
    </object>
    <script language="javascript">
    alert(webcam.CaptureAudio);
    </script>
    

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

Back to top