home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / pms_126.zip / viewer.txt < prev    next >
Text File  |  2002-03-22  |  976b  |  26 lines

  1. PMStripper and Netscape 4.xx
  2.  
  3. I used the following REXX CMD file to install PMStripper
  4. as the source viewer in Netscape 4.xx
  5.  
  6. My boot drive is L: and Netscape is installed on drive
  7. N: in the directory \NETSCAPE.  PMStripper is installed
  8. on drive N: in directory \PMSTRIPPER.
  9.  
  10. Remember the the REXX CMD file MUST start with a comment line
  11. and watch for line wraps inserted by your browser or editor.
  12.  
  13. /* IniName points to the location of your NSCP.INI */
  14.  
  15. IniName = 'L:\OS2\NSCP.INI'
  16. call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
  17. call SysLoadFuncs
  18.  
  19. /* Add Registry entries for View Source */
  20. call SysIni IniName, 'Registry', '\HKEY_CLASSES_ROOT\viewsource','URL:View Source'
  21. call SysIni IniName, 'Registry', '\HKEY_CLASSES_ROOT\viewsource\shell',0
  22. call SysIni IniName, 'Registry', '\HKEY_CLASSES_ROOT\viewsource\shell\open',0
  23. call SysIni IniName, 'Registry', '\HKEY_CLASSES_ROOT\viewsource\shell\open\command','N:\PMSTRIPPER\PMSTRIP.EXE'
  24.  
  25.  
  26.