RecorderGUID Property



 
The RecorderGUID property contains the recorder's globally unique identifier (GUID).


Syntax

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

    The property is read only.
Remarks
    None.
Examples
    The following example shows the GUID of the first existing recorder in an alert window.

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

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

Back to top