hmmm... like I said:
"Almost everything you see in Mayas UI is somehow made up by MEL."
Its really like cloaked that darn popupMenu. Its not on the attrFieldSliderGrp, not even on the controls inside. Must be a speciallity of that attrControls.
maybe ... joojaa just suggested a method. Maybe browse all that attr..-controls and put an extra popupmenu to it.:
CODE
for ($i in lsUI -menus)
{
if (gmatch $i "attr\_hookup\_popup*")
{
if (catch(deleteUI $i))
print ($i + "could not be deleted\n");
else
print ($i + "deleted\n");
}
}
for ($i in lsUI -controls)
{
if (gmatch $i "attr*")
{
string $popup = popupMenu -alt 1 -b 2 -p $i "attr\_hookup\_popup#";
menuItem -parent $popup -label "bla" -command ("print (\"you clicked : " + $i + "\"\n)");
}
}
(deletes and) puts a Alt+MMB-popupMenu to controls named attr*
Works for some. But not finished. Just a sketch ;] have no time now.
oh you replied already?...
ehmm .. what does editorTemplate do?