home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / coders / jËzyki_programowania / oberon / tool / asciicoder.tool (.txt) < prev    next >
Oberon Text  |  1977-12-31  |  1KB  |  30 lines

  1. Syntax10.Scn.Fnt
  2. ParcElems
  3. Alloc
  4. Syntax10i.Scn.Fnt
  5. AsciiCoder can be used to encode and decode any text (including
  6. elements) visible on screen as well as to encode and decode arbitrary
  7. files. The code is fully ascii and can be used for mailing. The coded
  8. texts and files are always represented as text in a viewer. Hence, the
  9. CodeFiles, CodeText, and DecodeText commands can not do any damage to
  10. other data. Of course, DecodeFiles will overwrite existing
  11. files of the same name, but .Bak files are created.
  12. AsciiCoder.CodeText *    encodes text of marked viewer
  13. AsciiCoder.CodeText @    encodes most recent selected text
  14. AsciiCoder.DecodeText @    decodes from beginning of the most
  15.     recent selection as text
  16. AsciiCoder.CodeFiles ^    encodes all files of the list beginning at
  17.     the most recent selection
  18. AsciiCoder.CodeFiles ~    encodes all files of the list
  19. AsciiCoder.DecodeFiles @    decodes from beginning of the most
  20.     recent selection and writes to files. The
  21.     file names have to preceed the code.
  22. Insertion of an '%' between the command name and the first parameter
  23. turns on compression resp. expansion of the coded data:
  24. AsciiCoder.CodeText % *
  25. AsciiCoder.CodeText % @
  26. AsciiCoder.DecodeText % @
  27. AsciiCoder.CodeFiles % ^
  28. AsciiCoder.CodeFiles % ~
  29. AsciiCoder.DecodeFiles % @
  30.