home *** CD-ROM | disk | FTP | other *** search
/ World of A1200 / World_Of_A1200.iso / programs / system / printfiles / english / rexx / epsonlq.styles < prev    next >
Text File  |  1995-02-27  |  2KB  |  39 lines

  1. /* ************************************************************* */
  2. /* PrintFiles V1.4d Sep  2 1992  Preferences - Arexx File */
  3. /*  erzeugt am   Mittwoch,  2. September 1992  19:24:59 */
  4. /* ************************************************************* */
  5.  
  6. options results
  7.  
  8. /* ************************************************************* */
  9. /* Start Block */
  10. /* ************************************************************* */
  11. options results   /* Ergebnisse anfordern */
  12. if ~show(ports,'PRINTFILES')then do   /* Läuft PrintFiles schon ? */
  13.     address command 'printfiles'   /* wenn nicht, dann ein Startversuch */
  14. address command 'sys:rexxc/WaitForPort PRINTFILES'  /* noch ein bisschen abwarten */
  15. end   /*  */
  16. if ~(show(ports,'PRINTFILES')) then return 5   /* Rückgabewert 5 bei Mißerfolg */
  17. address  PRINTFILES  /* Kommandos an PrintFiles */
  18.  
  19. /* ************************************************************* */
  20. /* Text ersetzen Block */
  21. /* ************************************************************* */
  22. prefix '\'      /* Erstes Zeichen eines Textersatz - Kommandos */
  23. insertreplace 'standard _ESC[3"r_ESCq_NULL'      /* Textersatz-Kommando und Ersatztext */
  24. insertreplace 'prestige _ESC[3"r_ESCk_CTRL3'      /* Textersatz-Kommando und Ersatztext */
  25. insertreplace 'courier _ESC[3"r_ESCk_CTRL2'      /* Textersatz-Kommando und Ersatztext */
  26. insertreplace 'outline _ESC[3"r_ESCq_CTRL1'      /* Textersatz-Kommando und Ersatztext */
  27. insertreplace 'sserif _ESC[3"r_ESCk_CTRL1'      /* Textersatz-Kommando und Ersatztext */
  28. insertreplace 'script _ESC[3"r_ESCk_CTRL4'      /* Textersatz-Kommando und Ersatztext */
  29. insertreplace 'orator _ESC[3"r_ESCk_CTRL7'      /* Textersatz-Kommando und Ersatztext */
  30. insertreplace 'shadow _ESC[3"r_ESCq_CTRL2'      /* Textersatz-Kommando und Ersatztext */
  31. insertreplace 'roman _ESC[3"r_ESCk_NULL'      /* Textersatz-Kommando und Ersatztext */
  32. insertreplace 'kombi _ESC[3"r_ESCq_CTRL3'      /* Textersatz-Kommando und Ersatztext */
  33. insertreplace 'ocrb _ESC[3"r_ESCk_CTRL5'      /* Textersatz-Kommando und Ersatztext */
  34. replace on       /* Mit Textersetzungen */
  35.  
  36. /* ************************************************************* */
  37. /* *** Ende der Datei *** */
  38. /* ************************************************************* */
  39.