Text Property
The Text property contains the text of the logfile message.
Syntax
[str=] SiteKiosk.Logfile.LastMessages.Item(index).Text
|
Possible Values
String that retrieves the text.
|
The property is read only.
Remarks
Examples
The following example shows the text of the first message in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Logfile.LastMessages.Item(1).Text);
</SCRIPT>
|
Applies to
SiteKiosk v6.0 (and later versions).
Back to top