Download BB_Quick_Menu_Mixer_AHK_Script.zip.mp4
Remove the .mp4 from BB_Quick_Menu_Mixer_AHK_Script.zip.mp4
and unzip
To run the script .ahk install https://www.autohotkey.com/ and set AutoHotKey.exe to Run As Administrator if you are running Biab As Administrator.

This is the easiest way to run functions in BB rather than having to go through menus.
You can add any function you like to any tab.
The script can be edited with Notepad.
There are two sections to the script
;BUTTONS ======
and
;FUNCTIONS ======
whatever is under
Gui, Tab, 1
will show on that Tab
To change the size of the gui change this line
Gui, Add, Tab, x2 y160 h20 w290 AltSubmit gTab vTab
160 = Height
290 = width
you can add more tabs with: , 1|2|3|4

This is the 3rd Button in Tab 1
Gui, Add, Text, x2 y50 cFuchsia gUnFold, Unfold
the x, y is the position
the gUnFold is the function name UnFold: under ;FUNCTIONS ======
UnFold:
WinMenuSelectItem, ahk_class TBandWindow, , Edit, Song Form, Unfold (convert to 1 BIG chorus)
return

so to add menu items use
WinMenuSelectItem, ahk_class TBandWindow, , Edit, Song Form, Unfold (convert to 1 BIG chorus)
Edit is the Main menu, Song Form is the Sub menu, and Unfold is the Function
So type the name identical to the menu name, like "Save Special.." with the dots

To run the script .ahk install https://www.autohotkey.com/ and set AutoHotKey.exe to Run As Administrator if you are running Biab As Administrator.

remove the .mp4 from BB_Quick_Menu_Mixer_AHK_Script.zip.mp4
and unzip
Download BB_Quick_Menu_Mixer_AHK_Script.zip.mp4

I will add a few examples here and post more, you can just paste them in the script in the any Tab under ;BUTTONS ======
and the function part under ;FUNCTIONS ======
Adjust the x,y position to suite
Code:

Gui, Add, Text, x2 y150 cBlue gFileOpen, Open

FileOpen:
  WinMenuSelectItem, ahk_class TBandWindow, , File, Open...
return
========
Gui, Add, Text, x2 y150 cBlue gAudioDriverSettings, Audio Driver Settings

AudioDriverSettings:
  WinMenuSelectItem, ahk_class TBandWindow, , Audio, Audio Driver/Settings...
return
========
Gui, Add, Text, x2 y150 cBlue gPlaySpecialFromBar, Play from Bar #

PlaySpecialFromBar:
  WinMenuSelectItem, ahk_class TBandWindow, , Play, Play Special, Play From Bar #... 
return
========


if you wanted to play from set bar # 13
Code:
PlaySpecialFromBar13:
  WinMenuSelectItem, ahk_class TBandWindow, , Play, Play Special, Play From Bar #... 
Winactivate, ahk_class TxForm
Send,  13
Send,  {Enter}
return


the Winactivate is the name of the current window or dialog you want to focus on, see pic below, you run the WindowSpy.ahk then click the window or dialog you want to send keys to and get it's ahk_class name.
Let me know any menu items or functions you need and I'll try to post them.

Attached Files (Click to download or enlarge) (Only available when you are logged in)
BB-Quick-Menu.png (4.15 KB, 443 downloads)
AHK-WinSpy.png (32.68 KB, 110 downloads)