Organizing Graph Macros
Jon
Hi - I have about 50 graph macros. Under Windows > graph macros, all the graph macros are shown. Is there a way to create an additional layer within the menu i.e. Windows > graph macros > [data category] > individual graph macros for that category.
I assume there is probably some way to do it within the Procedure Window but have been unable to figure out how to program it.
Thanks,
Take a look at my response here: https://www.wavemetrics.com/comment/20454#comment-20454 and the follow up replies.
September 14, 2020 at 07:38 am - Permalink
An alternative to menus for many items is to use a listbox interface.
I just posted an updated version of a code snippet that creates a GUI for choosing items from a list.
To try it, edit the first two functions in the code snippet:
execute selection + "()"
end
function GUIdemo()
string strList = MacroList("*", ";", "KIND=4")
ChooseFromListGUI(strList, title = "Window Macros")
end
and execute GUIdemo().
September 16, 2020 at 12:00 pm - Permalink