Log in to post
|
Print Thread |
|
|
|
|
Post your own Tips and Tricks here
|
Joined: Feb 2015
Posts: 7,954
Veteran
|
OP
Veteran
Joined: Feb 2015
Posts: 7,954 |
This was made after Pianobilly's link for 96 Shortcuts for Presonus Studio One To make it easy you can create an always on top button panel and add any functions you like. Install www.AutoHotKey.comClick reveal below and save the code below in notepad as Studio One Actions.ahk This is just a rough code for testing and can be polished and modified, the RealBand and PowerTracks Tabs can be change to other Studio One functions. Alt ! Ctrl ^ Shift + Win Logo # so to send Ctrl + Shift + O = Import File Send ^+o Send ctrl+shift+o So rename Action > Import File then go down to the function AC2: and set the send Send ^+o the menu commands don't seem to work on Studio One WinMenuSelectItem, ahk_exe Studio One.exe, , File, Open... so you can navigate the menus, Song > Send to Notion by sending AC3: winactivate,ahk_exe Studio One.exe Send {alt} Send {right 2} Send {Down 6} Send {Enter} Return or with one line, set the delay anount to what works best SetKeyDelay AC3: winactivate,ahk_exe Studio One.exe SetKeyDelay, 50 Send {alt}{right 2}{Down 6}{Enter} Return ;Insert Color here like HEX 00C222
TabColors_Tab1=4287F5
TabColors_Tab2=AD001F
TabColors_Tab3=000000
;Alawys on Top checkbox
Gui, +AlwaysOnTop
Gui, Font, S10 CWhite Bold, Arial
Gui, Add, CheckBox, x12 y210 w130 h20 gUpdate vCheck, Always on Top
guicontrol, , check, 1
Gui, Add, Tab, x2 y0 h250 w460 AltSubmit gTab vTab
, S1|RealBand|PowerTracks
Gosub, Tab
Gui, Show, , S1 RB PT Action Buttons
; Studio One Tab Buttons
Gui, Tab, S1
Gui, Font, S10 CBlack Bold, Arial
Gui, Add, Button, x12 y40 w100 h30 gAC1, Open...
Gui, Add, Button, x112 y40 w100 h30 gAC2, Import File
Gui, Add, Button, x212 y40 w100 h30 gAC3, Action
Gui, Add, Button, x312 y40 w100 h30 gAC4, Action
Gui, Add, Button, x12 y70 w100 h30 gAC5, Action
Gui, Add, Button, x112 y70 w100 h30 gAC6, Action
Gui, Add, Button, x212 y70 w100 h30 gAC7, Action
Gui, Add, Button, x312 y70 w100 h30 gAC8, Action
Gui, Add, Button, x12 y100 w100 h30 gAC9, Action
Gui, Add, Button, x112 y100 w100 h30 gAC10, Action
Gui, Add, Button, x212 y100 w100 h30 gAC11, Action
Gui, Add, Button, x312 y100 w100 h30 gAC12, Action
Gui, Add, Button, x12 y130 w100 h30 gAC13, Action
Gui, Add, Button, x112 y130 w100 h30 gAC4, Action
Gui, Add, Button, x212 y130 w100 h30 gAC15, Action
Gui, Add, Button, x312 y130 w100 h30 gAC16, Action
; 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 Studio One
AC1:
winactivate,ahk_exe Studio One.exe
Send ^o
;WinMenuSelectItem, ahk_exe Studio One.exe, , File, Open...
Return
AC2:
winactivate,ahk_exe Studio One.exe
Send ^+o
Return
AC3:
winactivate,ahk_exe Studio One.exe
Send {Space}
Return
AC4:
winactivate,ahk_exe Studio One.exe
Send {Space}
Return
AC5:
winactivate,ahk_exe Studio One.exe
Send {Space}
Return
AC6:
winactivate,ahk_exe Studio One.exe
Send {Space}
Return
AC7:
winactivate,ahk_exe Studio One.exe
Send {Space}
Return
AC8:
winactivate,ahk_exe Studio One.exe
Send {Space}
Return
AC9:
winactivate,ahk_exe Studio One.exe
Send {Space}
Return
AC10:
winactivate,ahk_exe Studio One.exe
Send {Space}
Return
AC11:
winactivate,ahk_exe Studio One.exe
Send {Space}
Return
AC12:
winactivate,ahk_exe Studio One.exe
Send {Space}
Return
AC13:
winactivate,ahk_exe Studio One.exe
Send {Space}
Return
AC14:
winactivate,ahk_exe Studio One.exe
Send {Space}
Return
AC15:
winactivate,ahk_exe Studio One.exe
Send {Space}
Return
AC16:
winactivate,ahk_exe Studio One.exe
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
|
|
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
|
|
|
Update your Band-in-a-Box® 2025 for Windows® Today!
If you’ve already purchased Band-in-a-Box® 2025 for Windows®, great news—a new update is now available! This update introduces a handy new feature: a vertical cursor in the Tracks window that shows the current location across all tracks, and more.
Discover everything included in this free update and download it now at https://www.pgmusic.com/support_windowsupdates.htm#1124
Video: Band-in-a-Box® 2025 for Windows®: Boot Camp: The AI Lyrics Generator
With Band-in-a-Box 2025® for Windows®, we've introduced an exciting new feature: the AI Lyrics Generator! In this video, Tobin guides you step-by-step on how to make the most of this new tool.
Band-in-a-Box® 2025 for Windows®: Boot Camp: The AI Lyrics Generator video.
Check out the forum post for more information.
Video: Band-in-a-Box® 2025 for Windows®: Using VST3 Plugins
Band-in-a-Box 2025® for Windows® now includes support for VST3 plugins, bringing even more creative possibilities to your music production. Join Simon as he guides you through the process in this easy-to-follow demonstration!
Video: Band-in-a-Box® 2025 for Windows®: Using VST3 Plugins
Join the conversation on our forum.
Video: Band-in-a-Box 2025 for Windows: Using The BB Stem Splitter!
In this video, Tobin provides a crash course on using the new BB Stem Splitter feature included in Band-in-a-Box 2025® for Windows®. During this process he also uses the Audio Chord Wizard (ACW) and the new Equalize Tempo feature.
Video: Band-in-a-Box® 2025 for Windows®: Using the BB Stem Splitter
Check out the forum post for some optional Tips & Tricks!
Congrats to Misha (Rustyspoon)…downloaded/installed a full Audiophile 2025!
Breaking News!
We’re thrilled to announce that Rustyspoon has made PG history as the very first person to successfully complete the download and install of the full Band-in-a-Box 2025 Windows Audiophile Edition (with FLAC files)—a whopping 610GB of data!
A big shoutout to Rustyspoon for stepping up to be our test "elf!"
Thank you for your support, Rustyspoon!
Band-in-a-Box 2025 for Windows Videos
With the launch of Band-in-a-Box® 2025 for Windows, we're adding new videos to our YouTube channel. We'll also share them here once they are published so you can easily find all the Band-in-a-Box® 2025 and new Add-on videos in one place!
Whether it's a summary of the new features, demonstrations of the 202 new RealTracks, new XPro Styles PAK 8, or Xtra Styles PAKs 18, information on the 2025 49-PAK, or detailed tutorials for other Band-in-a-Box® 2025 features, we have you covered!
Reference this forum post for One-Stop Shopping of our Band-in-a-Box® 2025 Videos - we will be updating this post as more videos are added!
Band-in-a-Box 2025 for Windows is Here!
Band-in-a-Box® 2025 for Windows 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 with savings of up to 50% on most upgrade packages during our special—available until December 31, 2024! 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 Windows 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!
|
|
|
|
|
|
|
|
|
|
|
Forums65
Topics83,471
Posts758,252
Members39,128
|
Most Online3,932 Nov 19th, 2024
|
|
|
|
|
|
|
|
|