Previous Thread
Index
Next Thread
Print Thread
Go To
#678258 10/18/21 01:25 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
Scripting will allow you to create a single action or a GUI.
Hopefully this should be added to the Biab menu "Scripts"
so any AHK scripts in \bb\Scripts will shown in the menu and run from there with one click.
Any ahk scripts in sub folders will show in sub menus allowing you to put them in categories.

To get started Download https://www.autohotkey.com/
If you have Biab running As Administrator go to the install folder
C:\Program Files\AutoHotkey and set AutoHotkey.exe to Run As Administrator.

Here is a simple basic action to set the Tempo
Code:
#SingleInstance Force

winactivate, ahk_class TBandWindow
Send, ^!t

ExitApp
copy and paste into Notepad and save as Edit Tempo.ahk

winactivate will focus on the Biab window (ahk_class TBandWindow)
you get the window or dialog name by running WindowSpy.ahk and clicking on the window or dialog you want to focus on and it will give you the ahk_class name.

Send will send a keystroke or combination ^!t is ctrl+alt+t

^ = ctrl
+ = shift
! = alt
# = win

If we want to set the Tempo to 80bpm
Code:
#SingleInstance Force

winactivate, ahk_class TBandWindow
Send, ^!t
Send, 80
Send, {Enter}

ExitApp

{Enter} will send enter key to enter amount and close dialog.

To access menus we use WinMenuSelectItem
Code:
#SingleInstance Force

WinMenuSelectItem, ahk_class TBandWindow, , Edit, Insert Bar(s)...

ExitApp

The name needs to be exactly the same as in the actual menu.

Sleep will give a delay to give Biab time to run a function before sending another command.
Sleep, 1000 = 1 sec delay
so you can put that in the line before a Send to give Biab a bit of time to do what it needs to do.

Some Dialogs will allow short keys so if you press alt key they will show an undersccore for the shortcut key, so we
Send, !d
To navigate you can Send, {Tab} (this will remove Harmony)
Code:
#SingleInstance Force
WinMenuSelectItem, ahk_class TBandWindow, , Harmony, Melody Harmony (select)...
Sleep, 500
winactivate, ahk_class TSELECTMELODYHARMONYDIALOG
Send, {Tab 7}
Send, {Enter}

ExitApp

Send, {Tab 7} = send Tab 7 times
Send, +{Tab 3} = send shift+tab 3 times

To put a pause or message box with Ok button
MsgBox, Text to Show

Here's a simple always on top GUI with 1 button.
You can add more buttons, each button (gAction01) will have a function (Action01: ???? Return) below:

Code:
#NoEnv
#SingleInstance Force

Gui, +AlwaysOnTop

Gui, Font, S10 cBlue Bold, Arial
Gui, Add, Text, x10 y10, Some Text

Gui, Add, Button, x10 y30 h38 w130 gAction01, Name of Button

Gui Show, w300 h300, GUI Window Name

Return


Action01:
winactivate, ahk_class TBandWindow
Send, ^!t
Send, 80
Send, {Enter}

Return

GuiClose:
GuiEscape:
ExitApp


There is no end of info for doing almost anything, let me know what action you need or just do an internet search: autohotkey "what I want to do"

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 create your own custom floating menu
BB21-Menu-Clone-ENG.ahk.mp4
Instead of MenuHandler change it to the function name Action22 and add that function below

Action22:


Return


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
User Video: Band-in-a-Box® + ChatGPT = Impressed the BOSS!

Since AI is now readily available online as a resource for many things, we recently put together and shared a video where we demonstrated how to create a song using Band-in-a-Box®, ChatGPT, and Synth V; we've also shared a Bob Doyle Media video, Convert MIDI Chords into AI Vocal Harmonies with ACE Studio and Band in A Box, showing how they utilize AI for their song projects. Now it's time to share Henry's video, Band-in-a-Box + ChatGPT = Impressed the BOSS!, where he demonstrates how to use ChatGPT and Band-in-a-Box to whip a song project together in only 3-4 hours.

Watch the video.

Visit Henry Clarke's YouTube Channel, Henry Clarke - Senior Musicians Unite, to find a large collection of tutorials showing the viewer how to achieve amazing results using Band-in-a-Box®!

Band-in-a-Box User Video Tutorials!

If you've reviewed our Support page, you've probably noticed the Videos page, which separates our Band-in-a-Box® tutorial videos by category: Overview, VST DAW Plugin, Setup, Beginner, Intermediate, Advanced, and there's even an Archive category to go down memory lane... (You'll also find these videos on our YouTube Channel.)

It's always great to hear how other Band-in-a-Box® users create their songs, especially when they explain in detail what they're doing. Like Henry Clarke's YouTube Channel, Henry Clarke - Senior Musicians Unite! There you'll find his ALL Band-in-a-Box Tutorials playlist with over 50 videos! His top-three most watched videos include "How to Get Started with Band-in-a-Box," "How I use the Audio Chord Wizard in Band-in-a-Box," and "How to Create An Effective Solo Using Band-in-a-Box" - however he touches on many other topics and also demonstrates his own Band-in-a-Box® songs in the Band-in-a-Box Created Songs playlist!

You're guaranteed to find some helpful videos when you visit Henry Clarke's channel!

Band-in-a-Box® 2024 Italian for Windows is Here!

Ci siamo dati da fare e abbiamo aggiunto oltre 50 nuove funzionalità e una straordinaria raccolta di nuovi contenuti, tra cui 222 RealTracks, nuovi RealStyles, MIDI SuperTracks, Instrumental Studies, "Songs with Vocals" Artist Performance Sets, Playable RealTracks Set 3, Playable RealDrums Set 2, due nuovi set di "RealDrums Stems", XPro Styles PAK 6, Xtra Styles PAK 17 e altro ancora!

Tutti Pacchetti | Nuove Caratteristiche

Band-in-a-Box® 2024 French for Windows is Here!


Band-in-a-Box® 2024 apporte plus de 50 fonctions nouvelles ainsi qu'une importante de contenus nouveaux à savoir : 222 RealTracks, des RealStyles nouveaux, des SuperTracks MIDI, des Etudes d'Instruments, des Prestations d'Artistes, des "Morceaux avec Choeurs", un Set 3 de Tracks Jouables, un Set 2 de RealDrums Jouables, deux nouveaux Sets de "RealDrums Stems", des Styles XPro PAK 6, des Xtra Styles PAK 17 et bien plus encore!

Tous Packages | Nouvelles Fonctionnalités

Video: Making a Song with Band-in-a-Box®, ChatGPT, and Synth V

Take your Band-in-a-Box® project to a whole new level when you incorporate ChatGPT and Synth V to add lyrics and vocals to your song!

We wanted to demonstrate how this is done with our video, where we show you how to go from nothing to a finished "radio ready" modern pop song by combining the features of Band-in-a-Box®, ChatGPT, and Synth V!

Listen to the finished song, so you get a listen to the finished product: https://demos.pgmusic.com/misc/behindthefame.m4a

If you like it, watch the video. Either way, let's hear your comments!

Henry Clarke: Revolutionize Your Band-in-Box® Tracks with Regenerating Function

One of the new features added with Band-in-Box® 2024 is the Tracks Window, which will look familiar if you've worked with other DAWs.

Henry Clarke explains why he loves the Re-generation function within the Tracks Window in their video Revolutionize Your Band-in-Box® Tracks with Regenerating Function.

Watch video.

Learn even more about what the Tracks Window can do with our video Band-in-a-Box® 2024: The Tracks Window.

User Video: Convert MIDI Chords into AI Vocal Harmonies with ACE Studio and Band-in-a-Box®

The Bob Doyle Media YouTube channel is known for demonstrating how you can creatively incorporate AI into your projects - from your song projects to avatar building to face swapping, and more!

His latest video, Convert MIDI Chords into AI Vocal Harmonies with ACE Studio and Band-in-a-Box, he explains in detail how you can use the Melodist feature in Band-in-a-Box with ACE Studio. Follow along as he goes from "nothing" to "something" with his Band-in-a-Box MIDI Melodist track, using ACE Studio to turn it into a vocal track (or tracks, you'll see) by adding lyrics for those notes that will trigger some amazing AI vocals!

Watch: Next-Level AI Music Editing with ACE Studio and Band-in-a-Box


Forum Statistics
Forums65
Topics81,983
Posts740,099
Members38,652
Most Online2,537
Jan 19th, 2020
Newest Members
DaveHornet, EnzoJames, BIAB4Me, Al TH 02, Raenil
38,651 Registered Users
Top Posters(30 Days)
MarioD 160
Rob Helms 115
musocity 103
DC Ron 95
rsdean 91
Today's Birthdays
Saxfred
Powered by UBB.threads™ PHP Forum Software 7.7.5