home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 67 / IOPROG_67A.ISO / soft / Tools / mwsppv4.exe / HTMLHELP.SCRIPT < prev    next >
Encoding:
Text File  |  1998-02-13  |  484 b   |  24 lines

  1. !!Script
  2. // Copyright ⌐ 1997-1998 - Modelworks Software
  3.  
  4. /**
  5. @Tool: htmlHelp~displays a find file dialog to let you select 
  6. your HTML winHelp file. 
  7. @EndTool: 
  8. @Summary: htmlHelp~sets the path to your HTML winHelp file
  9. */
  10.  
  11. function DoCommand()
  12. {
  13.   var file = chooseFile("Locate your winHelp Html help file", "Help file", "*.hlp");
  14.   
  15.   if (file)
  16.   {
  17.     var helpers = getMapFile("ApplicationHelpers");
  18.      
  19.     helpers.add("html-help", file);
  20.   }
  21. }
  22.  
  23. !!/Script
  24.