Info Property
The Info property contains the text of the balloon.
Syntax
[str=] SiteKiosk.WindowList.NotificationArea.Item(index).Info
|
Possible Values
String that retrieves the text of the balloon.
|
The property is read only.
Remarks
A balloon containing information text will be displayed under Windows 2000/XP if balloon tip has been enabled in the SiteKiosk configuration.
Examples
The following example shows the balloon text of the first existing icon in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.WindowList.NotificationArea.Item(1).Info);
</SCRIPT>
|
Applies to
SiteKiosk v5.5 (and later versions).
Back to top