Update 2.1d beta
Transpose Chord Buttons added (transposes chord and / root, allows preview)Version Choice Added
Version Choice Added (select between Biab versions)

Post action button request here What Hotkeys Do You Use or Need

Choose A Custom Action for the Middle Mouse Button from the droplist at the bottom (these are the Actions in the User Tab), to try this choose CA1-2, now when you select a chord in BB and press the Mouse Wheel or Middle Button down the chord will change from F# to Gb or Gb to F#

Unzip Biab Chord Picker User Buttons.ahk & Biab Chord Picker User Functions.ahk
keep them in the same folder as Biab Chord Picker xxx.ahk
Edit them in notepad or any text editor, just drag in, edit and save.
When you right click Biab Chord Picker.ahk > Compile, it will create Biab Chord Picker.exe with your custom action buttons.

You need to have AutoHotKey installed to Compile to exe
https://autohotkey.com/download/

For Later version of BB

Biab Chord Picker Tool Setup Installer 2016 2017 2018..
64bit
https://www.dropbox.com/s/h1089u05fn2ws3i/Biab%20Chord%20Picker%20%28x64%29%20beta%202.1d%20setup.exe?dl=1
32bit
https://www.dropbox.com/s/mjvuvrbrwos040d/Biab%20Chord%20Picker%20%28x86%29%20beta%202.1d%20setup.exe?dl=1
Exe, script and bb.jpg (to use your custom action you will need to Compile the to exe again).
64bit
https://www.dropbox.com/s/t66nmkjmj9wxl89/Biab%20Chord%20Picker%20%28x46%29%20beta%202.1d.zip?dl=1
32bit
https://www.dropbox.com/s/d12mn2vtm3zzvyu/Biab%20Chord%20Picker%20%28x86%29%20beta%202.1d.zip?dl=1
Script and bb.jpg only
https://www.dropbox.com/s/74jq6x4fvcq0727/Biab%20Chord%20Picker%20beta%202.1d.ahk.zip?dl=1

For Earlier Biab versions (defaults to 2015-earlier (if you can right click to edit the chord then it will work on your version, and it's already highlighted then use this version)

Biab Chord Picker Tool Setup Installer 2015-earlier
64bit
https://www.dropbox.com/s/6fg4dlxzzxc3ggu/Biab%20Chord%20Picker%20%28x64%29%20beta%202.1d%20%282015-earlier%29%20setup.exe?dl=1
32bit
https://www.dropbox.com/s/3z24jtjm5job581/Biab%20Chord%20Picker%20%28x86%29%20beta%202.1d%20%282015-earlier%29%20setup.exe?dl=1
Exe, script and bb.jpg (to use your custom action you will need to Compile the to exe again).
64bit
https://www.dropbox.com/s/a2uq41s9koscwyu/Biab%20Chord%20Picker%20%28x64%29%20beta%202.1d%202015-earlier.zip?dl=1
32bit
https://www.dropbox.com/s/xgxbskah3jkjdw4/Biab%20Chord%20Picker%20%28x86%29%20beta%202.1d%202015-earlier.zip?dl=0
Script and bb.jpg only
https://www.dropbox.com/s/a2uq41s9koscwyu/Biab%20Chord%20Picker%20%28x64%29%20beta%202.1d%202015-earlier.zip?dl=1

If I want to create a custom action for Custom Action 1 Button 1

I edit the name in "Biab Chord Picker User Buttons.ahk": Action Name rename > Unfold
Code:
;Custom Actions 1

Gui, Font, S16 CWhite Normal, Arial
Gui, Add, Text, x22 y70 w230 h30 , Custom Actions 1
Gui, Font, S8 CBlack Bold, Arial
Gui, Add, Button, x22 y100 w90 h20 gButtonCA1-1, Action Name


to
Code:
;Custom Actions 1

Gui, Font, S16 CWhite Normal, Arial
Gui, Add, Text, x22 y70 w230 h30 , Custom Actions 1
Gui, Font, S8 CBlack Bold, Arial
Gui, Add, Button, x22 y100 w90 h20 gButtonCA1-1, Unfold


Now I edit the function in Biab Chord Picker User Functions.ahk
Code:
ButtonCA1-1:
winactivate,ahk_class TBandWindow
Send  x
Send  x
Send  x
Return


to
Code:
ButtonCA1-1:
winactivate,ahk_class TBandWindow
Send  !E
Send  {Down 10}
Send  {Right}
Send  {Down 5}
Send {Enter}
Return

!E = Alt+E brings up the Edit menu.
User can upload and share their custom actions.
If you have trouble let me know what action you need.

Send ^ = Ctrl
Send ! = Alt
Send + = Shift
Send # = Win Key
Press the Alt key the shortcuts will show underscores
Send !E will open Edit menu
Use the keys below to access menu items
Send {Enter} enter key
Send {Left} left cursor
Send {Right}
Send {Up}
Send {Down}
Send {Down 3} down 3
Sleep, 100 will slow the keystrokes