DROPDOWN NEW

From Macros Wiki
Revision as of 14:25, 12 August 2010 by ConnerO (talk | contribs)
Jump to navigationJump to search

Up

Command

DROPDOWN
DROPDOWN
DROPDOWN_NEW <dropdown group>, <left>, <top>, <width>, <height>, <variable>


Define the size and the position of a new dropdown menu, to add new selctions see DROPDOWN_ADD.

Parameters

<dropdown group>
Define the group number of the radio button, for example:
dropdown_new 1, 15, 52, 110, 24, drop1
dropdown_add 1, "Simple Shapes", 10
dropdown_add 1, "Advanced Shapes", 20
<left>
Start position measured from the left edge of the dialog.
<top>
Start position of measured from the top edge of the dialog.
<width>
Width of the control.
<height>
Height of the control.
<variable>
Define a custom variable to be used later in the macro, for example "w1".

Example

DROPDOWN_NEW 1, 15, 52, 110, 24, drop1