home *** CD-ROM | disk | FTP | other *** search
/ c't freeware shareware 1999 February / CT_SW9902.ISO / pc / software / pda / anwend / inscribe.exe / INSCRIBE.load < prev    next >
Text File  |  1998-04-23  |  2KB  |  48 lines

  1. // The following regKeyCreate commands create the following registry keys:
  2. // - HKEY_CLASSES_ROOT\.clo
  3. // - HKEY_CLASSES_ROOT\clofile\DefaultIcon
  4. // - HKEY_CLASSES_ROOT\clofile\ShellOpenCommand
  5. // These keys are used to associate .clo files with the InScribe application and gives
  6. // them a document icon.
  7. regKeyCreate HKEY_CLASSES_ROOT .clo 1
  8. regKeyCreate HKEY_CLASSES_ROOT clofile 1
  9. regKeyCreate HKEY_CLASSES_ROOT clofile\DefaultIcon 1
  10. // regKeyCreate HKEY_CLASSES_ROOT clofile\Shell\Open\Command 1
  11.  
  12. // The following regString commands create the data in the above keys that are
  13. // required to complete the associations.
  14. regString HKEY_CLASSES_ROOT .clo 1 Default "clofile"
  15.  
  16. regString HKEY_CLASSES_ROOT clofile 1 Default "Character Layout Document"
  17. regString HKEY_CLASSES_ROOT clofile\DefaultIcon 1 Default "%P\InScribe.exe,-2001"
  18. // regString HKEY_CLASSES_ROOT clofile\Shell\Open\Command 1 Default "\"%P\InScribe.exe\" %1"
  19.  
  20. // adds a version #
  21. regString ~ ~ 1 VersionNumber "1.2T"
  22. regInt ~ ~ 0 XYZZY 1
  23.  
  24. // copy the files
  25. copy . . InScribe.exe
  26. copy . \Windows "InScribe Help.htc"
  27. copy . \Windows is_chars.htp
  28. copy . \Windows is_howto.htp
  29. copy . \Windows is_imp.htp
  30. copy . \Windows is_opts.htp
  31. copy . \Windows is_tips.htp
  32. copy . \Windows is_purchase.htp
  33. copy . . "Alphabetic (7x7).clo"
  34. copy . . "Alphabetic (8x6).clo"
  35. copy . . "Optimized 1 (8x6).clo"
  36. copy . . "Optimized 2 (8x6).clo"
  37. copy . . "Optimized 1 Variation (8x6).clo"
  38. copy . . "Two Spaces (7x7).clo"
  39. copy . . "Vowels Across 1 (8x6).clo"
  40. copy . . "Vowels Across 2 (8x6).clo"
  41.  
  42. // create a shell link
  43. createShortcut \Windows\Desktop InScribe.lnk . InScribe.exe
  44. createShortcut \Windows\Programs InScribe.lnk . InScribe.exe
  45.  
  46. exit
  47.  
  48.