  STATICTEXT #handle, "string", xpos, ypos, wide, high
        or
  STATICTEXT #handle.ext, "string", xpos, ypos, wide, high

Statictext lets you place instructions or labels into your windows.  This is most often used with a textbox to describe what to type into it.  The text contained in a statictext control is alligned to the left.  If the text is too long to fit the width of the control, it will automatically wrap lines to fit.

Statictext Commands

print #handle.ext, "a string"
This changes the text displayed on a statictext control.  This command sets the contents (the visible label) of the statictext to be "a string".  The handle must be of form #handle.ext that includes a unique extension so that commands can be printed to the control.

print #handle.ext, "!font facename pointSize"

print #handle.ext, "!enable" - control is enabled.

print #handle.ext, "!disable" - control is inactive and grayed-out.