UpdateRecorderState Method



 
The UpdateRecorderState method updates the recorder state.


Syntax

    SiteKiosk.CDRecording.UpdateRecorderState()
    
Return Value
    None.
Remarks
    Use the RecorderState property to receive the current recorder state.
Examples
    The following example updates the recorder state and shows it in an alert window.

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

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

Back to top