connecting floatFields and proc inputs
Hey,
I was wondering how to make floatFields in a UI that are connected to the inputs in the brackets after a procedure's name, for instance...
//////////
proc blah ( in here, like variables etc ){
do stuff...
}
Say I have a AI like this from the help files...
////////////
string $window = `window`;
columnLayout;
floatField -minValue -10 -maxValue 10 -value 0;
showWindow $window;
How would I hook that up to be connected with
the procedure inputs, am confused about this one
Many thanks
Chris