OpenHelp Method



 
The OpenHelp method opens a help file.


Syntax

    SiteCafe.UserInterface.OpenHelp(helpfile, topic)
    
Parameters
    helpfile String that specifies the path to the helpfile.
    topic String that specifies the topic.
Return Value
    None.
Remarks
    The help file must be a .chm file.
Examples
    The following example opens a helpfile.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteCafe.UserInterface.OpenHelp("c:/helpfile.chm", "Topic");
    </SCRIPT>
    

Applies to
    SiteKiosk v6.2 (and later versions).

Back to top