Previous Thread
Index
Next Thread
Print Thread
Go To
Page 1 of 3 1 2 3
#464478 03/28/18 01:37 AM
Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
It should just run standalone, any problems just install AutoHotKey
you can also right click > Properties > Compatibility > Run As Admin

Use the Bass, Drum, Piano.. buttons to set the instrument/s to play over a Rest, Shot or Hold.
Use the < > to move or use the keyboard arrows.
Use - for a comma between chords.
Use / for slash chords.
Use the Tabs to select your key and scale.

EDIT: Fixed m6 m7 Ma7, added View Mode button.

EDIT: Update,
Added Set existing Chord to Push 1/8 or 1/16
Added View Mode Normal/Compact
Added DAW Plug-in Mode (small)

EDIT: Update
Added Remove Push Shot Hold or Rest from Chord
Added GUI Color Picker
Added Move BB Window with cursor keys or mouse


Exe and script
https://www.dropbox.com/s/mifqr8ibtnk6f4h/Biab%20Chord%20Picker%20beta%201.f.zip?dl=1

Script only
https://www.dropbox.com/s/qluu9iv9plk3ndk/Biab%20Chord%20Picker%20beta%201.f.ahk?dl=1
To run the script only just install AutoHotKey then double click on the Biab Chord Picker beta 1.0 script.ahk and it will run without having to use the exe.
If you open the Picker beta 1.0 script.ahk by dragging into Notepad you will see it is just simple text:





This is the easiest way, install AutoHotKey > Double click the BB Chord.ahk.
You can right click to Edit or Compile to an BB Chord.exe




Creating your own GUI:

I included the script, to edit it use SciTE4AutoHotKey or Notepad.
To create a GUI use SmartGUI then open in SciTE4AutoHotKey to add the the hotkeys.

So for each GUI Button you create e.g 13b5#9 put the code at the bottom,

this will send it to the Biab window, { } are used to send some special characters.

Code:
Gui, Add, Button, x372 y430 w90 h20 , 13b5#9

~~~~~~~~~~~~~~

~~~~~~~~~~~~~~

Button13b5#9:
winactivate,ahk_class TBandWindow
Send  13b5{#}9
Return


You can use the GUI to do any Biab function by adding a button to send the shortcut keys or keystrokes to access the menus by sending down right and enter, see below.
If you have AutoHotKey installed just right click the script.ahk > Compile, this will create the GUI.exe
Use WindowSpy.ahk in the AutoHotKey Installation folder to get the window name to send the keys to an application, like ahk_class RealBand

So to create a MultiRiff Button for RealBand:
Code:
Gui, Add, Button, x10 y30 w60 h20 , MultiRiff

~~~~~~~~~~~~~~

~~~~~~~~~~~~~~
ButtonMultiRiff:
WinActivate, ahk_class RealBand
Sleep, 500
Send, !{G 1}
Sleep, 100
Send, {Down 8}
Sleep, 100
Send, {Enter 1}
Return 


The Sleep is just a short pause, so it sends !=Alt + G 1 times
then goes Down the Generate menu 8 times then Enter to select MultiRiff.

So anything can be done with just one click of a button rather than having to navigate all through menus.

Using Combination Keys:
http://xahlee.info/mswin/autohotkey_key_notations.html

SmartGUI is simple to use, just drag in the button or any other components, save to file or clipboard, paste or open in SciTE4AutoHotKey or Notepad and add the keystroke send for each button.

Add this to the end to completely close the GUI so it's not running in the tray:
Code:
GuiClose:
GuiEscape:
ExitApp

To make the window always on top use:

Code:
Gui, 1: +AlwaysOnTop

in the GUI section.

or add a checkbox

Code:
Gui, Add, CheckBox, x730 y130 gUpdate vCheck, Always on Top

~~~~~~~~~~~~~~~~~~~~~~

~~~~~~~~~~~~~~~~~~~~~~

; Generated using SmartGUI Creator 4.0
OnMessage(0x115, "OnScroll") ; WM_VSCROLL
OnMessage(0x114, "OnScroll") ; WM_HSCROLL
Gui,  +Resize +0x300000  ; WS_VSCROLL | WS_HSCROLL	;+Resize (allows resize of windows)
Gui, Show, x277 y206 h682 w880, Biab Chord Picker Window, 

return


Update:
    Gui, Submit, NoHide
    If Check = 1
    {
        Gui, +AlwaysOnTop
    }
    else
    {
        Gui, -AlwaysOnTop
    }

Return 






Attached Files (Click to download or enlarge) (Only available when you are logged in)
ahk_class_RealBand.png (94.09 KB, 1371 downloads)
SmartGUI-BB.png (97.23 KB, 1372 downloads)
Last edited by Pipeline; 03/30/18 11:37 AM.
Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954

Attached Files (Click to download or enlarge) (Only available when you are logged in)
BB-Chord-Picker-beta2.0a.png (105.92 KB, 1815 downloads)
Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
Chord Picker beta 2.0b
Fixed order Harmonic Major/Minor chords
Added Set existing Chord to Rest, Shot or Hold
Added Custom Actions Tool Tab
To create your own Actions for the buttons rename "Action name"

Gui, Add, Button, x22 y100 w90 h20 gButtonCA1-1, Action Name

then go down the text or search for "ButtonCA1-1:"

ButtonCA1-1:
winactivate,ahk_class TBandWindow
Send C
Return

it is sending c as default, change the keysend to what you like, save and run.

For example, if we want to make Custom Actions 1 Button 1 Unfold:

Gui, Add, Button, x22 y100 w90 h20 gButtonCA1-1, Unfold
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ButtonCA1-1:
winactivate,ahk_class TBandWindow
Send !e
Send {Down 10}
Send {Right 1}
Send {Down 5}
Send {Enter}
Return

Send !e = Alt+E to open the edit menu.
More info http://www.pgmusic.com/forums/ubbthreads.php?ubb=showflat&Number=464478
Using Combination Keys:
http://xahlee.info/mswin/autohotkey_key_notations.html

Exe and script
https://www.dropbox.com/s/8youk0drvuanrdj/Biab%20Chord%20Picker%20beta%202.0b.zip?dl=1

Script only
https://www.dropbox.com/s/403g9sz4oxm326i/Biab%20Chord%20Picker%20beta%202.0b.ahk?dl=1

View Full Screen

Attached Files (Click to download or enlarge) (Only available when you are logged in)
BBCP2.0b.gif (984.66 KB, 1656 downloads)
Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
Update
Fixed C Major Chords Tab FMa7 > FMaj7
Added Set existing Rest Shot Hold to Bass Drums Piano Guitar Strings
Added background image, use a custom jpg image rename to bb.jpg and keep in the same folder as BB Chord Picker.exe or BB Chord Picker.ahk

To keep your Custom Actions

copy & paste replace all the buttons under

;Custom Actions 1 (2,3,4)

"""""""""""""""""

and all the keysends under

;Custom Action Buttons 1 (2,3,4)

"""""""""""""""""

Then right click BB Chord Picker.ahk > Compile (to BB Chord Picker.exe)


Exe, script and bb.jpg
https://www.dropbox.com/s/hgqv98kujs7x527/Biab%20Chord%20Picker%20beta%202.0c.zip?dl=1

Script and bb.jpg only
https://www.dropbox.com/s/mksl90994jus16z/Biab%20Chord%20Picker%20beta%202.0c%20ahk.zip?dl=1


Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
Update
Fixed copying and changing chords with pushes hold shot rest and long chords e.g ^^C13sus#5b9#11,G13sus#5b9#11...db so you can change the push from 16th to 8th or 8th to 16th, add/remove rest shot hold, add b,d,p,g or s to the rest shot or hold or remove without having to re-type the chords.

Exe, script and bb.jpg
https://www.dropbox.com/s/9fuq12xbkxq45y6/Biab%20Chord%20Picker%20beta%202.0d.zip?dl=1

Script and bb.jpg only
https://www.dropbox.com/s/yrg16517fdv3rk7/Biab%20Chord%20Picker%20beta%202.0d%20ahk.zip?dl=1

Last edited by Pipeline; 04/09/18 11:01 PM.
Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954

Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954

Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
For earlier versions of Biab the only thing that needed changing was when you Edit the Chord in 2011 the chord is already highlighted but in 2018 it's not so i just took the highlight line out of the script.

For Earlier Biab versions ONLY:
Exe, script and bb.jpg
https://www.dropbox.com/s/iad33ui9imba8wn/Biab%20Chord%20Picker%20beta%202.0f%20BB2011.zip?dl=1

Script and bb.jpg only
https://www.dropbox.com/s/9z4d5iowpvcs3h5/Biab%20Chord%20Picker%20beta%202.0f%20BB2011.ahk.zip?dl=1


Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
Update
Set New Session to Key (sets first chord of new session to actual key)

For Later version of BB
Exe, script and bb.jpg
https://www.dropbox.com/s/fyo1fezr1t84uvp/Biab%20Chord%20Picker%20beta%202.1.zip?dl=1

Script and bb.jpg only
https://www.dropbox.com/s/mij7lu3u68rqm7i/Biab%20Chord%20Picker%20beta%202.1.ahk.zip?dl=1

For Earlier Biab versions ONLY (if when you right click a chord > Edit, and it's already highlighted then use this version)
Exe, script and bb.jpg
https://www.dropbox.com/s/sxdo95ug5b6bjwm/Biab%20Chord%20Picker%20beta%202.1%20BB2011.zip?dl=1

Script and bb.jpg only
https://www.dropbox.com/s/zza71kks144ly0c/Biab%20Chord%20Picker%20beta%202.1%20BB2011.ahk.zip?dl=1

Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
Update
User Tab will keep user custom actions

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
Exe, script and bb.jpg (to use your custom action you will need to Compile the to exe again).
https://www.dropbox.com/s/69jmqkclcxr8q9x/Biab%20Chord%20Picker%20beta%202.1a.zip?dl=1

Script and bb.jpg only
https://www.dropbox.com/s/bn9lfezeyufgigq/Biab%20Chord%20Picker%20beta%202.1a.ahk.zip?dl=1

For Earlier Biab versions ONLY (if when you right click a chord > Edit, and it's already highlighted then use this version)
Exe, script and bb.jpg (to use your custom action you will need to Compile the to exe again).
https://www.dropbox.com/s/jonfvea6fu0xihn/Biab%20Chord%20Picker%20beta%202.1a%20BB2011.zip?dl=1

Script and bb.jpg only
https://www.dropbox.com/s/9owjj7ehcrjsyo3/Biab%20Chord%20Picker%20beta%202.1a%20BB2011.ahk.zip?dl=0

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

Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
Update 2.1b beta
Flat/Sharp #/b change Button added
Middle Mouse Button (Mouse Wheel "Press Down") Set for Custom Action



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
Exe, script and bb.jpg (to use your custom action you will need to Compile the to exe again).
https://www.dropbox.com/s/p11ipyhshsu35jz/Biab%20Chord%20Picker%20beta%202.1b.zip?dl=1

Script and bb.jpg only
https://www.dropbox.com/s/esgor0prof51l0n/Biab%20Chord%20Picker%20beta%202.1b.ahk.zip?dl=1

For Earlier Biab versions ONLY (if when you right click a chord > Edit, and it's already highlighted then use this version)
Exe, script and bb.jpg (to use your custom action you will need to Compile the to exe again).
https://www.dropbox.com/s/7vye1hkfzn25tnz/Biab%20Chord%20Picker%20beta%202.1b%20BB2011.zip?dl=1

Script and bb.jpg only
https://www.dropbox.com/s/qvp9dvmttrwp5a6/Biab%20Chord%20Picker%20beta%202.1b%20BB2011.ahk.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



Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
Update 2.1c beta
Transpose Buttons added

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
https://www.dropbox.com/s/2sll1psbg8ftmt1/Biab%20Chord%20Picker%20beta%202.1c%20setup.exe?dl=1

Exe, script and bb.jpg (to use your custom action you will need to Compile the to exe again).
https://www.dropbox.com/s/4ptll2ioxujdc1s/Biab%20Chord%20Picker%20beta%202.1c.zip?dl=1

Script and bb.jpg only
https://www.dropbox.com/s/nu6ilfr0a7t1hgu/Biab%20Chord%20Picker%20beta%202.1c.ahk.zip?dl=1

For Earlier Biab versions ONLY (if when you right click a chord > Edit, and it's already highlighted then use this version)

Biab Chord Picker Tool Setup Installer
https://www.dropbox.com/s/msjpx7bl8e5dz8k/Biab%20Chord%20Picker%20beta%202.1c%20BB2011%20setup.exe?dl=1

Exe, script and bb.jpg (to use your custom action you will need to Compile the to exe again).
https://www.dropbox.com/s/2qqd8rnopnqorlo/Biab%20Chord%20Picker%20beta%202.1c%20BB2011.zip?dl=1

Script and bb.jpg only
https://www.dropbox.com/s/qpjx71ffkhuhyfx/Biab%20Chord%20Picker%20beta%202.1c%20BB2011.ahk.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

Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
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



Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
Update 2.1e beta
Transpose Chord /Slash (Transposes the /note only)
Fixed Set-Chord-Hold
Added Set-Chord-Rest(,Shot,Hold,Push) (Will remove any current Rest Shot Hold Push first)

Biab Chord Picker Tool 2016 or later installer
64bit Biab Chord Picker (x64) beta 2.1e setup.exe

32bit Biab Chord Picker (x86) beta 2.1e setup.exe

Script and bb.jpg only Biab Chord Picker beta 2.1e.ahk.zip



Biab Chord Picker Tool 2015 to 2010 (if you can right click to edit the chord then it will work on your version, and if it's already highlighted then use this version)
It will work on older versions below 2010 but most of the editing chords won't, it can be modified to edit the chord via Alt+F5 Chord Options window, it depends on how many users are still using the older than 2010 versions ????

64bit Biab Chord Picker (x64) beta 2.1e (2015-earlier) setup.exe

32bit Biab Chord Picker (x86) beta 2.1e (2015-earlier) setup.exe

Script and bb.jpg only Biab Chord Picker beta 2.1e 2015-earlier.ahk.zip



Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
Update 2.1f beta
Transpose Selection
Edit/Transpose Beat
All Biab versions in 1
32/64bit installer
settings.ini to easily add/modify your Custom User Actions

Biab Chord Picker Tool 2.1f beta 32/64bit installer
Biab Chord Picker Tool (x64)(x86) beta 2.1f setup.exe

Biab Chord Picker Tool 2.1f beta script only
Biab Chord Picker beta 2.1f.ahk.zip

The 2009-earlier should work on all versions as it uses the Chord Options dialog to edit the chords.
In the 2017 & 2018 version the set to Bass Drums Piano Guitar Strings shortcuts were left out, this prevents the Chord Picker Tool from working correctly using 2009 mode in 2017 & 2018, however PG should have a fix out soon for both 2017 & 2018 to add the shortcuts back.

When you start the new version for the first time you will be asked to set the version in the bottom left, you can then change versions at anytime to try what suites you best.

After the version is set you can then also edit the settings.ini located in the install folder.
This will let you easily add/modify the Custom User Actions keys in the User tab.
Here's an example of adding an Unfold action to CA11 (Custom Actions 1 button 1) it's a simple matter of filling in name=*** and funct=*** of the buttons you need.
Alt+E (Edit menu) Down 10 Right Down 5 and Enter
!E,{Down 10},{Right},{Down 5},{Enter}
** Save a copy of your settings.ini !!!
See Biab Chord Picker ReadMe.txt in the install folder for more details.

The ERROR are the blank actions not set yet.
Code:
[BiabVersionSet]
key=2016_later
[CustomActionButtons1]
ButtonCA11name=Unfold
ButtonCA12name=ERROR
ButtonCA13name=ERROR
ButtonCA14name=ERROR
ButtonCA15name=ERROR
ButtonCA16name=ERROR
ButtonCA17name=ERROR
ButtonCA18name=ERROR
ButtonCA19name=ERROR
ButtonCA110name=ERROR
ButtonCA111name=ERROR
ButtonCA112name=ERROR
ButtonCA113name=ERROR
ButtonCA114name=ERROR
ButtonCA11funct=!E,{Down 10},{Right},{Down 5},{Enter}
ButtonCA12funct=ERROR
ButtonCA13funct=ERROR
ButtonCA14funct=ERROR
ButtonCA15funct=ERROR
ButtonCA16funct=ERROR
ButtonCA17funct=ERROR
ButtonCA18funct=ERROR
ButtonCA19funct=ERROR
ButtonCA110funct=ERROR
ButtonCA111funct=ERROR
ButtonCA112funct=ERROR
ButtonCA113funct=ERROR
ButtonCA114funct=ERROR
[CustomActionButtons2]
ButtonCA21name=ERROR
ButtonCA22name=ERROR
ButtonCA23name=ERROR
ButtonCA24name=ERROR
ButtonCA25name=ERROR
ButtonCA26name=ERROR
ButtonCA27name=ERROR
ButtonCA28name=ERROR
ButtonCA29name=ERROR
ButtonCA210name=ERROR
ButtonCA211name=ERROR
ButtonCA212name=ERROR
ButtonCA213name=ERROR
ButtonCA214name=ERROR
ButtonCA21funct=ERROR
ButtonCA22funct=ERROR
ButtonCA23funct=ERROR
ButtonCA24funct=ERROR
ButtonCA25funct=ERROR
ButtonCA26funct=ERROR
ButtonCA27funct=ERROR
ButtonCA28funct=ERROR
ButtonCA29funct=ERROR
ButtonCA210funct=ERROR
ButtonCA211funct=ERROR
ButtonCA212funct=ERROR
ButtonCA213funct=ERROR
ButtonCA214funct=ERROR
[CustomActionButtons3]
ButtonCA31name=ERROR
ButtonCA32name=ERROR
ButtonCA33name=ERROR
ButtonCA34name=ERROR
ButtonCA35name=ERROR
ButtonCA36name=ERROR
ButtonCA37name=ERROR
ButtonCA38name=ERROR
ButtonCA39name=ERROR
ButtonCA310name=ERROR
ButtonCA311name=ERROR
ButtonCA312name=ERROR
ButtonCA313name=ERROR
ButtonCA314name=ERROR
ButtonCA31funct=ERROR
ButtonCA32funct=ERROR
ButtonCA33funct=ERROR
ButtonCA34funct=ERROR
ButtonCA35funct=ERROR
ButtonCA36funct=ERROR
ButtonCA37funct=ERROR
ButtonCA38funct=ERROR
ButtonCA39funct=ERROR
ButtonCA310funct=ERROR
ButtonCA311funct=ERROR
ButtonCA312funct=ERROR
ButtonCA313funct=ERROR
ButtonCA314funct=ERROR
[CustomActionButtons4]
ButtonCA41name=ERROR
ButtonCA42name=ERROR
ButtonCA43name=ERROR
ButtonCA44name=ERROR
ButtonCA45name=ERROR
ButtonCA46name=ERROR
ButtonCA47name=ERROR
ButtonCA48name=ERROR
ButtonCA49name=ERROR
ButtonCA410name=ERROR
ButtonCA411name=ERROR
ButtonCA412name=ERROR
ButtonCA413name=ERROR
ButtonCA414name=ERROR
ButtonCA41funct=ERROR
ButtonCA42funct=ERROR
ButtonCA43funct=ERROR
ButtonCA44funct=ERROR
ButtonCA45funct=ERROR
ButtonCA46funct=ERROR
ButtonCA47funct=ERROR
ButtonCA48funct=ERROR
ButtonCA49funct=ERROR
ButtonCA410funct=ERROR
ButtonCA411funct=ERROR
ButtonCA412funct=ERROR
ButtonCA413funct=ERROR
ButtonCA414funct=



Add-ons and UserTracks for Band-in-a-Box
Joined: Nov 2012
Posts: 4,777
Veteran
Offline
Veteran
Joined: Nov 2012
Posts: 4,777
Honestly, why PG hasn't properly hired you already remains a mystery whistle


There's only one thing to do in crisis like this - Sleep on it!
----------------------------------------------------------------------
BBox 2022 Audiophile, Mac Pro Intel, OSX 10.6.8, 800x600 (TV VGA)
Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
Here are some examples for the User Action Menus:

Code:
Unfold
!{e},{Down 10},{Right},{Down 5},{Enter}

Freeze All
!{p},{Down 13},{Enter}

UnFreeze All
!{p},{Down 14},{Enter}


Jazz Up Chords
!{e},{Down 14},{Right},{Down 4},{Enter 2}


Jazz Down Chords
!{e},{Down 14},{Right},{Down 5},{Enter 2}

Output Chords
^{e},{Tab 13},{Enter}


you can add them where you like:

Code:
[BiabVersionSet]
key=2009_earlier
[CustomActionButtons1]
ButtonCA11name=Unfold
ButtonCA12name=Freeze All
ButtonCA13name=UnFreeze All
ButtonCA14name=Output Chords
ButtonCA15name=ERROR
ButtonCA16name=ERROR
ButtonCA17name=ERROR
ButtonCA18name=Jazz Up Chords
ButtonCA19name=Jazz Down Chords
ButtonCA110name=ERROR
ButtonCA111name=ERROR
ButtonCA112name=ERROR
ButtonCA113name=ERROR
ButtonCA114name=ERROR
ButtonCA11funct=!{e},{Down 10},{Right},{Down 5},{Enter}
ButtonCA12funct=!{p},{Down 13},{Enter}
ButtonCA13funct=!{p},{Down 14},{Enter}
ButtonCA14funct=^{e},{Tab 13},{Enter}
ButtonCA15funct=ERROR
ButtonCA16funct=ERROR
ButtonCA17funct=ERROR
ButtonCA18funct=!{e},{Down 14},{Right},{Down 4},{Enter 2}
ButtonCA19funct=!{e},{Down 14},{Right},{Down 5},{Enter 2}
ButtonCA110funct=ERROR
ButtonCA111funct=ERROR
ButtonCA112funct=ERROR
ButtonCA113funct=ERROR
ButtonCA114funct=ERROR
[CustomActionButtons2]
......



Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
Update 2.2
Chord Preview (Set Checkbox at bottom right to hear the chord)

Biab Chord Picker Tool 2.2 32/64bit installer
Biab Chord Picker Tool (x64)(x86) 2.2 setup.exe

Biab Chord Picker Tool 2.2 script only
Biab Chord Picker 2.2.ahk.zip

Add-ons and UserTracks for Band-in-a-Box
Joined: Dec 2011
Posts: 280
Apprentice
Offline
Apprentice
Joined: Dec 2011
Posts: 280
Originally Posted By: Pipeline
Update 2.2
Chord Preview (Set Checkbox at bottom right to hear the chord)

Biab Chord Picker Tool 2.2 32/64bit installer

Where can I find a tutorial in how to use the BIAB Chord Picker?

Inquiring minds would like to know. cool


Pepe aka Lt. Kojak
Milano, Italy
https://soundcloud.com/theodore-kojak/tracks
Hy-Bro Test Sound Files
Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
If you just click the buttons you will see what they do, it is pretty self explaining.
If you read back through the posts you will see how it all works.
If you can't work it out I will try and make a tutorial or video for it.

Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
BiabVST Chord Picker Tool version

This is set for Reaper but can be changed see WindowAHK-ID below.
If it works ok I can make a drop down for DAW choice.
It has not got as many editing functions as the Biab Chord Picker Tool but if they add chord edit to the VST it can be done.
You can change the Tempo with decimal point accuracy at any bar to follow the DAW tempo map with a button,
you can change Time Signature to 4/4 or 3/4 at any bar with a button.

Any problems right click > Run As Administrator

There is a bug in the current vst that will only add a shot hold rest push on a major chord.

AHK Script only
BiabVST Chord Picker Reaper.ahk.zip

32bit exe
BiabVST Chord Picker Reaper x86.zip

64bit exe
BiabVST Chord Picker Reaper x64.zip

WindowAHK-ID finds the window ID of your DAW eg. ahk_exe reaper.exe
Run it and select the DAW window, if you post your DAW ID I will make a script for it.
To diy just replace all instances of ahk_exe reaper.exe with your ID in the script.

AHK Script only
WindowAHK-ID.ahk.zip

32bit exe
WindowAHK-ID x86.zip

64bit exe
WindowAHK-ID x64.zip


Add-ons and UserTracks for Band-in-a-Box
Joined: Aug 2011
Posts: 10,125
Veteran
Offline
Veteran
Joined: Aug 2011
Posts: 10,125
Pipeline,

I'm not understanding how to use your latest tool, Window AHK.

1) Download WindowAHK-ID x64.zip to my desktop.
2) Extract to WindowAHK-ID x64.exe folder on my desktop.
3) Open the folder.
4) Find WindowAHK-ID x64.exe
5) Double click on WindowAHK-ID x64.exe and click through "unknown publisher" security warning.
6) Program window opens.
7) Now what?

Attached Files (Click to download or enlarge) (Only available when you are logged in)
Clipboard01.jpg (45.31 KB, 278 downloads)

Jim Fogle - 2024 BiaB (1111) RB (5) Ultra+ PAK
DAWs: Cakewalk by BandLab (CbB) - Standalone: Zoom MRS-8
Laptop: i3 Win 10, 8GB ram 500GB HDD
Desktop: i7 Win 11, 12GB ram 256GB SSD, 4 TB HDD
Music at: https://fogle622.wix.com/fogle622-audio-home
Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
7) Copy the window ID

This will tell AHK what window to send the keystrokes to.
If post that ID I will create a script and exe for that DAW.
Or just open the script in a text editor and replace all ahk_exe reaper.exe with your ID

Attached Files (Click to download or enlarge) (Only available when you are logged in)
AHK-Window-ID.gif (315.43 KB, 275 downloads)
Add-ons and UserTracks for Band-in-a-Box
Joined: Aug 2011
Posts: 10,125
Veteran
Offline
Veteran
Joined: Aug 2011
Posts: 10,125
Cakewalk by BandLab:
ahk_class Cakewalk Core
ahk_exe Cakewalk.exe

Audacity:
ahk_class wxWindowNR
ahk_exe audacity.exe

Sonar Home Studio:
ahk_class SONAR Home Studio Universal
ahk_exe SONAR.exe


Jim Fogle - 2024 BiaB (1111) RB (5) Ultra+ PAK
DAWs: Cakewalk by BandLab (CbB) - Standalone: Zoom MRS-8
Laptop: i3 Win 10, 8GB ram 500GB HDD
Desktop: i7 Win 11, 12GB ram 256GB SSD, 4 TB HDD
Music at: https://fogle622.wix.com/fogle622-audio-home
Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954

Last edited by Pipeline; 12/02/18 12:16 PM.
Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
Here's the Compiler, it will be in the AutoHotKey install folder, just select the script.ahk or drag it in and set destination script x64.exe or script x86.exe, choose either 32 Unicode or 64 Unicode and add an icon if you like, click Convert. If you want to create an installer Inno Setup

Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
Sent To: Bandlab Support

Quote:
"give all keystrokes to plug-in" is not working correctly.
If the window is active by clicking on the top of the vst window where the title is this makes the window Active and all keystrokes need to be sent to the vst.
At the moment you need to click on something inside the window for it to send this is not correct, in other DAW you only need to make the window Active without clicking on something inside the window.
In the attached gif when I activate the vst window on the left in Reaper it sends the keystrokes
when I activate the window on the right in BandLab AND set it to receive keystrokes it don't.
See I type the chord in on the left and it works but I type on the right and it don't.


Anyone else can send them one also if they like, just click Support in the Help Menu.


Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
Here is a Chord Picker for the Standalone:

BiabVST Chord Picker Standalone.zip


Add-ons and UserTracks for Band-in-a-Box
Joined: Mar 2017
Posts: 756
Journeyman
Offline
Journeyman
Joined: Mar 2017
Posts: 756
Hi Pipeline,

Edit: Ignore below, I managed to get it to work, but now I have a different problem, every time I enter a chord, the chord-picker minimizes to the tray. I can somewhat get it to work when I set BiaB and Chord picker to occupy the left and right sides of the screen, but then most of the options to the left of CP (such as the pushes and shots) are inaccessible. I realize this may be because I am on a laptop, and there is minimal "moniter real estate" but is there some way to get this working on a laptop nonetheless?



So much as I am ashamed to admit this, I've held off on installing this to date because I found all the lines of computer code a little bit intimidating, and told myself that I could get by with BiaB's built in "chord theory" function...which was one of my favorite upgrades of 2018 (or was it 2017?)

In any event, I just ran the installer (not the VST version) and the program launched in standalone, and I can't figure out how to get it to communicate with BiaB. Other than seeing the BiaB screen "blink" (disappear and reappear for a second) every time I try to enter a command, nothing else happens in the chordsheet regardless of what I do.

Please help!

Thanks in advance :-)

Deacon

Last edited by DeaconBlues09; 12/21/18 11:52 PM.

Band-in-a-Box 2021 PlusPAK w 2019 Bonus Pak. Custom Build Desktop PC W/ Windows 10 Home 64-bit. CPU: Intel Core i5-9600k @ 3.7GHz (6 core x 6 threads) RAM: 16GB DDR4. Storage 238GB SSD + 2.7 TB HDD. GPU: ZOTAC NVIDIA GeForce GTX 1050 Ti 4GB
Add-ons and UserTracks for Band-in-a-Box
Joined: Mar 2017
Posts: 756
Journeyman
Offline
Journeyman
Joined: Mar 2017
Posts: 756
Another issue:

When I tried to utilize the "set bass" option (for which I had to minimize the BiaB screen because laptop) which I'm assuming should have launched the RT picker dialogue in BiaB, it instead launched an additional instance of BiaB with a clean chord-sheet.

Is this normal?

Thanks again!


Band-in-a-Box 2021 PlusPAK w 2019 Bonus Pak. Custom Build Desktop PC W/ Windows 10 Home 64-bit. CPU: Intel Core i5-9600k @ 3.7GHz (6 core x 6 threads) RAM: 16GB DDR4. Storage 238GB SSD + 2.7 TB HDD. GPU: ZOTAC NVIDIA GeForce GTX 1050 Ti 4GB
Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
here's a demo

Full Screen


Add-ons and UserTracks for Band-in-a-Box
Joined: Mar 2017
Posts: 756
Journeyman
Offline
Journeyman
Joined: Mar 2017
Posts: 756
Thanks Pipeline,

Obviously I have much to explore here, and I suspect I will have a great amount of fun doing it. :-)


Band-in-a-Box 2021 PlusPAK w 2019 Bonus Pak. Custom Build Desktop PC W/ Windows 10 Home 64-bit. CPU: Intel Core i5-9600k @ 3.7GHz (6 core x 6 threads) RAM: 16GB DDR4. Storage 238GB SSD + 2.7 TB HDD. GPU: ZOTAC NVIDIA GeForce GTX 1050 Ti 4GB
Add-ons and UserTracks for Band-in-a-Box
Joined: Mar 2017
Posts: 756
Journeyman
Offline
Journeyman
Joined: Mar 2017
Posts: 756
OK, I see another problem I have now is that I simply cannot get the bottom row of options, where the preview chord and "always on top" options reside, to display at all--even if I have the CP tool on full screen.

Again, I'm afraid this has to with me being on a laptop (I prefer running BiaB in my desktop, but the thing is that one third of the week I live and work in an entirely different city from my main residence where my desktop is, so sorry for being such a PITA with this...I really appreciate all the effort you put into this!)


Band-in-a-Box 2021 PlusPAK w 2019 Bonus Pak. Custom Build Desktop PC W/ Windows 10 Home 64-bit. CPU: Intel Core i5-9600k @ 3.7GHz (6 core x 6 threads) RAM: 16GB DDR4. Storage 238GB SSD + 2.7 TB HDD. GPU: ZOTAC NVIDIA GeForce GTX 1050 Ti 4GB
Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
If you can up the resolution to 1600x900 instead of 1280x768 on your Ideapad ?

Add-ons and UserTracks for Band-in-a-Box
Joined: Mar 2017
Posts: 756
Journeyman
Offline
Journeyman
Joined: Mar 2017
Posts: 756
Originally Posted By: Pipeline
If you can up the resolution to 1600x900 instead of 1280x768 on your Ideapad ?


I'm afraid not :-( Maybe a lower resolution but one of the aspect ratios listed below would work?

Also, while you're here, (and I suspect this may be related) I recently connected an additional monitor to my laptop using an HDMI cable so I could have a dual monitor display, and set the external monitor as my primary in Windows' settings and have been having a plethora of issues with resizing/minimizing/always on top windows, not just for BiaB/RB but in Reaper as well. Is there any way I can make my laptop "forget" about the second display or whatever so that it behaves like it did before I ever connected it?

Finally, with respect to ADSR Sample Manager: I installed the program on my C hardrive, but placed the majority of my loops on the external drive (F) because I have more space there. I don't want ASDR to crash if I boot it up when my F drive is not connected if, say, I want to use it in Reaper. Is this something I need to be concerned about? Can I simply run it from C and add a library from F such that it operates as paths do for plugins like in Reaper or Minihost?

Btw, sorry for bombarding you with all these questions. I would generally simply experiment, but I've had issues in the past where if you set a path, and it's no longer there on next bootup, you can have ugly crashes or inconsistencies that can persist till kingdom come :-(

Thanks again!

Attached Files (Click to download or enlarge) (Only available when you are logged in)
Valid Modes.JPG (31.86 KB, 202 downloads)

Band-in-a-Box 2021 PlusPAK w 2019 Bonus Pak. Custom Build Desktop PC W/ Windows 10 Home 64-bit. CPU: Intel Core i5-9600k @ 3.7GHz (6 core x 6 threads) RAM: 16GB DDR4. Storage 238GB SSD + 2.7 TB HDD. GPU: ZOTAC NVIDIA GeForce GTX 1050 Ti 4GB
Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
You should be able to go to the screen resolution settings click on the external monitor 2 and remove it, you may have to plug it in first, remove so you just have 1 set as primary monitor.
You may have to go into Ati/AMD or NVidia settings.

I have ADSR on C: and ACID Loops on D:\ added to the ADSR Library, sometimes it has to wake the D: up from sleep that will delay at first but once spinning you should be right.

Add-ons and UserTracks for Band-in-a-Box
Joined: Nov 2005
Posts: 1,454
C
Expert
Offline
Expert
C
Joined: Nov 2005
Posts: 1,454
Thanks very much Pipeline, this seems like a very useful tool!

I'm finding a small problem here, I can't set the program to work with any specific BIAB version, as you can see here:

https://drive.google.com/file/d/1qqGHbqnUvo9byJe8RCQz4xOIOBYRrgXi/view?usp=sharing

Also, Set Chord Rest/Shots/Hold/Push...buttons are not working on my system, after clicking those buttons nothing happens. I don't know if that could be a related problem.






Last edited by Cerio; 12/22/18 08:39 AM.

BIAB 2024, latest build.
Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
You can run it as administrator as it may not be writing the settings.ini
In the install folder C:\Program Files\Biab Chord Picker Tool
settings.ini
[BiabVersionSet]
key=2016_later

Attached Files (Click to download or enlarge) (Only available when you are logged in)
Biab-CPT-RSHP.gif (248.08 KB, 183 downloads)
Add-ons and UserTracks for Band-in-a-Box
Joined: Nov 2005
Posts: 1,454
C
Expert
Offline
Expert
C
Joined: Nov 2005
Posts: 1,454
Yes, run it as administrator fixed the problem.

Thanks!


BIAB 2024, latest build.
Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
Originally Posted By: DeaconBlues09
...I'm afraid not :-( Maybe a lower resolution but one of the aspect ratios listed below would work?....


So 768 is the max you have I can try and squeeze it a up a bit to make a compact one for 768.

Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
This is a compact version for 768 resolution:

Biab Chord Picker Tool (x64)(x86) Compact 2.2.1 setup.exe

Attached Files (Click to download or enlarge) (Only available when you are logged in)
BBCPT-Compcat.png (488.66 KB, 1160 downloads)
Last edited by Pipeline; 12/26/18 09:10 AM.
Add-ons and UserTracks for Band-in-a-Box
Joined: Aug 2006
Posts: 7,799
R
Veteran
Offline
Veteran
R
Joined: Aug 2006
Posts: 7,799
when I set the bb version it closes and asks me to set up again and again and again


Lenovo Win 10 16 gig ram, Mac mini with 16 gig of ram, BiaB 2022, Realband, Harrison Mixbus 32c version 9.1324, Melodyne 5 editor, Presonus Audiobox 1818VSL, Presonus control app, Komplete 49 key controller.
Add-ons and UserTracks for Band-in-a-Box
Joined: Aug 2006
Posts: 7,799
R
Veteran
Offline
Veteran
R
Joined: Aug 2006
Posts: 7,799
so far its working


Lenovo Win 10 16 gig ram, Mac mini with 16 gig of ram, BiaB 2022, Realband, Harrison Mixbus 32c version 9.1324, Melodyne 5 editor, Presonus Audiobox 1818VSL, Presonus control app, Komplete 49 key controller.
Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
Originally Posted By: RobH
when I set the bb version it closes and asks me to set up again and again and again


Originally Posted By: Cerio
Thanks very much Pipeline, this seems like a very useful tool!

I'm finding a small problem here, I can't set the program to work with any specific BIAB version, as you can see here:

https://drive.google.com/file/d/1qqGHbqnUvo9byJe8RCQz4xOIOBYRrgXi/view?usp=sharing

Also, Set Chord Rest/Shots/Hold/Push...buttons are not working on my system, after clicking those buttons nothing happens. I don't know if that could be a related problem.


Originally Posted By: Pipeline
You can run it as administrator as it may not be writing the settings.ini
In the install folder C:\Program Files\Biab Chord Picker Tool
settings.ini
[BiabVersionSet]
key=2016_later



Originally Posted By: Cerio
Yes, run it as administrator fixed the problem.

Thanks!

Add-ons and UserTracks for Band-in-a-Box
Joined: Sep 2003
Posts: 1,082
w Offline
Expert
Offline
Expert
Joined: Sep 2003
Posts: 1,082
Mr Pipeline ,

could you please help Mr. Magoo by perhaps providing an actual download of the Mac version of the Free Biab & BiabVST Chord Picker Tool (look at the bottom of the page for the latest version.) Poor Mr. Magoo looked and looked but no luck . On the other hand if it is too much trouble then he is OK with that .

( yes, that what happens as you get older ) blush

Thanks .


Mac Audiophile 2020 2019 2018 2017 USB plus previous years versions

macOS Mojave - 10.14.6 @ Aug 16, 2019

iMac i3 3.6 GHz 8GB RAM 4K with Retina display

some examples @ sound cloud done with Mac Band and DAW's : https://soundcloud.com/you/tracks
Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
Have a look here https://www.pgmusic.com/forums/ubbthreads.php?ubb=showflat&Number=475833#Post475833 try the Java GUI and see if it works for you on the Mac as the tool can be created with java as there is no AutoHotKey app for Mac that will also create a GUI, unless you know of one ?
You can also request PG create a similar tool for users on both Win & Mac.

Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
Biab Plugin Chord Picker Tool Generic v1.1 for Most DAWs
This should work with most DAWs.

The 2 DAWs I found so far that don't send the keystrokes to the Biab Plugin window are BandLab and Cubase, so to fix this issue use
PluginFlipFlop if you already have JBridge.
Just load PluginFlipFlop (instrument of FX) then load the Biab Plugin (instrument of FX) into it.
Using PluginFlipFlop in Cubase will keep the VST window on top always.
Let me know what works and what don't.
(the transport buttons up the top are not working)
(the ^ ^^ Pushes still need implementing in the Plugin)
EDIT: Updated 1.1 > 1.2
BiabVST-Chord-Picker-Generic-v1.2.zip



Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
Fixed: the C on the All Tab was slow to enter

BiabVST-Chord-Picker-Generic-v1.2.zip

Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
Originally Posted By: rap429
any way to get it work in Ableton?


Yea same deal as BandLab and Cubase.
Load PluginFlipFlop (FX or instrument) then load BBvst (FX or instrument) into it.
If the BiabVst don't stay on top use an Always On Top app like the one in the link Always On Top 1.3
Joao from JBridge is going to make it stay on top.



Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
In Windows 10 if you are running Band in a Box as Administrator you will need to run the Chord Picker Tool also as Administrator to have access.

Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
Also
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

Add-ons and UserTracks for Band-in-a-Box
Joined: Apr 2021
Posts: 18
O
Enthusiast
Offline
Enthusiast
O
Joined: Apr 2021
Posts: 18
is there MAC version?

Add-ons and UserTracks for Band-in-a-Box
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
I tried real hard to find something like AutoHotkey for Mac but just couldn't see anything.

Add-ons and UserTracks for Band-in-a-Box
Joined: Jun 2009
Posts: 2,465
Veteran
Offline
Veteran
Joined: Jun 2009
Posts: 2,465
I don't know how long the links will work so I put them all here:
https://stash.reaper.fm/v/46803/AHK-Scripts.zip

Previous Thread
Next Thread
Go To
Page 1 of 3 1 2 3

Link Copied to Clipboard
ChatPG

Ask sales and support questions about Band-in-a-Box using natural language.

ChatPG's knowledge base includes the full Band-in-a-Box User Manual and sales information from the website.

PG Music News
Update Your PowerTracks Pro Audio 2024 Today!

Add updated printing options, enhanced tracks settings, smoother use of MGU and SGU (BB files) within PowerTracks, and more with the latest PowerTracks Pro Audio 2024 update!

Learn more about this free update for PowerTracks Pro Audio & download it at www.pgmusic.com/support_windows_pt.htm#2024_5

The Newest RealBand 2024 Update is Here!

The newest RealBand 2024 Build 5 update is now available!

Download and install this to your RealBand 2024 for updated print options, streamlined loading and saving of .SGU & MGU (BB) files, and to add a number of program adjustments that address user-reported bugs and concerns.

This free update is available to all RealBand 2024 users. To learn more about this update and download it, head to www.pgmusic.com/support.realband.htm#20245

The Band-in-a-Box® Flash Drive Backup Option

Today (April 5) is National Flash Drive Day!

Did you know... not only can you download your Band-in-a-Box® Pro, MegaPAK, or PlusPAK purchase - you can also choose to add a flash drive backup copy with the installation files for only $15? It even comes with a Band-in-a-Box® keychain!

For the larger Band-in-a-Box® packages (UltraPAK, UltraPAK+, Audiophile Edition), the hard drive backup copy is available for only $25. This will include a preinstalled and ready to use program, along with your installation files.

Backup copies are offered during the checkout process on our website.

Already purchased your e-delivery version, and now you wish you had a backup copy? It's not too late! If your purchase was for the current version of Band-in-a-Box®, you can still reach out to our team directly to place your backup copy order!

Note: the Band-in-a-Box® keychain is only included with flash drive backup copies, and cannot be purchased separately.

Handy flash drive tip: Always try plugging in a USB device the wrong way first? If your flash drive (or other USB plug) doesn't have a symbol to indicate which way is up, look for the side with a seam on the metal connector (it only has a line across one side) - that's the side that either faces down or to the left, depending on your port placement.

Update your Band-in-a-Box® 2024 for Windows® Today!

Update your Band-in-a-Box® 2024 for Windows for free with build 1111!

With this update, there's more control when saving images from the Print Preview window, we've added defaults to the MultiPicker for sorting and font size, updated printing options, updated RealTracks and other content, and addressed user-reported issues with the StylePicker, MIDI Soloists, key signature changes, and more!

Learn more about this free update for Band-in-a-Box® 2024 for Windows at www.pgmusic.com/support_windowsupdates.htm#1111

Band-in-a-Box® 2024 Review: 4.75 out of 5 Stars!

If you're looking for a in-depth review of the newest Band-in-a-Box® 2024 for Windows version, you'll definitely find it with Sound-Guy's latest review, Band-in-a-Box® 2024 for Windows Review: Incredible new capabilities to experiment, compose, arrange and mix songs.

A few excerpts:
"The Tracks view is possibly the single most powerful addition in 2024 and opens up a new way to edit and generate accompaniments. Combined with the new MultiPicker Library Window, it makes BIAB nearly perfect as an 'intelligent' composer/arranger program."

"MIDI SuperTracks partial generation showing six variations – each time the section is generated it can be instantly auditioned, re-generated or backed out to a previous generation – and you can do this with any track type. This is MAJOR! This takes musical experimentation and honing an arrangement to a new level, and faster than ever."

"Band in a Box continues to be an expansive musical tool-set for both novice and experienced musicians to experiment, compose, arrange and mix songs, as well as an extensive educational resource. It is huge, with hundreds of functions, more than any one person is likely to ever use. Yet, so is any DAW that I have used. BIAB can do some things that no DAW does, and this year BIAB has more DAW-like functions than ever."

Convenient Ways to Listen to Band-in-a-Box® Songs Created by Program Users!

The User Showcase Forum is an excellent place to share your Band-in-a-Box® songs and listen to songs other program users are creating!

There are other places you can listen to these songs too! Visit our User Showcase page to sort by genre, artist (forum name), song title, and date - each listing will direct you to the forum post for that song.

If you'd rather listen to these songs in one place, head to our Band-in-a-Box® Radio, where you'll have the option to select the genre playlist for your listening pleasure. This page has SoundCloud built in, so it won't redirect you. We've also added the link to the Artists SoundCloud page here, and a link to their forum post.

We hope you find some inspiration from this amazing collection of User Showcase Songs!

Congratulations to the 2023 User Showcase Award Winners!

We've just announced the 2023 User Showcase Award Winners!

There are 45 winners, each receiving a Band-in-a-Box 2024 UltraPAK! Read the official announcement to see if you've won.

Our User Showcase Forum receives more than 50 posts per day, with people sharing their Band-in-a-Box songs and providing feedback for other songs posted.

Thank you to everyone who has contributed!

Forum Statistics
Forums66
Topics81,590
Posts734,781
Members38,502
Most Online2,537
Jan 19th, 2020
Newest Members
cucahack, mandella, Tusar Sarkar, RTW, wtsy365
38,501 Registered Users
Top Posters(30 Days)
MarioD 189
DC Ron 111
WaoBand 80
dcuny 76
Today's Birthdays
Vrat Houdek
Powered by UBB.threads™ PHP Forum Software 7.7.5