Programming instructions
Intermec Fingerprint v7.61 – Programmer’s Reference Manual Ed. 7 203
Chapter 2 Program Instructions
PRINTFEED (PF), cont.
Examples
Printing a single label with one line of text:
10 FONT "Swiss 721 BT"
20 PRTXT "Hello!"
30 PRINTFEED
RUN
Printing fi ve identical labels with one line of text:
10 FONT "Swiss 721 BT"
20 PRTXT "Hello!"
30 PRINTFEED 5
RUN
Printing fi ve labels using a FOR...NEXT loop. Note that formatting
parameters are placed inside the loop:
10 FOR A%=1 TO 5
20 FONT "Swiss 721 BT"
30 PRPOS 200, 100
40 DIR 3
50 ALIGN 5
60 PRTXT "Hello!"
70 PRINTFEED
80 NEXT A%
RUN
Printing of fi ve labels in the Intermec Direct Protocol, illustrating how
the TICKS value is updated between labels, provided a predefi ned layout
is used (1 TICK = 0.01 sec):
INPUT ON ↵
FORMAT INPUT "#","@","&" ↵
LAYOUT INPUT "tmp:LABEL1" ↵
FT "Swiss 721 BT" ↵
PP 100,100 ↵
PT TICKS ↵
PP 100,200 ↵
PT VAR1$ ↵
LAYOUT END ↵
LAYOUT RUN "tmp:LABEL1" ↵
#See how time fl ies&@ ↵
PF 5 ↵
INPUT OFF ↵