CallbackMessage Property



 
The CallbackMessage property contains the callback message to send to the notify window.


Syntax

    [dword=] SiteKiosk.WindowList.NotificationArea.Item(index).
             CallbackMessage
Possible Values
    DWORD value that retrieves the callback message.

    The property is read only.
Remarks
    None.
Examples
    The following example shows the callback message of the first existing icon.

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

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

Back to top