OnPreparingBurn Event
Fires when the recorder prepares for writing.
Syntax
SiteKiosk.CDRecording.OnPreparingBurn = handler
|
Parameters
seconds |
Long value that contains the estimated seconds for preparing. |
Remarks
The object that caused the event can be referenced in the event function using "this".
Examples
The following example shows the estimated seconds when preparing for writing.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
var lk_CDRecording = SiteKiosk.CDRecording;
lk_CDRecording.OnPreparingBurn = OnPreparingBurn;
function OnPreparingBurn(seconds)
{
alert("Estimated seconds for preparing: " + seconds);
}
</SCRIPT>
|
Applies to
SiteKiosk v6.0 (and later versions).
Back to top