RecorderList Collection
The RecorderList collection provides information about the available CD recorders.
Members Table
The following table lists the members provided by the RecorderList collection.
|
Properties |
Description |
Count |
Contains the number of available CD recorders. |
|
Methods |
Description |
Item |
Returns one item of the collection. |
|
Remarks
This collection is available through the object CDRecording.
Use the RecorderList collection 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