home *** CD-ROM | disk | FTP | other *** search
- /* ************************************************************* */
- /* PrintFiles V1.4e Rev 48 Mar 27 1993 Preferences - Arexx File */
- /* generated Sunday, April 11, 1993 14:17:56 */
- /* ************************************************************* */
-
-
- /* ************************************************************* */
- /* Start Block */
- /* ************************************************************* */
- options results /* request results */
- if ~show(ports,'PRINTFILES')then do /* PrintFiles already running ? */
- address command 'printfiles' /* if not, attempt to launch it */
- address command 'sys:rexxc/WaitForPort PRINTFILES' /* wait...wait...wait */
- end /* */
- if ~(show(ports,'PRINTFILES')) then return 5 /* return 5 if we couldn't find PrintFiles */
- address PRINTFILES /* Kommandos an PrintFiles */
-
-
- /* ************************************************************* */
- /* Extras & Arexx-Prefs Block */
- /* ************************************************************* */
- icon ignore /* ignore Icons */
- prog ignore /* ignore programs */
- insertdir 'SYS:' /* default path of Filerequester */
- savedir 'df2:printfiles/english/rexx' /* default path of SaveRequester */
- saveprefs '-cFWsRPiLdeha' /* Saveprefs flags */
- /* With Comments */
- /* Without Filenames */
- /* Without OpenWindow-command */
- /* With Startup Code */
- /* Without Reset-command */
- /* Without Print-command */
- /* With Icon */
- /* Without Head/Footline */
- /* With Printer Prefs */
- /* With Extras & AREXX Prefs*/
- /* With Handler window prefs */
- /* With Text Replacement */
-
- /* ************************************************************* */
- /* Handler Block */
- /* ************************************************************* */
- pass text 'intern' /* process text files intern */
- pass prog 'intern' /* process executables intern */
- pass icon 'intern' /* process Icon files intern */
- pass iff 'intern' /* process IFF-Files intern */
-
- output 'printer' /* Output to the printer device */
- header on /* Send Control Codes to the Printer */
-
- /* ************************************************************* */
- /* Printer Prefs Block */
- /* ************************************************************* */
- copies 1 /* number of copies */
- 12cpi /* set pitch to elite */
- lq /* set print quality to nlq */
- page off /* print page count */
- time off /* print time */
- filename off /* print filename */
- line off /* print linennumbers */
- date off /* print date */
- replace on /* with text replacements */
- 6li /* set 1/6 spacing */
- ff off /* print FormFeed after each file */
- fpage on /* print additional cr after each line */
- lmargin 1 /* set right margin */
- rmargin 79 /* set left margin */
- lines 61 /* number of lines per page */
-
- /* ************************************************************* */
- /* Text Replace Block */
- /* ************************************************************* */
- prefix '\' /* first character of replacement */
- insertreplace 'underline _ESC[4m' /* replacement command and substitution */
- insertreplace 'propoff _ESC[1p' /* replacement command and substitution */
- insertreplace 'normal _ESC[0m' /* replacement command and substitution */
- insertreplace 'propon _ESC[2p' /* replacement command and substitution */
- insertreplace 'italic _ESC[3m' /* replacement command and substitution */
- insertreplace 'roman _ESC[3"r_ESCk_NULL' /* replacement command and substitution */
- insertreplace 'datew _WDayE, MNameE _Day, 19_Year' /* replacement command and substitution */
- insertreplace 'bold _ESC[1m' /* replacement command and substitution */
- insertreplace 'date _MNameE _Day, 19_Year' /* replacement command and substitution */
- insertreplace 'time _H12:_Min _AP' /* replacement command and substitution */
- replace on /* with text replacements */
-
- /* ************************************************************* */
- /* *** End of File *** */
- /* ************************************************************* */
-