What it does
NotificationImage takes iImageIndex (an integer), and returns nothing. iImageIndex is the id of an Image object, the one LoadImage returned: it is how the call knows what to act on.
Syntax
NotificationImage(iImageIndex integer)Parameters
| Name | Type |
|---|---|
| iImageIndex | integer |
Every form returns
nothing
Example · generated
image = LoadImage("assets/sprite.png", 1)NotificationImage(image)DO Sync()LOOPLoadImage is there to give the call something to act on; NotificationImage 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.