Tip Property
The Tip property contains the text of the tooltip.
Syntax
[str=] SiteKiosk.WindowList.NotificationArea.Item(index).Tip
|
Possible Values
String that retrieves the text of the tooltip.
|
The property is read only.
Remarks
Examples
The following example shows the tooltip text of the first existing icon.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.WindowList.NotificationArea.Item(1).Tip);
</SCRIPT>
|
Applies to
SiteKiosk v5.5 (and later versions).
Back to top