HIDE keyword

Hides an object. To make it visible again, use SHOW.

Syntax

HIDE object, "effect", duration

Parameters

  • object: object to hide (required)
  • effect: possible effect
  • duration: a time delay in milliseconds (if not specified, default is 1000)

Example

HIDE myImage                     'The object is instantly hidden.
HIDE myImage, "fade-out" 'Hides the object in 1 second
HIDE myImage, "fade-out", 5000 'Hides the object in 5 seconds

Go back to list of Keywords.