TrayIcon ActiveX Control
This control displays an icon of the taskbar notification area.
Members Table
The following table lists the members provided by the TrayIcon ActiveX control.
|
Methods |
Description |
UpdateStatus |
Updates the appearance of the displayed icon. |
|
Remarks
This ActiveX control is available in the form of scripts that can be used in combination with SiteKiosk.
Use the TrayIcon control to display an icon of the taskbar notification area.
To initialize the ActiveX control use the OBJECT tag and, in particular, the classID to identify the control.
CLSID
37EE2A08-DA99-43DD-B682-1500F9259733
Examples
The following example displays every icon that will be added to the taskbar notification area.
<html>
<body>
<OBJECT ID="TrayIcon" width="16" height="16"
CLASSID="CLSID:37EE2A08-DA99-43DD-B682-1500F9259733">
</OBJECT>
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteKiosk.WindowList.NotificationArea.OnInserted = OnInserted;
function OnInserted(iconinfo)
{
TrayIcon.UpdateStatus(iconinfo);
}
</SCRIPT>
</body>
</html>
|
Applies to
SiteKiosk v5.5 (and later versions).
Back to top