Previous Thread
Index
Next Thread
Print Thread
Go To
Post your own Tips and Tricks here
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
This is a Chord Picker GUI created with AutoHotkey, see the guide below.

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.

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

Script only
https://www.dropbox.com/s/vmwy2ffpdqpllb3/Biab%20Chord%20Picker%20beta%201.c.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 this selects the Generate menu, (pressing the ALT key will underscore the shortcut key to use) 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 










Post your own Tips and Tricks here
Joined: Dec 2000
Posts: 12,675
Veteran
Offline
Veteran
Joined: Dec 2000
Posts: 12,675
Okay, Pipeline. Looks like you've given me some work to distract me this weekend from doing my honey do list. smile


John

Laptop-HP Omen I7 Win11Pro 32GB 2x2TB, 1x4TB SSD
Desktop-ASUS-I7 Win10Pro 32GB 2x1.5TB, 2x2TB, 1x4TB SATA

BB2025/UMC404HD/Casios/Cakewalk/Reaper/Studio One/MixBus/Notion/Finale/Dorico/Noteworthy/NI/Halion/IK

http://www.sus4chord.com
Post your own Tips and Tricks here
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
Great!, it will be good to see other users create and share their GUI's for quick function buttons for Biab and RealBand.

Post your own Tips and Tricks here
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
Here's a starter BB RB PT Action Button Set, you can rename the button and the keysend to what you like, just don't have any spaces in the name.
So I renamed BB1 > BB-Play/Stop:
and the keysend
ButtonBB1: > ButtonBB-Play/Stop:
the Send {space}
is sending the spacebar

"Hot Keys" - Keyboard Shortcuts for Band-in-a-Box Commands Realband & PowerTracks search Help > Function Keys
If there is not a hot key for what you need to do just use the menu, in dialogs you can use Tab (the amount of times you need) then Enter 1 or hold the ALT key down to see the shortcuts keys for each button.

Edit current style > Ctrl+Shift+F9
Send ^+{F9}

Play with last chorus looped > Ctrl+NUMPAD 1
Send ^{Numpad1}

(^=Ctrl +=Shift !=Alt #=Win Numpad 1=Numpad1)

Set tempo. Ctrl+Alt+T

I can renamed BB2 > BB-80bpm:
and the keysend
ButtonBB2: > ButtonBB-80bpm:
Send ^!{t}
Send 80
Send {enter 1}

I used lowercase "t"


http://xahlee.info/mswin/autohotkey_key_notations.html



Copy and paste into Notepad or SciTE4AutoHotKey then save and run.

the ; comment out the lines, so they are not used.

Code:
;Insert Color here like HEX 00C222
TabColors_Tab1=C29200
TabColors_Tab2=AD001F
TabColors_Tab3=000000

Gui, Font, S10 CWhite Bold, Arial
Gui, Add, CheckBox, x12 y210 w130 h20 gUpdate vCheck, Always on Top

Gui, Add, Tab, x2 y0 h250 w460 AltSubmit gTab vTab
	, Biab|RealBand|PowerTracks
	Gosub, Tab
Gui, Show, , BB RB PT Action Buttons 



; Band in a Box Tab Buttons
Gui, Tab, Biab
Gui, Font, S10 CBlack Bold, Arial

Gui, Add, Button, x12 y40 w100 h30 ,  BB-Play/Stop
Gui, Add, Button, x112 y40 w100 h30 , BB2
Gui, Add, Button, x212 y40 w100 h30 , BB3
Gui, Add, Button, x312 y40 w100 h30 , BB4
Gui, Add, Button, x12 y70 w100 h30 , BB5
Gui, Add, Button, x112 y70 w100 h30 , BB6
Gui, Add, Button, x212 y70 w100 h30 , BB7
Gui, Add, Button, x312 y70 w100 h30 , BB8
Gui, Add, Button, x12 y100 w100 h30 , BB9
Gui, Add, Button, x112 y100 w100 h30 , BB10
Gui, Add, Button, x212 y100 w100 h30 , BB11
Gui, Add, Button, x312 y100 w100 h30 , BB12
Gui, Add, Button, x12 y130 w100 h30 , BB13
Gui, Add, Button, x112 y130 w100 h30 , B14
Gui, Add, Button, x212 y130 w100 h30 , BB15
Gui, Add, Button, x312 y130 w100 h30 , BB16


; Realband Tab Buttons
Gui, Tab, Realband
Gui, Font, S10 CBlack Bold, Arial

Gui, Add, Button, x12 y40 w100 h30 , RB-Play/Stop
Gui, Add, Button, x112 y40 w100 h30 , RB2
Gui, Add, Button, x212 y40 w100 h30 , RB3
Gui, Add, Button, x312 y40 w100 h30 , RB4
Gui, Add, Button, x12 y70 w100 h30 , RB5
Gui, Add, Button, x112 y70 w100 h30 , RB6
Gui, Add, Button, x212 y70 w100 h30 , RB7
Gui, Add, Button, x312 y70 w100 h30 , RB8
Gui, Add, Button, x12 y100 w100 h30 , RB9
Gui, Add, Button, x112 y100 w100 h30 , RB10
Gui, Add, Button, x212 y100 w100 h30 , RB11
Gui, Add, Button, x312 y100 w100 h30 , RB12
Gui, Add, Button, x12 y130 w100 h30 , RB13
Gui, Add, Button, x112 y130 w100 h30 , B14
Gui, Add, Button, x212 y130 w100 h30 , RB15
Gui, Add, Button, x312 y130 w100 h30 , RB16


; PowerTracks Tab Buttons
Gui, Tab, PowerTracks
Gui, Font, S10 CBlack Bold, Arial

Gui, Add, Button, x12 y40 w100 h30 , PT-Play/Stop
Gui, Add, Button, x112 y40 w100 h30 , PT2
Gui, Add, Button, x212 y40 w100 h30 , PT3
Gui, Add, Button, x312 y40 w100 h30 , PT4
Gui, Add, Button, x12 y70 w100 h30 , PT5
Gui, Add, Button, x112 y70 w100 h30 , PT6
Gui, Add, Button, x212 y70 w100 h30 , PT7
Gui, Add, Button, x312 y70 w100 h30 , PT8
Gui, Add, Button, x12 y100 w100 h30 , PT9
Gui, Add, Button, x112 y100 w100 h30 , PT10
Gui, Add, Button, x212 y100 w100 h30 , PT11
Gui, Add, Button, x312 y100 w100 h30 , PT12
Gui, Add, Button, x12 y130 w100 h30 , PT13
Gui, Add, Button, x112 y130 w100 h30 , B14
Gui, Add, Button, x212 y130 w100 h30 , PT15
Gui, Add, Button, x312 y130 w100 h30 , PT16




; 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)

return

Tab:
GuiControlGet, Tab
Gui, Color, % TabColors_Tab%Tab%
return


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


; Send Key Band in a Box

ButtonBB-Play/Stop:
winactivate,ahk_class TBandWindow
Send  {Space}
Return

ButtonBB2:
winactivate,ahk_class TBandWindow
Send  {Space}
Return

ButtonBB3:
winactivate,ahk_class TBandWindow
Send  {Space}
Return

ButtonBB4:
winactivate,ahk_class TBandWindow
Send  {Space}
Return

ButtonBB5:
winactivate,ahk_class TBandWindow
Send  {Space}
Return

ButtonBB6:
winactivate,ahk_class TBandWindow
Send  {Space}
Return

ButtonBB7:
winactivate,ahk_class TBandWindow
Send  {Space}
Return

ButtonBB8:
winactivate,ahk_class TBandWindow
Send  {Space}
Return

ButtonBB9:
winactivate,ahk_class TBandWindow
Send  {Space}
Return

ButtonBB10:
winactivate,ahk_class TBandWindow
Send  {Space}
Return

ButtonBB11:
winactivate,ahk_class TBandWindow
Send  {Space}
Return

ButtonBB12:
winactivate,ahk_class TBandWindow
Send  {Space}
Return

ButtonBB13:
winactivate,ahk_class TBandWindow
Send  {Space}
Return

ButtonBB14:
winactivate,ahk_class TBandWindow
Send  {Space}
Return

ButtonBB15:
winactivate,ahk_class TBandWindow
Send  {Space}
Return

ButtonBB16:
winactivate,ahk_class TBandWindow
Send  {Space}
Return



; Send Key Realband

ButtonRB-Play/Stop:
winactivate,ahk_class RealBand
Send  {Space}
Return

ButtonRB2:
winactivate,ahk_class RealBand
Send  {Space}
Return

ButtonRB3:
winactivate,ahk_class RealBand
Send  {Space}
Return

ButtonRB4:
winactivate,ahk_class RealBand
Send  {Space}
Return

ButtonRB5:
winactivate,ahk_class RealBand
Send  {Space}
Return

ButtonRB6:
winactivate,ahk_class RealBand
Send  {Space}
Return

ButtonRB7:
winactivate,ahk_class RealBand
Send  {Space}
Return

ButtonRB8:
winactivate,ahk_class RealBand
Send  {Space}
Return

ButtonRB9:
winactivate,ahk_class RealBand
Send  {Space}
Return

ButtonRB10:
winactivate,ahk_class RealBand
Send  {Space}
Return

ButtonRB11:
winactivate,ahk_class RealBand
Send  {Space}
Return

ButtonRB12:
winactivate,ahk_class RealBand
Send  {Space}
Return

ButtonRB13:
winactivate,ahk_class RealBand
Send  {Space}
Return

ButtonRB14:
winactivate,ahk_class RealBand
Send  {Space}
Return

ButtonRB15:
winactivate,ahk_class RealBand
Send  {Space}
Return

ButtonRB16:
winactivate,ahk_class RealBand
Send  {Space}
Return


; Send Key PowerTracks

ButtonPT-Play/Stop:
winactivate,ahk_class PowerTracks
Send  {Space}
Return

ButtonPT2:
winactivate,ahk_class PowerTracks
Send  {Space}
Return

ButtonPT3:
winactivate,ahk_class PowerTracks
Send  {Space}
Return

ButtonPT4:
winactivate,ahk_class PowerTracks
Send  {Space}
Return

ButtonPT5:
winactivate,ahk_class PowerTracks
Send  {Space}
Return

ButtonPT6:
winactivate,ahk_class PowerTracks
Send  {Space}
Return

ButtonPT7:
winactivate,ahk_class PowerTracks
Send  {Space}
Return

ButtonPT8:
winactivate,ahk_class PowerTracks
Send  {Space}
Return

ButtonPT9:
winactivate,ahk_class PowerTracks
Send  {Space}
Return

ButtonPT10:
winactivate,ahk_class PowerTracks
Send  {Space}
Return

ButtonPT11:
winactivate,ahk_class PowerTracks
Send  {Space}
Return

ButtonPT12:
winactivate,ahk_class PowerTracks
Send  {Space}
Return

ButtonPT13:
winactivate,ahk_class PowerTracks
Send  {Space}
Return

ButtonPT14:
winactivate,ahk_class PowerTracks
Send  {Space}
Return

ButtonPT15:
winactivate,ahk_class PowerTracks
Send  {Space}
Return

ButtonPT16:
winactivate,ahk_class PowerTracks
Send  {Space}
Return



GuiClose:
GuiEscape:
ExitApp




Attached Files (Click to download or enlarge) (Only available when you are logged in)
BB-RB-PT-GUI.gif (346 KB, 190 downloads)
Post your own Tips and Tricks here
Joined: Apr 2007
Posts: 311
Journeyman
Offline
Journeyman
Joined: Apr 2007
Posts: 311
This is a very useful idea and helpful especially quicker if you are inputting longer chord names with extensions. I had a quick go but found a few anomalies. I am in the UK so not sure if this maight be a UK computer keyboard issue. I called up B then m7 and it wrote Bb. I found that the m7 produced a flat in any key chord inputted. I used the tool to iput C maj7 and then when I went to the 2nd half of the bar the Cmajor 7 previoulsy there just disappeared. I tried it with some other major 7ths and each time it disappeared when you continued. I also used the undo control in the tool but it removed the previous chord and not the last thing being worked on. Tried inputting a push and it seems you have to call it up first before the chord. This is a problem as I find you are not always sure about adding pushes etc until afterwards.

I think it is a great idea but might need some testing. Have you had other feedback yet?

Post your own Tips and Tricks here
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
You are the only feedback I've had ! Thanks !
The m7 m6 Maj7 just had typos.
The undo will undo the last entered chord, it won't undo the current chord you are typing, it just sends the normal undo command Ctrl+Z
The Pushes ^ or ^^ are always put before the chord, that's just how Biab works, I will see if I can work out a way to add the ^ after the chord has been entered.

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

If you find anymore let me know, they are easy to correct in Notepad:

Attached Files (Click to download or enlarge) (Only available when you are logged in)
Chord-Picker-Typo.png (29.05 KB, 98 downloads)
Last edited by Pipeline; 03/29/18 07:25 PM.
Post your own Tips and Tricks here
Joined: Apr 2007
Posts: 311
Journeyman
Offline
Journeyman
Joined: Apr 2007
Posts: 311
You have so many great ideas - they should put you on the team! I’ll keep,using it and provide more feedback if helpful.

Cheers

Tony

Post your own Tips and Tricks here
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
Yes that would be good, anymore ideas let me know.


Post your own Tips and Tricks here
Joined: Dec 2000
Posts: 12,675
Veteran
Offline
Veteran
Joined: Dec 2000
Posts: 12,675
I wanted to get to this over the weekend, but the "honey do" list and Easter activities prevailed.

I'll see if I can take a look this weekend.


John

Laptop-HP Omen I7 Win11Pro 32GB 2x2TB, 1x4TB SSD
Desktop-ASUS-I7 Win10Pro 32GB 2x1.5TB, 2x2TB, 1x4TB SATA

BB2025/UMC404HD/Casios/Cakewalk/Reaper/Studio One/MixBus/Notion/Finale/Dorico/Noteworthy/NI/Halion/IK

http://www.sus4chord.com
Previous Thread
Next Thread
Go To

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
XPro and Xtra Styles PAKs Special Extended Until August 31st!

XPro & Xtra Styles PAKs Special Extended Until August 31st!

The XPro Styles PAKs and Xtra Styles PAKs special offers are now available until August 31st at 11:59pm PDT!

Ready to take your Band-in-a-Box® 2025 experience to the next level? Now’s the perfect time! Expand your style library with XPro and Xtra Styles PAKs—packed with a wide variety of genres to inspire your next musical creation.

What are XPro Styles and Xtra Styles PAKs?

XPro Styles PAKs are styles that work with any version (Pro, MegaPAK, UltraPAK, UltraPAK+, or Audiophile Edition) of Band-in-a-Box® 2025 (or higher). XPro Styles PAKS 1-9 includes 900 styles!

Xtra Styles PAKs are styles that work with the UltraPAK, UltraPAK+, or Audiophile Edition of Band-in-a-Box® 2025 (or higher). With over 3,500 styles (and 35 MIDI styles) included in Xtra Styles PAKs 1-20, the possibilities are endless!

Get the XPro Styles PAKs 1 - 9 for only $29 ea (Reg. $49 ea), or get them all in the XPro Styles PAK Bundle for only $149 (reg. $299)! Listen to demos and order now! For Windows or for Mac.

Note: XPro Styles PAKs require Band-in-a-Box® 2025 or higher and are compatible with ANY package, including the Pro, MegaPAK, UltraPAK, UltraPAK+, and Audiophile Edition.

Get Xtra Styles PAKs 1 - 20 are on special for only $29 each (reg $49), or get all 19 PAKs for $199 (reg $399)! Listen to demos and order now! For Windows or for Mac.

Note: The Xtra Styles require the UltraPAK, UltraPAK+, or Audiophile Edition of Band-in-a-Box®. (Xtra Styles PAK 19 requires the 2025 or higher UltraPAK, UltraPAK+, or Audiophile Edition. They will not work with the Pro or MegaPAK version because they need the RealTracks from the UltraPAK, UltraPAK+, or Audiophile Edition.

Don’t miss this chance to supercharge your Band-in-a-Box setup—at a great price!

Mac 2025 Special Upgrade Offers Extended Until August 15th!

It's not too late to upgrade to Band-in-a-Box® 2025 for Mac® and save! We've extended our special until August 15, 2025!

We've added many major new features to Band-in-a-Box® 2025 for Mac®, including advanced AI tools like the amazing BB Stem Splitter and AI Lyrics Generator, as well as VST3 plugin support, and Equalize Temp. Plus, there’s a new one-stop MIDI Patches Picker with over 1,100 MIDI patches to choose from, all neatly categorized by GM numbers. The MultiPicker Library is enhanced with tabs for the SongPicker, MIDI Patch Picker, Chord Builder, AI Lyrics Generator, and Song Titles Browser, and the tabs are organized into logical groups. The Audiophile Edition is enhanced with FLAC files , which are 60% smaller than AIFF files while maintaining identical audio quality, and now ships on a fast 1TB SSD, and much more!

Check out all the new features in Band-in-a-Box® 2025 for Mac® here:

Purchase your Band-in-a-Box® 2025 for Mac during our special to save up to 50% off your upgrade purchase and receive a FREE BONUS PAK of amazing new Add-ons. These include the 2025 RealCombos Booster PAK, Look Ma! More MIDI 13: Country & Americana, Instrumental Studies Set 22: 2-Hand Piano Soloing - Rhythm Changes, MIDI SuperTracks Set 44: Jazz Piano, Artist Performance Set 17: Songs with Vocals 7, Playable RealTracks Set 4, RealDrums Stems Set 7: Jazz with Mike Clark, and more!

Upgrade to the 2025 49-PAK for just $49 and add 20 Bonus Unreleased RealTracks and 20 RealStyles, FLAC Files for the 20 Bonus Unreleased RealTracks, Look Ma! More MIDI 14: SynthMaster, MIDI SuperTracks Set 45: More SynthMaster, Artist Performance Set 18: Songs with Vocals 8, and RealDrums Stems Set 8: Pop, Funk & More with Jerry Roe.
Learn more about the Bonus PAKs!

New RealTracks Released with Band-in-a-Box 2025!

We’ve expanded the Band-in-a-Box® RealTracks library with 202 incredible new RealTracks (in sets 449-467) across Jazz, Blues, Funk, World, Pop, Rock, Country, Americana, and Praise & Worship—featuring your most requested styles!

Jazz, Blues & World (Sets 449–455):
These RealTracks includes “Soul Jazz” with Neil Swainson (bass), Mike Clark (drums), Charles Treadway (organ), Miles Black (piano), and Brent Mason (guitar). Enjoy “Requested ’60s” jazz, classic acoustic blues with Colin Linden, and more of our popular 2-handed piano soloing. Plus, a RealTracks first—Tango with bandoneon, recorded in Argentina!

Rock & Pop (Sets 456–461):
This collection includes Disco, slap bass ‘70s/‘80s pop, modern and ‘80s metal with Andy Wood, and a unique “Songwriter Potpourri” featuring Chinese folk instruments, piano, banjo, and more. You’ll also find a muted electric guitar style (a RealTracks first!) and “Producer Layered Guitar” styles for slick "produced" sound.

Country, Americana & Praise (Sets 462–467):
We’ve added new RealTracks across bro country, Americana, praise & worship, vintage country, and songwriter piano. Highlights include Brent Mason (electric guitar), Eddie Bayers (drums), Doug Jernigan (pedal steel), John Jarvis (piano), Glen Duncan (banjo, mandolin & fiddle), Mike Harrison (electric bass) and more—offering everything from modern sounds to heartfelt Americana styles

Check out all the 202 New RealTracks (in sets 456-467)

And, if you are looking for more, the 2025 49-PAK (for $49) includes an additional 20 RealTracks with exciting new sounds and genre-spanning styles. Enjoy RealTracks firsts like Chinese instruments (guzheng & dizi), the bandoneon in an authentic Argentine tango trio, and the classic “tic-tac” baritone guitar for vintage country.

You’ll also get slick ’80s metal guitar from Andy Wood, modern metal with guitarist Nico Santora, bass player Nick Schendzielos, and drummer Aaron Stechauner, more praise & worship, indie-folk, modern/bro country with Brent Mason, and “Songwriter Americana” with Johnny Hiland.

Plus, enjoy user-requested styles like Soul Jazz RealDrums, fast Celtic Strathspey guitar, and Chill Hop piano & drums!

The 2025 49-PAK is loaded with other great new add-ons as well. Learn more about the 2025 49-PAK!

Bonus PAKs for Band-in-a-Box 2025 for Mac!

With your version 2025 for Mac Pro, MegaPAK, UltraPAK, UltraPAK+, Audiophile Edition or PlusPAK purchase, we'll include a Bonus PAK full of great new Add-ons FREE! Or upgrade to the 2025 49-PAK for only $49 to receive even more NEW Add-ons including 20 additional RealTracks!

These PAKs are loaded with additional add-ons to supercharge your Band-in-a-Box®!

This Free Bonus PAK includes:

  • The 2025 RealCombos Booster PAK: -For Pro customers, this includes 33 new RealTracks and 65+ new RealStyles. -For MegaPAK customers, this includes 29 new RealTracks and 45+ new RealStyles. -For UltraPAK customers, this includes 20 new RealStyles.
  • Look Ma! More MIDI 13: Country & Americana
  • Instrumental Studies Set 22: 2-Hand Piano Soloing - Rhythm Changes
  • MIDI SuperTracks Set 44: Jazz Piano
  • Artist Performance Set 17: Songs with Vocals 7
  • Playable RealTracks Set 4
  • RealDrums Stems Set 7: Jazz with Mike Clark
  • SynthMaster Sounds and Styles (with audio demos)
  • 128 GM MIDI Patch Audio Demos.

Looking for more great add-ons, then upgrade to the 2025 49-PAK for just $49 and you'll get:

  • 20 Bonus Unreleased RealTracks and RealDrums with 20 RealStyles,
  • FLAC Files (lossless audio files) for the 20 Bonus Unreleased RealTracks and RealDrums
  • Look Ma! More MIDI 14: SynthMaster,
  • Instrumental Studies Set 23: More '80s Hard Rock Soloing,
  • MIDI SuperTracks Set 45: More SynthMaster
  • Artist Performance Set 18: Songs with Vocals 8
  • RealDrums Stems Set 8: Pop, Funk & More with Jerry Roe

Learn more about the Bonus PAKs for Band-in-a-Box® 2025 for Mac®!

New! Xtra Styles PAK 20 for Band-in-a-Box 2025 and Higher for Mac!

Xtra Styles PAK 20 for Mac & Windows Band-in-a-Box version 2025 (and higher) is here with 200 brand new RealStyles!

We're excited to bring you our latest and greatest in the all new Xtra Styles PAK 20 for Band-in-a-Box! This fresh installment is packed with 200 all-new styles spanning the rock & pop, jazz, and country genres you've come to expect, as well as the exciting inclusion of electronic styles!

In this PAK you’ll discover: Minimalist Modern Funk, New Wave Synth Pop, Hard Bop Latin Groove, Gospel Country Shuffle, Cinematic Synthwave, '60s Motown, Funky Lo-Fi Bossa, Heavy 1980s Metal, Soft Muted 12-8 Folk, J-Pop Jazz Fusion, and many more!

All the Xtra Styles PAKs 1 - 20 are on special for only $29 each (reg $49), or get all 209 PAKs for $199 (reg $399)! Order now!

Learn more and listen to demos of the Xtra Styles PAK 20.

Video: Xtra Styles PAK 20 Overview & Styles Demos: Watch now!

Note: The Xtra Styles require the UltraPAK, UltraPAK+, or Audiophile Edition of Band-in-a-Box®. (Xtra Styles PAK 20 requires the 2025 or higher UltraPAK, UltraPAK+, or Audiophile Edition. They will not work with the Pro or MegaPAK version because they need the RealTracks from the UltraPAK, UltraPAK+, or Audiophile Edition.

New! XPro Styles PAK 9 for Band-in-a-Box 2025 and higher for Mac!

We've just released XPro Styles PAK 9 for Mac & Windows Band-in-a-Box version 2025 (and higher) with 100 brand new RealStyles, plus 29 RealTracks/RealDrums!

We've been hard at it to bring you the latest and greatest in this 9th installment of our popular XPro Styles PAK series! Included are 75 styles spanning the rock & pop, jazz, and country genres (25 styles each) that fans have come to expect, as well as 25 styles in this volume's wildcard genre: funk & R&B!

If you're itching to get a sneak peek at what's included in XPro Styles PAK 9, here is a small helping of what you can look forward to: Funky R&B Horns, Upbeat Celtic Rock, Jazz Fusion Salsa, Gentle Indie Folk, Cool '60s Soul, Funky '70s R&B, Smooth Jazz Hip Hop, Acoustic Rockabilly Swing, Funky Reggae Dub, Dreamy Retro Latin Jazz, Retro Soul-Rock Fusion, and much more!

Special Pricing! Until July 31, 2024, all the XPro Styles PAKs 1 - 9 are on sale for only $29 ea (Reg. $49 ea), or get them all in the XPro Styles PAK Bundle for only $149 (reg. $299)! Order now!

Learn more and listen to demos of XPro Styles PAKs.

Video: XPro Styles PAK 9 Overview & Styles Demos: Watch now!

XPro Styles PAKs require Band-in-a-Box® 2025 or higher and are compatible with ANY package, including the Pro, MegaPAK, UltraPAK, UltraPAK+, and Audiophile Edition.

New! Xtra Styles PAK 20 for Band-in-a-Box 2025 and Higher for Windows!

Xtra Styles PAK 20 for Windows & Mac Band-in-a-Box version 2025 (and higher) is here with 200 brand new RealStyles!

We're excited to bring you our latest and greatest in the all new Xtra Styles PAK 20 for Band-in-a-Box! This fresh installment is packed with 200 all-new styles spanning the rock & pop, jazz, and country genres you've come to expect, as well as the exciting inclusion of electronic styles!

In this PAK you’ll discover: Minimalist Modern Funk, New Wave Synth Pop, Hard Bop Latin Groove, Gospel Country Shuffle, Cinematic Synthwave, '60s Motown, Funky Lo-Fi Bossa, Heavy 1980s Metal, Soft Muted 12-8 Folk, J-Pop Jazz Fusion, and many more!

All the Xtra Styles PAKs 1 - 20 are on special for only $29 each (reg $49), or get all 209 PAKs for $199 (reg $399)! Order now!

Learn more and listen to demos of the Xtra Styles PAK 20.

Video: Xtra Styles PAK 20 Overview & Styles Demos: Watch now!

Note: The Xtra Styles require the UltraPAK, UltraPAK+, or Audiophile Edition of Band-in-a-Box®. (Xtra Styles PAK 20 requires the 2025 or higher UltraPAK, UltraPAK+, or Audiophile Edition. They will not work with the Pro or MegaPAK version because they need the RealTracks from the UltraPAK, UltraPAK+, or Audiophile Edition.

Forum Statistics
Forums58
Topics84,532
Posts780,564
Members39,682
Most Online25,754
Jan 24th, 2025
Newest Members
mdbaharzaman, smeet, Bob Mesquita, rchovin, Troxy
39,682 Registered Users
Top Posters(30 Days)
MarioD 144
WaoBand 107
rsdean 88
DC Ron 88
Today's Birthdays
John F.
Powered by UBB.threads™ PHP Forum Software 7.7.5