Making shortcut for the menu that include sub-menues
linepic
I have menus with submenues.
I understand how to make a short cut for the submenues, but still I cannot find way to make a shortcut for the menu.
For Instance,
Menu 1
Menu 2
Submenu 2.1
Submenu2.2
In this case, I understand how to make shortcut for menu1 and submenues, but not for Menu2.
Is there any way to make a shortcut for Menu2?
HJ
June 24, 2017 at 12:50 am - Permalink
menu "My functions"
"Menu1/1", Function1()
Submenu "Submenu1"
"Submenu1-1 /S1", Sub1-1()
"Submenu1-2", Sub1-2()
end
End
I would like to add shortcut to "Submenu1" by putting "/2" but it doesn't work
Is there any way to make a shortcut to the submenu?
June 24, 2017 at 07:26 am - Permalink
As a test I created this code:
"Menu1/1", Function1()
Submenu "Submenu1"
"Submenu1-1 /S1", Sub1_1()
"Submenu1-2 /S2", Sub1_2()
end
end
function function1()
end
function Sub1_1()
end
function Sub1_2()
end
And got the result you requested, I think. See Image.
June 24, 2017 at 09:25 am - Permalink
I meat that can I put the short cut for "submenu1" instead of "submenu1-1" or "Submenu1-2"
Thanks!
June 24, 2017 at 10:56 am - Permalink
What action are you going to initiate with a shortcut to a submenu?
Andy
June 24, 2017 at 12:20 pm - Permalink
"Menu1/1", Function1()
Submenu "&Submenu1"
"Submenu1-1 /S1", Sub1_1()
"Submenu1-2 /S2", Sub1_2()
end
end
function function1()
end
function Sub1_1()
end
function Sub1_2()
end
To cite the manual:
Note: The mnemonic keystroke is not supported on Macintosh. For this reason, if you care about cross-platform compatibility, you should not use ampersands in your menu items.
On Macintosh, if you use a single ampersand in a menu item, it does not appear in the menu item. If you use a double-ampersand, it appears as a single ampersand.
@WM: Igor8 ?
HJ
June 24, 2017 at 02:10 pm - Permalink
June 25, 2017 at 08:50 pm - Permalink
Thank you so much otherwise I may keep trying to find some way...
June 25, 2017 at 08:50 pm - Permalink
John Weeks
WaveMetrics, Inc.
support@wavemetrics.com
June 26, 2017 at 08:44 am - Permalink