home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 426.lha / ClipFile_v1.02 / ReadMe < prev    next >
Text File  |  1990-10-07  |  3KB  |  85 lines

  1.  
  2.  
  3.                          CF (ClipFile) version 1.02
  4.                          Written by David N. Junod
  5.  
  6.  
  7. This little utility provides a number of usefull functions for accessing the
  8. clipboard.
  9.  
  10.                                       
  11. -h        Display the help message.
  12.  
  13. -u <unit>    Clipboard unit, ranging from 0 to 255.
  14.  
  15. -r <file>    Place the contents of the named file into the clipboard.
  16.         Converts ASCII to FTXT form.
  17.  
  18. -w <file>    Place the contents of the clipboard into the named file.
  19.  
  20. -f        Don't convert FTXT form to ASCII, when writing from the
  21.         clipboard to a file.
  22.  
  23. -q        Display the contents type (IFF form type) or 'empty' if the
  24.         clipboard is empty.
  25.  
  26. -c        Clear a clipboard unit (set it to 'empty').
  27.  
  28. -n <file>    Watch the named file and place it into the clipboard
  29.         whenever it changes.  Must send a break signal to shutdown
  30.         the process.  This options uses the file notification
  31.         feature of AmigaOS 2.0.
  32.  
  33.  
  34.                                  Test Files
  35.  
  36. The archive also contains a number of files usefull for testing the
  37. clipboard routines of applications that support it.
  38.  
  39. test.ilbm    Contains a nice IFF ILBM (brush) to be loaded into the
  40.         clipboard to see if applications even test to see if the
  41.         contents are FTXT when they require it.
  42.  
  43. test.ftxt    Contains a nice IFF FTXT form with an AUTH and NAME chunk
  44.         before the CHRS chunk.  Usefull for testing to see if the
  45.         application seeks to the CHRS chunk.
  46.  
  47. test.ftxt.no    Contains an IFF FTXT form with an AUTH and NAME chunk, but
  48.         no CHRS chunk.
  49.  
  50. test.ftxt.odd    Contains an IFF FTXT form with an odd length AUTH and NAME
  51.         chunk (with proper padding) before the CHRS chunk.  Make
  52.         sure the application seeks properly.
  53.  
  54.  
  55.                              Other Useful Tools
  56.  
  57. Another extremely usefull tool for clipboard testing is the SIFT command
  58. that comes with the iffparse.library example suite (DevCon '90 disks).
  59. Just type in 'SIFT -c' for the utility to run an IFF check on the contents
  60. of the clipboard.
  61.  
  62.  
  63.                                   Updates
  64.                                       
  65. Changes for version 1.01 (8-Sept-90)
  66.  
  67.   o  Unit range checking changed from 0-9 to 0-255 (thought I'd seen
  68.      somewhere that only ten clipboard units were allowed).
  69.  
  70.   o  Seeks correctly through odd length (but still padded) chunks.
  71.  
  72. Changes for version 1.02 (10-Sept-90)
  73.  
  74.   o  Added the clear clipboard option.
  75.  
  76.   o  Allows the clipboard to be cleared by reading in an empty file.
  77.  
  78.   o  Lowered the size of cbuff to five long words.
  79.  
  80.   o  Added ClipID, Author and Project information to Buffer structure (of
  81.      the new fields, only ClipID is being maintained).
  82.  
  83.   o  Added ClipID to the query option.
  84.  
  85.