I want to edit my menus and know I can do this via MenuSetup.tr
but can I do this in real time? Can I do it temporarily?
Moreover can I change whether the changes are permanent or not / how can I make edits with minimal amounts of syntax and manual editing?
Answer
I do this differently to @MB1965.
SetOptions[$FrontEndSession,
MenuConfigurationFile -> "path/to/alternative/MenuSetup.tr"
];
and then to restore the menus:
SetOptions[$FrontEndSession,
MenuConfigurationFile -> Inherited
];
I find this easy and can be done readily on the fly, switched on and off with buttons etc.
Comments
Post a Comment