@Alain, @stevebaer,
while looking for a solution to this problem for both Rhino 5 and 6 i’ve found that all states of the PopupMenu items are ignored as soon as a seperator is included. Example:
import rhinoscriptsyntax as rs
items = "Line", "", "Circle", "Arc"
modes = 2,0,1,3
result = rs.PopupMenu(items, modes)
if result >= 0:
print items[result]
Once the seperator and it’s mode is removed, at least the disabled state seems to work. However, i am unsure if this will automagically work in V6 if i call the rhinoscript syntax version, eg. when rhinoscriptsyntax uses ETO for it. Making it work in V5 and V6 with the same code seems out of question.
_
c.