home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga MA Magazine 1998 #3
/
amigamamagazinepolishissue1998.iso
/
bazy
/
muivideo
/
arexx
/
makelabel.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1996-01-01
|
997b
|
66 lines
/**
** MakeLabel.rexx
**
** Erstellt für die Cassette des aktuellen Films
** ein Label (beide Felder) mit Hilfe von FinalWriter
**
** $VER: MakeLabel.rexx V1.0 (01.01.96)
** Erstellt von Christoph Kirsch
**
**/
OPTIONS RESULTS
/* Maße der beiden Boxen in cm */
width1 = "10,2"
height1 = "2,0"
width2 = "7,8"
height2 = "2,1"
/* Schriftart & Schriftgröße */
fontname = "SoftSans"
fontsize = 24
/* Einstellungen vornehmen */
ADDRESS "FINALW.1"
SETMEASURE RULER
FONT fontname
FONTSIZE fontsize
/* Boxen zeichnen */
DRAWBOX 1 3 3 width1 height1
boxid1 = RESULT
DRAWBOX 1 3 6 width2 height2
boxid2 = RESULT
REDRAW
/* Text erfragen und zusammenstellen */
DRAWTEXTBLOCK 1 "3,5" "3,7" "Zeile 1"
textid1 = RESULT
DRAWTEXTBLOCK 1 "3,5" "4,7" "Das ist Zeile 2"
textid2 = RESULT
SELECTOBJECT textid1
SELECTOBJECT textid2 MULTIPLE
GROUP
/* Text einfügen */
DRAWTEXTBLOCK 1 "3,2" "7" "Zeil 1"
textid3 = RESULT
DRAWTEXTBLOCK 1 "3,2" "8,2" "Das ist Zeile 2"
textid4 = RESULT
REDRAW