home *** CD-ROM | disk | FTP | other *** search
- /* -------------------------------------------------------------*/
- /* Final Writer Arexx Macro - Envelope */
- /* ©1993 Mike Hartigan */
- /* */
- /* This macro will extract the current block and format and */
- /* print an envelope. */
- /* */
- /* -------------------------------------------------------------*/
-
- options results
- 'extract'
- data = RESULT
- 'new'
- address command WaitForPort FinalW.2
- address FinalW.2
- 'SizeWindow 680 300'
- 'PageSetup PageType Custom'
- 'PageSetup Orient Tall'
- 'PageSetup Width 9'
- 'PageSetup Height 4'
- 'SectionSetup Top 1.75'
- 'SectionSetup Inside 3'
- 'type ' || data
- 'SelectAll'
- /* 'font SWOLFonts/Serif/Thames' */
- 'fontsize 16'
- 'spacing OneHalf'
- 'ShowMessage 1 0 "Feed envelope into printer" "" "" "OK" "Cancel" ""'
- IF RESULT = 1 then
- DO
- 'PrintSetup Pages Range FromPage 1 ToPage 1'
- 'Print'
- END
- 'Close force'
-