Hey all,
I'm trying to get the labels on my buttons to align in the center of the button, but I can't see to... I don't see where any parent's condition is overriding this option either. Any help in figuring this out would be much appreciated. Thanks.
CODE
global proc sdAllCounterAnimMod ()
{
if (window -ex sdFBM\_BankGrpSelectorWin
)
deleteUI sdFBM_BankGrpSelectorWin;
$sd_asMod_AllCounterWindow = window -w 340 -h 205 -s false -title "All curve Counter Anim" sdFBM\_BankGrpSelectorWin
;
columnLayout -adjustableColumn true;
separator -st "none" -h 10;
text -label "Enter the hierarchy's prefix, and pick the axis to counter." -align "center";
separator -st "none" -h 7;
separator;
separator;
separator -st "none" -h 15;
rowLayout -nc 4 -cw4 50 80 80 80;
separator -st "none";
text -l "Imported Prefix:";
textField -w 95;
setParent ..;
separator -st "none" -h 10;
radioButtonGrp -numberOfRadioButtons 3
-cw 1 127 -cal 1 "left" -cat 1 "right" 0
-cw 2 33 -cal 2 "left" -cat 2 "left" 0
-cw 3 33 -cal 3 "left" -cat 3 "left" 0
-labelArray3 "X" "Y" "Z"
-label "Select Axis: "
sd_asMod_ACWRadioGrp;
setParent ..;
separator -st "none" -h 10;
rowLayout -nc 3 -columnWidth3 83 80 80 -columnAttach 3 "left" 1;
separator -st "none";
button -l "OK" -align "center" -w 80 -h 25;
button -l "Cancel" -align "center" -w 80 -h 25;
setParent ..;
separator -st "none" -h 15;
separator;
separator;
separator -st "none" -h 10;
showWindow $sd_asMod_AllCounterWindow;
}