OnStarted Event
Fires when the server has been started.
Syntax
SiteCafe.Server.OnStarted = handler
|
Remarks
The object that caused the event can be referenced in the event function using "this".
Examples
The following example displays an alert window when the server has been started.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteCafe.Server.OnStarted = OnStarted;
function OnStarted()
{
alert("Server has been started");
}
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top