home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / comm / mtlk0920.lha / ASI / help / MTalk / _codes < prev    next >
Text File  |  1992-08-02  |  1KB  |  48 lines

  1.  
  2. How To Use Basic Control Codes
  3. ==============================
  4.  
  5. NOTE: 1. Codes are only supported with the "*" options in
  6.          preferences (/pref).
  7.       2. The following code definitions are only a sub-set of
  8.          ASCII/ANSI codes.  Consult your ASCII/ANSI tables for
  9.          further explanations.
  10.  
  11. The control code introducer is "^".
  12. The control-sequence-introducer (CSI) is "^[[".
  13.  
  14. ASCII Control Codes
  15. -------------------
  16. ^G  Bell
  17. ^H  Back Space
  18. ^I  Horizontal Tab
  19. ^J  Line Feed
  20. ^K  Vertical Tab
  21. ^L  Form Feed
  22. ^M  Carriage Return
  23. ^[  Escape
  24.  
  25. ANSI Control Codes
  26. ------------------
  27. <text style> =
  28. 0 Plain text                    1 Boldface
  29. 2 faint (secondary color)       3 Italic
  30. 4 Underscore                    7 Reversed character/cell colors
  31. 8 Concealed mode
  32.  
  33. <character color> =
  34. 30-37 System colors 0-7 for character color.
  35. 39    Reset to default character color
  36.  
  37. <character cell color> =
  38. 40-47 System colors 0-7 for character cell color.
  39.  
  40. Examples
  41. --------
  42. ^[[0m         -- Plain text
  43. ^[[35;44;1;3mHello^G^[[0m -- Set system color 5, cell color 4,
  44.                              boldface, and italic.
  45.                              Display "Hello" followed by a bell.
  46.                              Result = Hello
  47.  
  48.