home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / util / edit / edworddemo / product-info < prev   
Encoding:
Text File  |  1995-10-23  |  1.8 KB  |  68 lines

  1. .name
  2. EdWordPro
  3. .author
  4. Martin Reddy
  5. .version
  6. 5.0
  7. .date
  8. 1994.07.08
  9. .description
  10. A fully featured and fully operational text editor which offers all the
  11. standard features of any decent editor as well as the ability to hold up to
  12. 15 documents in memory, a Macro facility, Keyword Text Casing (i.e. editor
  13. will automatically force keywords into upper/lower case etc); The ability
  14. to send AmigaDOS commands; 12 possible screen resolutions; A full ASCII
  15. table; Powerful search routines; Vertical Blocks; A built in calculator; A
  16. Word Count; The ability to sort a piece of text alphabetically .. and much
  17. more.  EdWord can be used to edit binary files as well as plain vanilla
  18. texts and as such becomes a competent filebased editor (like NewZap).
  19. .described-by
  20. Richard Fish
  21. .docs
  22. Documents/Changes
  23. Documents/Features
  24. Documents/Keys&Options
  25. Documents/ReadMe
  26. .short
  27. Fully featured text editor.
  28. .reference
  29. FreshFish-Dec93:New/util/edit/EdWord/
  30. 4.1 
  31. FrozenFish-Apr94:BBS/Dec93/util/edit/EdWord.lha
  32. 4.1 
  33. AmigaLibDisk924:EdWordPro/
  34. ?.? 
  35. FreshFish-Dec93:Old/AmigaLibDisks/Disks920-930/Disk924/EdWordPro/
  36. ?.? 
  37. FreshFish-Mar94:Old/Dec93/util/edit/EdWordPro/
  38. ?.? 
  39. FreshFish-Oct93:New/AmigaLibDisks/Disk924/EdWordPro/
  40. ?.? 
  41. FrozenFish-Apr94:BBS/ALib/d9xx/d924/EdWordPro.lha
  42. ?.? 
  43. GoldFish1-Apr94:BBS/d9xx/d924/EdWordPro.lha
  44. ?.? 
  45. GoldFish2-Apr94:d9xx/d924/EdWordPro/
  46. ?.?
  47. .aminet-dir
  48. util/edit
  49. .execute
  50. set choice `RequestChoice "EdWordDemo" "Please select an option" "View Doc" "Run Program" "Cancel"`
  51.  
  52. if $choice EQ "0"
  53.   quit 5
  54. endif
  55.  
  56. if $choice EQ "1"
  57.   set filechoice `RequestFile TITLE "Select File" PATTERN "~(#?.info)" DRAWER "Documents"`
  58.   set dirchoice `pathname $filechoice`
  59.   set filechoice `basename $filechoice`
  60.   failat 21
  61.   cd $dirchoice
  62.   MetaTool $filechoice TEXT
  63. endif
  64.  
  65. if $choice EQ "2"
  66.   EdWordPro
  67. endif
  68.