Page 1 of 1

menu items to user button

Posted: 18 Mar 2018 03:52
by Mamadex
Hello
How can I add "Rename Special menu-> Aaa Aa.aaa ", run from a user button in the toolbar?
Or Is there a script for that?

Thanks

Re: menu items to user button

Posted: 18 Mar 2018 06:27
by jupe
You can get that whole Rename special menu on the toolbar, just right click the toolbar and select customize then in the left hand box find the rename button and add it to your toolbar, then when you right click the button it will have that whole Rename Menu that you are talking about.

If you want individual items from that menu goto the Help menu | List all commands, then look up the command you want and get its corresponding ID number, and use that number in the Left or Right click action box of a custom toolbar button, in your case it would be #126;

Another way to get the command ID of menu items is to use the Help Menu | Command IDs on Menu, which will show the command IDs in the menus so you can locate them quickly, then you can turn it off when you are done if you so desire, As you can see most things you need to do are accessed via the help menu.

you can paste the following into the XY address bar for more information on custom toolbar buttons if you are interested:

Code: Select all

::help "idh_toolbar.htm#idh_ctb";

Re: menu items to user button

Posted: 22 Mar 2018 19:19
by Mamadex
Thanks for reply.
But how about the user buttons? See the attachment.
Clipboard01.jpg

Re: menu items to user button

Posted: 22 Mar 2018 19:22
by highend
If you want individual items from that menu goto the Help menu | List all commands, then look up the command you want and get its corresponding ID number, and use that number in the Left or Right click action box of a custom toolbar button, in your case it would be #126;

Re: menu items to user button

Posted: 23 Mar 2018 02:24
by Mamadex
Thanks.