GROUP keyword

Defines a group of objects. Objects keep their relative positions (add all your objects with position (0,0) in mind). Commands like MOVE or HIDE can be applied on the group.

NOTE: the order you specify objects in the group will change their order of display. An object can be only added to one group, otherwise it will be part of the last group added.

Syntax

GROUP object1, object2, ..., objectN

Parameters

  • object1: object (required)
  • object2: object (required)
  • objectN: object (required)

Example

DIM g1 AS GROUP
g1 = GROUP myImage1, myImage2, myImage3, myText, myButton
MOVE g1, (200, 450)

Go back to list of Keywords.