Biab-preview-chords.zip

install www.autohotkey.com then set C:\Program Files\AutoHotkey\AutoHotkey.exe to Run As Administrator by right click Properties > Compatibility.


Select chord cell to preview

Ctrl+1 will preview beat 1 chord
Ctrl+2 will preview beat 2 chord
Ctrl+3 will preview beat 3 chord
Ctrl+4 will preview beat 4 chord
(you can change these hot keys to what you like)

[Linked Image - Only viewable when logged in]

Script runs in system tray, right click "H" to exit.
[Linked Image - Only viewable when logged in]

Save to txt and rename Biab preview chords.ahk
Code
#NoEnv
#SingleInstance Force

^1::
Winactivate, ahk_class TBandWindow
Send, !{F5}
Winwait, ahk_class TCHORDOPTIONSDIALOG
Winactivate, ahk_class TCHORDOPTIONSDIALOG
ControlClick, TRadioButton4
ControlClick, TButton10
Sleep, 500
WinClose, ahk_class TCHORDOPTIONSDIALOG
return

^2::
Winactivate, ahk_class TBandWindow
Send, !{F5}
Winwait, ahk_class TCHORDOPTIONSDIALOG
Winactivate, ahk_class TCHORDOPTIONSDIALOG
ControlClick, TRadioButton3
ControlClick, TButton10
Sleep, 500
WinClose, ahk_class TCHORDOPTIONSDIALOG
return

^3::
Winactivate, ahk_class TBandWindow
Send, !{F5}
Winwait, ahk_class TCHORDOPTIONSDIALOG
Winactivate, ahk_class TCHORDOPTIONSDIALOG
ControlClick, TRadioButton2
ControlClick, TButton10
Sleep, 500
WinClose, ahk_class TCHORDOPTIONSDIALOG
return

^4::
Winactivate, ahk_class TBandWindow
Send, !{F5}
Winwait, ahk_class TCHORDOPTIONSDIALOG
Winactivate, ahk_class TCHORDOPTIONSDIALOG
ControlClick, TRadioButton1
ControlClick, TButton10
Sleep, 500
WinClose, ahk_class TCHORDOPTIONSDIALOG
return