What it does
ImageFilename takes imageID (an integer), and answers a string. imageID is the id of an Image object, the one LoadImage returned: it is how the call knows what to act on.
Syntax
ImageFilename(imageID integer) → stringParameters
| Name | Type |
|---|---|
| imageID | integer |
Every form returns
string
Example · generated
image = LoadImage("assets/sprite.png", 1)DO Print(ImageFilename(image)) Sync()LOOPLoadImage is there to give the call something to act on; ImageFilename is the line that matters. The DO … LOOP is not decoration: a classic BASIC program ends the moment it runs out of lines, and Sync() is what draws the frame.