home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-1998 - Modelworks Software
-
- /**
- @Tool: htmlHelp~displays a find file dialog to let you select
- your HTML winHelp file.
- @EndTool:
- @Summary: htmlHelp~sets the path to your HTML winHelp file
- */
-
- function DoCommand()
- {
- var file = chooseFile("Locate your winHelp Html help file", "Help file", "*.hlp");
-
- if (file)
- {
- var helpers = getMapFile("ApplicationHelpers");
-
- helpers.add("html-help", file);
- }
- }
-
- !!/Script
-