Or
Use a widget, map it to your controller and use a script to open the Chord Pro Window
var BUTTON : Widget
On WidgetValueChanged (newValue : double) from BUTTON
if newValue == 1.0 then
ShowChordProWindow(true)
else
ShowChordProWindow(false)
end
end