OnBurnComplete Event



 
Fires when the CD has been completely written.


Syntax

    SiteKiosk.CDRecording.OnBurnComplete = handler
Parameters
    status Long value that contains the status.
Remarks
    The status is negative if the CD has not been recorded successfully.

    The object that caused the event can be referenced in the event function using "this".
Examples
    The following example shows the status after burning in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    var lk_CDRecording = SiteKiosk.CDRecording;
    lk_CDRecording.OnBurnComplete = OnBurnComplete;
    function OnBurnComplete(status)
    {
       alert("Burn status: " + status);
    }
    </SCRIPT>
    

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

Back to top