UpdateStatus Method
The UpdateStatus method updates the appearance of the displayed icon.
Syntax
document.all["id_name"].UpdateStatus(obj)
|
Parameters
Return Value
Remarks
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