Path Property



 
The Path property contains the path to the device within the operating system.


Syntax

    [str=] SiteKiosk.CDRecording.RecorderList.Item(index).Path
    
Possible Values
    String that retrieves the path.

    The property is read only.
Remarks
    This path should be used in conjunction with the display name to completely identify an available disc recorder. It is of the form "\Device\CdRomX".
Examples
    The following example displays the path to the first existing recorder within the operating system.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.CDRecording.RecorderList.Item(1).Path);
    </SCRIPT>
    

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

Back to top