No. I mean that I have a node which has an attibute which is an enumeration attribute, like the the lambert1.type.
I want a function like the getAllItems below:
CODE
string $array[] = getAllItems( lambert1.type );
optionMenu -label "Type for lambert1";
for(int $i = 0; $i < size($array); $i++ )
menuItem -label $array[i] -c ("selectIndex(" + $i + ");");
Or some other way to make the contents of the enumeration attribute visible and selectable in the dagMenu (the one which pops up when you right click a node)
Thanks in advance,
Daniel