Log in to post
|
Print Thread |
|
|
|
|
Band-in-a-Box Wishlist
|
Joined: Mar 2023
Posts: 14
Newbie
|
OP
Newbie
Joined: Mar 2023
Posts: 14 |
When I open some dialog boxes, like RealDrums Picker, I can move it, close it, and it will re-open in the new location.
Great!
However, a lot of dialog boxes, like Melody Embellisher, will *always* open in the top left corner of my screen, even if I move/close it.
Not great!
I'm using a 55" TV for my main screen so it is a hassle to have the dialog open so far away! I'm constantly dragging them to around the middle of the screen.
I wish there was a way to set the default location of those "unmovable" dialog boxes to *always* open in the center of the main screen.
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box Wishlist
|
Joined: Aug 2011
Posts: 10,814
Veteran
|
Veteran
Joined: Aug 2011
Posts: 10,814 |
Welcome to the forum and to Band-in-a-Box.
+1 in support of your suggestion to designate a location on a screen where all new Band-in-a-Box windows open.
Do you think your suggestion would change for people using more than one display monitor?
Jim Fogle - 2025 BiaB (Build 1128) RB (Build 5) - Ultra+ PAK DAWs: Cakewalk Sonar - 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
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box Wishlist
|
Joined: Jun 2009
Posts: 3,110
Veteran
|
Veteran
Joined: Jun 2009
Posts: 3,110 |
Download https://www.autohotkey.com/Right click on C:\Program Files\AutoHotkey\AutoHotkey.exe set to "run as administrator" if Biab is set to run as admin.. Right click Save Link/Target As > Center active window.ahk This will center any active window run it and it will be in the system tray "H" the hot key is Ctrl+Y you can change the hot key to what you want. # Win (Windows logo key) ! Alt ^ Ctrl + Shift you can edit scripts by dropping in NotePad. #NoEnv
#SingleInstance Force
SendMode Input
SetWorkingDir %A_ScriptDir%
^y:: ; hot key = ctrl y
WinGetTitle, ActiveWindowTitle, A ; Get the active window's title for "targetting" it/acting on it.
WinGetPos,,, Width, Height, %ActiveWindowTitle% ; Get the active window's position, used for our calculations.
TargetX := (A_ScreenWidth/2)-(Width/2) ; Calculate the horizontal target where we'll move the window.
TargetY := (A_ScreenHeight/2)-(Height/2) ; Calculate the vertical placement of the window.
WinMove, %ActiveWindowTitle%,, %TargetX%, %TargetY% ; Move the window to the calculated coordinates.
return Right click Save Link/Target As > Biab open Embellisher center.ahkThis will open Embellisher and center with it's hot key Ctrl+Alt+L you can add other windows to this script. #NoEnv
#SingleInstance Force
SendMode Input
SetWorkingDir %A_ScriptDir%
^!L:: ; send ctrl+alt+L
Winactivate, ahk_class TBandWindow
WinMenuSelectItem, ahk_class TBandWindow, , Melody, Embellish Melody, Embellish Melody Dialog
Sleep, 500
WinGetTitle, ActiveWindowTitle, A ; Get the active window's title for "targetting" it/acting on it.
WinGetPos,,, Width, Height, %ActiveWindowTitle% ; Get the active window's position, used for our calculations.
TargetX := (A_ScreenWidth/2)-(Width/2) ; Calculate the horizontal target where we'll move the window.
TargetY := (A_ScreenHeight/2)-(Height/2) ; Calculate the vertical placement of the window.
WinMove, %ActiveWindowTitle%,, %TargetX%, %TargetY% ; Move the window to the calculated coordinates.
Return
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box Wishlist
|
Joined: Mar 2023
Posts: 14
Newbie
|
OP
Newbie
Joined: Mar 2023
Posts: 14 |
Jim Fogle, it would be nice if you were given an option if using more than one monitor (I currently use 2). But even having the option to open all dialog boxes in center of main monitor would be an improvement.
musocity, I know of autohotkey (but have never used it). Don't think it would be useful in this case because I think there are dozens of windows that open upper left and don't remember if they've been repositioned (like RealDrums Picker does).
It would be nice if they just had an option to set the "default location" of where dialog boxes open. Looks like it is currently set to "upper left, main monitor".
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box Wishlist
|
Joined: Jun 2009
Posts: 3,110
Veteran
|
Veteran
Joined: Jun 2009
Posts: 3,110 |
Ctrl+Y will set every window you open to center. I just tried so many windows and dialogs and they all centered with Ctrl+Y, some remember their position but most don't. This first script is all you really need. You can set the script to put the dialogs and windows on the second monitor.
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box Wishlist
|
Joined: Mar 2023
Posts: 14
Newbie
|
OP
Newbie
Joined: Mar 2023
Posts: 14 |
Ctrl+Y will set every window you open to center. I just tried so many windows and dialogs and they all centered with Ctrl+Y, some remember their position but most don't. This first script is all you really need. You can set the script to put the dialogs and windows on the second monitor. Thanks, but I'd rather this be part of the program and hope it is added in a future release.
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box Wishlist
|
Joined: Mar 2023
Posts: 14
Newbie
|
OP
Newbie
Joined: Mar 2023
Posts: 14 |
musocity, I decided I can't wait :^)
Moving the dialog boxes is sooo annoying. I downloaded autohotkey V2 but your script is written in V1, so I had to install that as well.
It works great! At least it is a work around until (hopefully) we get to pick the default location of dialog boxes in a future release.
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box Wishlist
|
Joined: Jun 2009
Posts: 3,110
Veteran
|
Veteran
Joined: Jun 2009
Posts: 3,110 |
You could die waiting for PG. There are more here AHK Scripts for Biab
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box Wishlist
|
Joined: May 2000
Posts: 15,831
PG Music Staff
|
PG Music Staff
Joined: May 2000
Posts: 15,831 |
Have Fun! Peter Gannon PG Music Inc.
|
|
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
|
|
|
Video: Band-in-a-Box® 2025 for Mac®: VST3 Plugin Support
Band-in-a-Box® 2025 for Mac® now includes support for VST3 plugins, alongside VST and AU. Use them with MIDI or audio tracks for even more creative possibilities in your music production.
Band-in-a-Box® 2025 for Macs®: VST3 Plugin Support
Video: Band-in-a-Box® 2025 for Mac®: Using VST3 Plugins
Join the conversation on our forum.
Band-in-a-Box 2025 for Mac Videos
With the release of Band-in-a-Box® 2025 for Mac, we’re rolling out a collection of brand-new videos on our YouTube channel. We’ll also keep this forum post updated so you can easily find all the latest videos in one convenient spot.
From overviews of new features and walkthroughs of the 202 new RealTracks, to highlights of XPro Styles PAK 8, Xtra Styles PAKs 18, the 2025 49-PAK, and in-depth tutorials — you’ll find everything you need to explore what’s new in Band-in-a-Box® 2025.
Reference this forum post for One-Stop Shopping of our Band-in-a-Box® 2025 Mac Videos — we’ll be adding more videos as they’re released!
Band-in-a-Box 2025 for Mac is Here!
Band-in-a-Box® 2025 for Mac is here, packed with major new features and an incredible collection of available new content! This includes 202 RealTracks (in Sets 449-467), plus 20 bonus Unreleased RealTracks in the 2025 49-PAK. There are new RealStyles, MIDI SuperTracks, Instrumental Studies, “Songs with Vocals” Artist Performance Sets, Playable RealTracks Set 4, two new sets of “RealDrums Stems,” XPro Styles PAK 8, Xtra Styles PAK 19, and more!
Special Offers
Upgrade to Band-in-a-Box® 2025 for Mac with savings of up to 50% on most upgrade packages during our special—available until July 31, 2025! Visit our Band-in-a-Box® packages page for all the purchase options available.
2025 Free Bonus PAK & 49-PAK Add-ons
We've packed our Free Bonus PAK & 49-PAK with some incredible Add-ons! The Free Bonus PAK is automatically included with most Band-in-a-Box® for Mac 2025 packages, but for even more Add-ons (including 20 Unreleased RealTracks!) upgrade to the 2025 49-PAK for only $49. You can see the full lists of items in each package, and listen to demos here.
If you have any questions, feel free to connect with us directly—we’re here to help!
Band-in-a-Box 2025 Italian Version is Here!
Cari amici
È stata aggerate la versione in Italiano del programma più amato dagli appassionati di musica, il nostro Band-in-a-Box.
Questo è il link alla nuova versione 2025.
Di seguito i link per scaricare il pacchetti di lingua italiana aggiornati per Band-in-a-Box e RealBand, anche per chi avesse già comprato la nuova versione in inglese.
Band-in-a-Box 2025 - Italiano
RealBand 2025 - Italiano
Band-in-a-Box 2025 French Version is Here!
Bonjour à tous,
Band-in-a-Box® 2025 pour Windows est disponible en Français.
Le téléchargement se fait à partir du site PG Music
Pour ceux qui auraient déjà acheté la version 2025 de Band-in-a-Box (et qui donc ont une version anglaise), il est possible de "franciser" cette version avec les patchs suivants:
BIAB 2025 - francisation
RealBand 2025 - francisation
Voilà, enjoy!
Band-in-a-Box 2025 German Version is Here!
Update Your Band-in-a-Box® 2025 to Build 1128 for Windows Today!
Already using Band-in-a-Box 2025 for Windows®? Download Build 1128 now from our Support Page to enjoy the latest enhancements and improvements from our team.
Stay up to date—get the latest update now!
|
|
|
|
|
|
|
|
|
|
|
Forums58
Topics84,299
Posts777,459
Members39,614
|
Most Online25,754 Jan 24th, 2025
|
|
|
|
|
|
|
|
|