AudioFiles Collection
The AudioFiles collection contains a list of selected audio files to write to a CD.
Members Table
The following table lists the members provided by the AudioFiles collection.
|
Properties |
Description |
Count |
Contains the number of selected audio files. |
|
Methods |
Description |
Item |
Returns one item of the collection. |
|
Remarks
This collection is available through the object CDRecording.
Use the AudioFiles collection to receive information about the audio files added by the AddAudioFile method.
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 number of audio files to write to a CD.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.CDRecording.AudioFiles.Count);
</SCRIPT>
|
Applies to
SiteKiosk v6.0 (and later versions).
Back to top