Hello
I have a mel scriot with a textfield with what i want when user select an object it’s name appear directly in the textfield.
I use this lines to update the textfield with a button
string $selObj[] = `ls -sl` ;
textField -e -text $selObj[0] selectedObject ;
but this is not what i want. i search how without a button textfield can automaticaly update with the new user selection.