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

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