OnJobComplete Event



 
Fires when a job is complete.


Syntax

    SiteKiosk.CDRecording.OnJobComplete = handler
Parameters
    success Boolean value that indicates whether the job was successfull.
Remarks
    The object that caused the event can be referenced in the event function using "this".
Examples
    The following example shows the success status when a job is complete.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    var lk_CDRecording = SiteKiosk.CDRecording;
    lk_CDRecording.OnJobComplete = OnJobComplete;
    function OnJobComplete(success)
    {
       alert("Success status of completed job: " + success);
    }
    </SCRIPT>
    

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

Back to top