Launching plugins with AutoHotKeys V2 in Windows
Does anyone know how to use AutoHotKeys Version 2 to launch a plugin from its menu title rather than a menu position?
Here is a the Topaz Photo AI plugin in Lightroom Classic:

The menu path is File > Plug-in Extras > Process with Topaz Photo AI
In the AutoHotKey script, I have
!PgUp::
{
MenuSelect "A", , "File", "Plug-in Extras", "Process with Topaz Photo AI"
}
This should assign the Alt+PgUp key to open Topaz Photo AI, but it doesn't work.

If I change the AutoHotKey script to
!PgUp::
{
MenuSelect "A", , "File", "Plug-in Extras", "2&"
}
then it works. The "2&" specifies the second item in the flyout submenu, but using it like this is going to fail when other plugins are installed.
Any ideas?
