home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 2: PC / frozenfish_august_1995.bin / bbs / d09xx / d0957.lha / PARex / PARexScripts / RemapCTRL.pxs < prev    next >
Text File  |  1993-11-24  |  1KB  |  31 lines

  1. ; PARex v3.xx script: "PAREX:RemapCTRL.pxs"
  2. ; ~~~~~~~~~~~~~~~~~~~  ~~~~~~~~~~~~~~~~~~~
  3. ; Update: 13-Nov-93
  4.  
  5. ; $VER: RemapCTRL.pxs 39.001 (13.11.93) PARex v3.xx script for RemapCTRL.
  6.  
  7.                                           ; AmigaDOS v1.x->v2.x    AmigaDOS v2.x->v1.x
  8.  
  9.   REPL  \e[31m   BY  \e[32m CASE FIXCASE  ; white foreground       black foreground
  10.   REPL  \e[32m   BY  \e[31m CASE FIXCASE  ; black     "            white     "
  11.   REPL  \e[41m   BY  \e[42m CASE FIXCASE  ; white background       black background
  12.   REPL  \e[42m   BY  \e[41m CASE FIXCASE  ; black     "            white     "
  13.  
  14.   EXITPXS  ; just let PARex know it can stop reading the script from here...
  15.  
  16. ; --Comments--
  17.  
  18.   | Conversion table:              |
  19.   |----------|----------|----------| 
  20.   | CTRL:    | OS v1.xx | OS v2.xx |  
  21.   |----------|----------|----------|
  22.   | \e[31m   | white fg | black fg |
  23.   |----------|----------|----------|
  24.   | \e[32m   | black fg | white fg |
  25.   |----------|----------|----------|
  26.   | \e[41m   | white bg | black bg |
  27.   |----------|----------|----------|
  28.   | \e[42m   | black fg | white bg |
  29.   |----------|----------|----------|
  30.  
  31.