home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 19 / AACD19.BIN / AACD / Programming / AWNP / AWNP-Docs / Demos / Dict-Thesar.docs < prev    next >
Encoding:
Text File  |  2000-11-12  |  2.9 KB  |  134 lines

  1.  
  2.       Online Dictionary and Thesaurus
  3.       $VER: 2.5 (12.11.00)
  4.       by William H. M. Parker
  5.  
  6.  This script is a stand alone interface for the Dictionary and Thesaurus
  7. functions of the www.m-w.com site. Should the site be changed this script may
  8. fail to work.
  9.  
  10. INSTALTION
  11. ==========
  12.  
  13.  Requires ADOS 3.x and AWNPipe: (awnpipe is installed by the provided install
  14. script).
  15.  
  16. You MUST use the provided install script to install this utility.
  17.  
  18. GUI
  19. ===
  20.  
  21. Since the GUI has help bubbles I'll keep this simple.
  22.  
  23.  The GUI opens on AWebs screen if started by AWeb, else on the default public
  24. screen.
  25.  
  26.  You must be online to look up words.
  27.  
  28.  Enter a word in the WORD gadget to look it up.
  29.  
  30.  You can retreive 3 levels of information ...
  31.  
  32. FIRST = the main entry
  33. MAJOR = the major entries
  34. ALL   = all related entries
  35.  
  36.  You can look up words in either the DICTIONARY or THESAURUS.
  37.  
  38.  You can SAVE or CLEAR the log of information.
  39.  
  40.  You can only ABORT when retreiving in MAJOR or ALL mode.
  41.  
  42.  You can drag select to copy definitions from the GUI.
  43.  
  44. KEYS
  45. ====
  46.  
  47.  The up and down arrows will display the next or previous definition.
  48.  Shortcuts for some gadgets are also available.
  49.  
  50. MENUS
  51. =====
  52.  
  53. Project menu
  54. ------------
  55.  
  56. Window / snapshot - remember window position and current settings
  57.  
  58. Window / unsnapshot - forget window position and current settings
  59.  
  60. About - show version information
  61.  
  62. Bubble help - turn help on or off
  63.  
  64. Quit  - shut down the dictionary
  65.  
  66. Miami menu
  67. ----------
  68. (only shown if miami is detected)
  69.  
  70. Online - put Maimi online
  71.  
  72. Offline - take Miami offline
  73.  
  74. Status - show Miami status
  75.  
  76. Hide GUI - hide miami window
  77.  
  78. Show GUI - show maimi window
  79.  
  80. Quit - shut down miami
  81.  
  82. AREXX HOST
  83. ==========
  84.  
  85.  The host name is DICTTHESAR
  86.  
  87.  The following commands are supported...
  88.  
  89. Front - bring the GUI to front (uniconify if needed)
  90.  
  91. Iconify # - 0=uniconfy, 1=iconify
  92.  
  93. Quit  - Quit the program
  94.  
  95. Quit aweb - Quit only if running on awebs screen.
  96.  
  97. Level # - Set the lookup level 0=first, 1=major, 2=all
  98.   (result = previous level... so you may restore it when done)
  99.  
  100. Book # - Set the Book 0=dictionary, 1=thesaurus, 2=all
  101.   (result = previous book... so you may restore it when done)
  102.  
  103. Word newword - look up 'newword'
  104.   (result = retreived information, rc=5 not online, rc=6 return data too
  105.    long)
  106.  
  107. Clear - clear the log
  108.  
  109. Logging # - 0=do not log information, 1=log information
  110.   (result = previous logging mode)
  111.   (does not control information retreived manualy)
  112.  
  113. Save filename - save the log to 'filename'
  114.   (result = length of file)
  115.  
  116. Example (in a shell try)
  117.  
  118. rx "options results;address DICTTHESAR 'word test';say rc result"
  119.  
  120. DISTRIBUTION
  121. ============
  122.  
  123.  This software is CHILDWARE. I require whoever uses this program to make a
  124. donation to a beneficial organization working to help children. If you don't
  125. know of any, ask at your local post office and learn how to make a payment to
  126. UNICEF. The amount is up to you, but please do it!
  127.  
  128.  Please send any bug reports or comments to bill@amitrix.com.
  129.  
  130. Enjoy!
  131.  
  132. Bill
  133.  
  134.