Previous Thread
Index
Next Thread
Print Thread
Go To
Off-Topic
Joined: Jul 2015
Posts: 2,523
Veteran
OP Offline
Veteran
Joined: Jul 2015
Posts: 2,523
Hi Mario and all other Studio One users,

I found this by googling (in my case 5.1) 96 Shortcuts for Presonus Studio One (Windows)

I printed it out (two pages) and it is a big help to remember keyboard shortcuts.

I know some of you have gone from Sonar to Studio One. This is a big help in learning the shortcuts.

Cheers,

Billy


New location, new environment, new music coming soon

Seize the moo-ment
If you feel like you’ve herd all these cow puns before, you probably have deja-moo
Off-Topic
Joined: Dec 2003
Posts: 20,816
Veteran
Offline
Veteran
Joined: Dec 2003
Posts: 20,816
Billy, yes printing out keyboard short cuts can be extremely helpful. Thanx for sharing.


Me, it's not about how many times you fail, it's about how many times you get back up.
Cop, that's not how field sobriety tests work.

64 bit Win 10 Pro, the latest BiaB/RB, Roland Octa-Capture audio interface, a ton of software/hardware
Off-Topic
Joined: Feb 2015
Posts: 7,954
P
Veteran
Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
To make it easy you can create an always on top button panel and add any functions you like.
Install www.AutoHotKey.com
Click 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.

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

Click to reveal..


Code:
;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


Attached Files (Click to download or enlarge) (Only available when you are logged in)
AHK-S1.png (36.85 KB, 31 downloads)
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: Next-Level AI Music Editing 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, Next-Level AI Music Editing 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


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

Band-in-a-Box® 2024 für Windows Deutsch ist verfügbar!

Wir waren fleißig und haben über 50 neue Funktionen und eine erstaunliche Sammlung neuer Inhalte hinzugefügt, darunter 222 RealTracks, neue RealStyles, MIDI SuperTracks, Instrumental Studies, "Songs with Vocals" Artist Performance Sets, abspielbare RealTracks Set 3, abspielbare RealDrums Set 2, zwei neue Sets von "RealDrums Stems", XPro Styles PAK 6, Xtra Styles PAK 17 und mehr!

Paket | Was ist Neu

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."

Forum Statistics
Forums66
Topics81,631
Posts735,243
Members38,520
Most Online2,537
Jan 19th, 2020
Newest Members
SYOTR, Bpnsrinu, DanyLevy, vasilich, maxrob61
38,520 Registered Users
Top Posters(30 Days)
MarioD 185
DC Ron 100
dcuny 86
DrDan 73
Today's Birthdays
Bernard Rasson, John Temmerman
Powered by UBB.threads™ PHP Forum Software 7.7.5