RecordMode Property



 
The RecordMode property contains the record mode.


Syntax

    SiteKiosk.CDRecording.RecordMode [=long]
    
Possible Values
    Long value that specifies or retrieves the mode.

    The property is read/write.
Remarks
    Possible record modes are:

    0 : Data / Joliet
    1 : Audio / Redbook

    If this property is 1, the files of the AudioFiles collection will be recorded.
    If it is 0, the files of the RootDirectory object will be recorded.
Examples
    The following example shows the current record mode in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.CDRecording.RecordMode);
    </SCRIPT>
    

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

Back to top