IMAGE keyword
Displays an image on screen.
Syntax
IMAGE "key", (x, y), "effect", effectvalue
Parameters
- key: image key to display (required)
- x: integer of horizontal position
- y: integer of vertical position
- effect: possible effect
- effectvalue: integer value to customize the effect
Example
IMAGE "sun"
IMAGE "sun", (300, 200)
IMAGE "sun", (300, 200), "fade-in"
IMAGE "sun", (300, 200), "fade-in", 4000
DIM myImage AS IMAGE
myImage = IMAGE "sun"
Go back to list of Keywords.