Go to: Synopsis. Return value. Flags. MEL examples.
connectControl [-fileName] [-index uint] [-preventContextualMenu boolean] [-preventOverride boolean]
string attribute...
connectControl is undoable, NOT queryable, and NOT editable.
This command attaches a UI widget, specified as the first argument, to one or more dependency node attributes. The attributes/nodes don't have to exist yet, they will get looked up as needed. With no flag specified, this command works on these kinds of controls: floatField, floatScrollBar, floatSlider, intField, intScrollBar, intSlider, floatFieldGrp, intFieldGrp, checkBox, radioCollection, and optionMenu. With the index flag, It will also work on the individual components of all other groups.This command sets up a two-way connection between the control and the (first-specified) attribute. If this first attribute is changed in any way, the control will be appropriately updated to match its value.
Summary: if you change the control, ALL the connected attributes change. If you change the FIRST attribute attached to the control, then the control will change.
NOTE: the two-way connection will not be established if the attributes do not exist when the connectControl command is run. If the user later uses the control, the connection will be established at that time.
To effectively use connectControl with radioCollections and optionMenus, you must attach a piece of data to each radioButton and menuItem. This piece of data (an integer) can be attached using the data flag in the radioButton and menuItem commands. When the button/item is selected, the attribute will be set to the value of its data. When the attribute is changed, the collection (or optionMenu) will switch to the item that matches the new attribute value. If no item matches, it will be left unchanged.
There are some specialized controls that have connection capability (and more) built right into them. See attrFieldSliderGrp, attrFieldGrp, and attrColorSliderGrp. Using these classes can be easier than using connectControl.
None
Long name (short name) | Argument types | Properties | ||
---|---|---|---|---|
-fileName(-fi)
|
|
![]() |
||
|
||||
-index(-in)
|
uint
|
![]() |
||
|
||||
-preventContextualMenu(-pcm)
|
boolean
|
![]() |
||
|
||||
-preventOverride(-po)
|
boolean
|
![]() |
||
|
![]() |
![]() |
![]() |
![]() |
{ string $sphereNames[] = `sphere`; string $sphereName = $sphereNames[0]; string $window = `window`; columnLayout; text -l "X Value:"; floatField xx; connectControl xx ($sphereName+".tx"); text -l "Visibility"; checkBox vis; connectControl vis ($sphereName+".visibility"); floatFieldGrp -l "Rotation:" -numberOfFields 3 rot; // index 1 would be the text label connectControl -index 2 rot ($sphereName+".rx"); connectControl -index 3 rot ($sphereName+".ry"); connectControl -index 4 rot ($sphereName+".rz"); showWindow $window; } // Connecting two attributes to a single control { window; columnLayout; floatSlider slider; showWindow; polySphere; polyCube; move 0 2 0; connectControl slider pCube1.tx pSphere1.tx; }