3 "toolbar" methods obsolete

The missing items are both Group and Toolbars.
I tried:

    import Rhino
    for rui in Rhino.RhinoApp.ToolbarFiles:
        print rui.Path
           
        for i in range(0, rui.GroupCount - 1):
            gr = rui.GetGroup(i)
            print gr.Name

but still don’t get many of them listed; I need a list that has them all, like the Middle Mouse button popup list nicely showing all of them to pick from.

I’d need to make this work if we can figure out why this doesnt work either :slight_smile: :slight_smile:

–jarek