Programming instructions

Intermec Fingerprint v7.61 Programmers Reference Manual Ed. 756
Chapter 2 Program Instructions
CUT
Field of Application
Statement activating an optional cutter.
Syntax CUT
Remarks
Obviously, this statement only works with printers tted with a cutter. A
cutter is normally used to cut non-adhesive paper strip or to cut through the
liner between self-adhesive labels.
When a PRINTFEED statement is executed, the printer feeds out a certain
amount of the media according to the printers setup in regard of startadjust
and stopadjust, as explained in its Installation & Operation manual. Then
the cutter can be activated by a CUT statement.
Example
This program orders the printer to print a text and then cut off the media:
10 PRPOS 250,250
20 DIR 1
30 ALIGN 4
40 FONT "Swiss 721 BT"
50 PRTXT "Hello everybody!"
60 PRINTFEED
70 CUT
RUN