Menu Access with Keyboard Solution

I couldn’t find a way in Cubase to access the Menu Bar with the keyboard, it seems users have been asking for years n years.
So unless someone has way you can try this:

Here I just made this up you can try it, just install AutoHotKey
save this in notepad as Cubase LE AI Elements 9 Menu.ahk
run it and it will sit in the System tray as a green icon with a white H
It is set to use alt+home key will bring the file menu up you can change that to what you like.
The “ahk_class SmtgMain Cubase LE AI Elements 9” is the menu bar, you can change the name to your version of Cubase, or download the AHK Window ID app WindowAHK-ID x64.zip WindowAHK-ID x86.zip run it then click on the Menu Bar to get the win id.
If you don’t want to install AutoHotKey run the Window AHK ID and give me the Menu Bar ID and I will compile a standalone app that will send the mouse to the File Menu and click, let me know the hotkey you want.

If you let me know your version ID I will be able to make a complied app for each version.
AHK will also allow a GUI to be created that can be “Always On Top” this can have any number of functions and macros with the click of a button.
Here’s one made for band in a Box AHK-GUI-Fuctions-Macros.gif

; Only one instance running at a time
#SingleInstance force

; Cubase Menu
~Alt & Home::
Macro1:
WinActivate, ahk_class SmtgMain Cubase LE AI Elements 9
MouseClick, left, 50, 10, 1, 0
Return

Duplicate post