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