home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of A1200
/
World_Of_A1200.iso
/
programs
/
system
/
printfiles
/
english
/
rexx
/
epsonlq.styles
< prev
next >
Wrap
Text File
|
1995-02-27
|
2KB
|
39 lines
/* ************************************************************* */
/* PrintFiles V1.4d Sep 2 1992 Preferences - Arexx File */
/* erzeugt am Mittwoch, 2. September 1992 19:24:59 */
/* ************************************************************* */
options results
/* ************************************************************* */
/* Start Block */
/* ************************************************************* */
options results /* Ergebnisse anfordern */
if ~show(ports,'PRINTFILES')then do /* Läuft PrintFiles schon ? */
address command 'printfiles' /* wenn nicht, dann ein Startversuch */
address command 'sys:rexxc/WaitForPort PRINTFILES' /* noch ein bisschen abwarten */
end /* */
if ~(show(ports,'PRINTFILES')) then return 5 /* Rückgabewert 5 bei Mißerfolg */
address PRINTFILES /* Kommandos an PrintFiles */
/* ************************************************************* */
/* Text ersetzen Block */
/* ************************************************************* */
prefix '\' /* Erstes Zeichen eines Textersatz - Kommandos */
insertreplace 'standard _ESC[3"r_ESCq_NULL' /* Textersatz-Kommando und Ersatztext */
insertreplace 'prestige _ESC[3"r_ESCk_CTRL3' /* Textersatz-Kommando und Ersatztext */
insertreplace 'courier _ESC[3"r_ESCk_CTRL2' /* Textersatz-Kommando und Ersatztext */
insertreplace 'outline _ESC[3"r_ESCq_CTRL1' /* Textersatz-Kommando und Ersatztext */
insertreplace 'sserif _ESC[3"r_ESCk_CTRL1' /* Textersatz-Kommando und Ersatztext */
insertreplace 'script _ESC[3"r_ESCk_CTRL4' /* Textersatz-Kommando und Ersatztext */
insertreplace 'orator _ESC[3"r_ESCk_CTRL7' /* Textersatz-Kommando und Ersatztext */
insertreplace 'shadow _ESC[3"r_ESCq_CTRL2' /* Textersatz-Kommando und Ersatztext */
insertreplace 'roman _ESC[3"r_ESCk_NULL' /* Textersatz-Kommando und Ersatztext */
insertreplace 'kombi _ESC[3"r_ESCq_CTRL3' /* Textersatz-Kommando und Ersatztext */
insertreplace 'ocrb _ESC[3"r_ESCk_CTRL5' /* Textersatz-Kommando und Ersatztext */
replace on /* Mit Textersetzungen */
/* ************************************************************* */
/* *** Ende der Datei *** */
/* ************************************************************* */