IMAGE keyword

Displays an image on screen.

Syntax

IMAGE "key", (posX, posY), "effect", effectvalue

Parameters

  • key: image key to display (required)
  • posX: integer of horizontal position
  • posY: 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.