CDRecorder Object
The CDRecorder object provides information about a CD recorder.
Members Table
The following table lists the members provided by the CDRecorder object.
|
Properties |
Description |
BasePnPID |
Manufacturer, product ID, and revision information. |
CanRewrite |
If the recorder is able to rewrite a CD-RW. |
MaxWriteSpeed |
Maximum write speed. |
Path |
Path to the device within the operating system. |
ProductID |
Product ID of the recorder. |
RecorderGUID |
The recorder's globally unique identifier (GUID). |
Revision |
Recorder revision. |
VendorID |
ID of the vendor. |
|
Remarks
This object is returned by the Item method.
Use the CDRecorder object to receive information about a CD recorder.
Note that the path of a file using SiteKiosk objects must be allowed in the
SiteKiosk configuration (Security -> Access -> URL's With Script Permission)
if it is not a browser skin file.
Examples
The following example shows the maximum write speed of an available CD recorder in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
if (SiteKiosk.CDRecording.RecorderList.Count > 0)
{
alert(SiteKiosk.CDRecording.RecorderList.Item(1).MaxWriteSpeed);
}
else
{
alert("Could not find a CD recorder");
}
</SCRIPT>
|
Applies to
SiteKiosk v6.0 (and later versions).
Back to top