Item Method



 
The Item method returns one item of the collection.


Syntax

    [obj=] SiteKiosk.WindowList.NotificationArea.Item(index)
    
Parameters
    index Long value that contains the item number to return.
Return Value Remarks
    Collection-index values are 1-based.
Examples
    The following example shows the ID of the first notify icon.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.WindowList.NotificationArea.Item(1).ID);
    </SCRIPT>
    

Applies to
    SiteKiosk v5.5 (and later versions).

Back to top