Hi,Is it possible to edit values associated with an enum attribute? I mean after creating this attr, I wan't to add some names to it.
thanks
yes, you can use addAttr -e
for example:
addAttr -e -enumName "First:Second:Third:Fourth:" ".myEnum";
but!!!!!if i do as upstairs said.i must know the enum it has.how?
addAttr -q -enumName object.Attribute
or by combining 1+1
$attr="object.attrName"; addAttr -e -en (`addAttr -q -en $attr`+":newEnum") $attr;
thank you!