Rather than navigating menus you can add the most used items into the BB Quick Menu.
If you are running Biab As Administrator:
To run script only .ahk install https://www.autohotkey.com/ and set AutoHotKey.exe to Run As Administrator

Let me know what actions you need and I will give you the function code.
You have the text name up the top that runs the associated function below.
You can change the font size and color as well as the background color.
The script can be compiled to an exe when you have all the functions you need.

Copy the code and paste into Notepad then save as BB Quick Menu.ahk
Code:
Gui, +AlwaysOnTop

;Gui, Font, underline
Gui, Font, bold
Gui, Font, s9
Gui, Add, Text, cBlue gInsertBars4, Insert 4 Bars
Gui, Add, Text, cRed gDeleteBars4, Delete 4 Bars
Gui, Add, Text, cFuchsia gUnFold, Unfold
Gui, Add, Text, cGreen gFloatingMixerWindow, Floating Mixer Window
Gui, Add, Text, cBlack gPreferences, Preferences

Gui Color, 0xC0C0C0 
Gui, Show, w200 h200 Na

return

;FUNCTIONS

InsertBars4:
Winactivate,ahk_class TBandWindow
IfWinNotExist ahk_class TPOPSTRINGDIALOG ; only if the bar dialog is not already open
{ 
    WinMenuSelectItem, ahk_class TBandWindow, , Edit, Insert Bar(s)...
    WinSet, AlwaysOnTop, On, ahk_class TPOPSTRINGDIALOG
    Winactivate, ahk_class TPOPSTRINGDIALOG
    Sleep, 50
    SendInput, {4}
    SendInput, {Enter}
}
return

DeleteBars4:
Winactivate,ahk_class TBandWindow
IfWinNotExist ahk_class TPOPSTRINGDIALOG
{
    WinMenuSelectItem, ahk_class TBandWindow, , Edit, Delete Bar(s)...
    WinSet, AlwaysOnTop, On, ahk_class TPOPSTRINGDIALOG
    Winactivate, ahk_class TPOPSTRINGDIALOG
    Sleep, 50
    SendInput, {4}
    SendInput, {Enter}
}
return

UnFold:
  WinMenuSelectItem, ahk_class TBandWindow, , Edit, Song Form, Unfold (convert to 1 BIG chorus)
return

FloatingMixerWindow:
  WinMenuSelectItem, ahk_class TBandWindow, , Window, Floating Mixer Window
return

Preferences:
Winactivate,ahk_class TBandWindow
IfWinNotExist ahk_class TMISCDIALOG ; only if the Preferences dialog is not already open
{ 
    WinMenuSelectItem, ahk_class TBandWindow, , Options, Preferences...
    WinSet, AlwaysOnTop, On, ahk_class TMISCDIALOG
    Winactivate, ahk_class TMISCDIALOG
}
  
return



GuiClose:
GuiEscape:
ExitApp

Attached Files (Click to download or enlarge) (Only available when you are logged in)
BB-Quick-Menu.gif (328.01 KB, 71 downloads)