Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Inventor 2023
Ribbon panel "id_GetStarted" dosnt exist anymore.
Is the changes that are made posted somwhere?
/johan
Solved! Go to Solution.
Inventor 2023
Ribbon panel "id_GetStarted" dosnt exist anymore.
Is the changes that are made posted somwhere?
/johan
Solved! Go to Solution.
The following rule will write all ribbon panel names to your log. this should work on all inventor versions. You can use it to see the differences yourself.
For Each ribbon As Ribbon In ThisApplication.UserInterfaceManager.Ribbons Logger.Info(Ribbon.InternalName) For Each ribbonTab As RibbonTab In Ribbon.RibbonTabs Logger.Info(String.Format(" {0} ({1})", RibbonTab.DisplayName, RibbonTab.InternalName)) For Each ribbonPanel As RibbonPanel In RibbonTab.RibbonPanels Logger.Info(String.Format(" {0} ({1})", RibbonPanel.DisplayName, RibbonPanel.InternalName)) ' -- Uncomment the following lines if you also want to see the commands -- 'For Each commandControl As CommandControl In RibbonPanel.CommandControls ' Logger.Info(String.Format(" {0} ({1})", ' CommandControl.DisplayName, CommandControl.InternalName)) 'Next Next Next Next
Jelte de Jong
Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.
Blog: hjalte.nl - github.com