Programming instructions

Intermec Fingerprint v7.61 Programmers Reference Manual Ed. 7 121
Chapter 2 Program Instructions
IMAGENAME$
Field of Application
Function returning the names of the images stored in the printers
memory.
Syntax IMAGENAME$(<nexp>)
<nexp> is the result of the expression which is either false or true:
False (0) indicates rst image.
True (0) indicates next image.
Remarks
This function can be used to produce a list of all images (another method is
to use the IMAGES statement).
Image les downloaded by means of a TRANSFER KERMIT statement
will not be returned, since the software will regard them as les rather
than images.
IMAGENAME$(0) produces the rst name in the memory.
IMAGENAME$(0) produces next name. Can be repeated as long there
are any image names left.
Example
Use a program like this to list all image names:
10 A$=IMAGENAME$(0)
20 IF A$=""THEN END
30 PRINT A$
40 A$=IMAGENAME$(-1)
50 GOTO 20
RUN
yields for example:
CHESS2X2.1
CHESS4X4.1
DIAMONDS.1
GLOBE.1
Ok