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.
|
|
|
|
|
|
|
|
|
|
|
New! XPro Styles PAK 7 for Band-in-a-Box 2024 for Mac!
We've just released XPro Styles PAK 7 with 100 brand new RealStyles, plus 50 RealTracks and RealDrums that are sure to delight!
With XPro Styles PAK 7 you can expect 25 rock & pop, 25 jazz, and 25 country styles, as well as 25 of this year's wildcard genre: Celtic!
Here's a small sampling of what XPro Styles PAK 7 has to offer: energetic rock jigs, New Orleans funk, lilting jazz waltzes, fast Celtic punk, uptempo train beats, gritty grunge, intense jazz rock, groovy EDM, soulful R&B, soft singer-songwriter pop, country blues rock, and many more!
Special Pricing! Until September 30, 2024, all the XPro Styles PAKs 1 - 7 are on sale for only $29 ea (Reg. $49 ea)! Supercharge your Band-in-a-Box 2024® with XPro Styles PAK 7! Order now!
Learn more and listen to demos of XPro Styles PAKs.
Watch the XPro Styles PAK 7 Overview & Styles Demos video.
XPro Styles PAKs require Band-in-a-Box® 2024 or higher and are compatible with ANY package, including the Pro, MegaPAK, UltraPAK, UltraPAK+, and Audiophile Edition.
New! Xtra Styles PAK 18 for Band-in-a-Box 2024 for Mac!
Xtra Styles PAK 18 for Band-in-a-Box version 2024 is here with 200 brand new styles to take for a spin!
Along with 50 new styles each for the rock & pop, jazz, and country genres, we’ve put together a collection of styles using sounds from the SynthMaster plugin!
In this PAK you'll find: dubby reggae grooves, rootsy Americana, LA jazz pop, driving pop rock, mellow electronica, modern jazz fusion, spacey country ballads, Motown shuffles, energetic EDM, and plenty of synth heavy grooves! Xtra Style PAK 18 features these styles and many, many more!
Special Pricing! Until September 30, 2024, all the Xtra Styles PAKs 1 - 18 are on sale for only $29 ea (Reg. $49 ea)! Expand your Band-in-a-Box 2024® library with Xtra Styles PAK 18! Order now!
Learn more and listen to demos of the Xtra Styles PAK 18 here.
Watch the Xtra Styles PAK 18 Overview & Styles Demos video.
Note: The Xtra Styles require the UltraPAK, UltraPAK+, or Audiophile Edition of Band-in-a-Box®. (Xtra Styles PAK 18 requires the 2024 UltraPAK/UltraPAK+/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! Xtra Styles PAK 18 for Band-in-a-Box 2024 for Windows!
Xtra Styles PAK 18 for Band-in-a-Box version 2024 is here with 200 brand new styles to take for a spin!
Along with 50 new styles each for the rock & pop, jazz, and country genres, we’ve put together a collection of styles using sounds from the SynthMaster plugin!
In this PAK you'll find: dubby reggae grooves, rootsy Americana, LA jazz pop, driving pop rock, mellow electronica, modern jazz fusion, spacey country ballads, Motown shuffles, energetic EDM, and plenty of synth heavy grooves! Xtra Style PAK 18 features these styles and many, many more!
Special Pricing! Until September 30, 2024, all the Xtra Styles PAKs 1 - 18 are on sale for only $29 ea (Reg. $49 ea)! Expand your Band-in-a-Box 2024® library with Xtra Styles PAK 18! Order now!
Learn more and listen to demos of the Xtra Styles PAK 18 here.
Watch the Xtra Styles PAK 18 Overview & Styles Demos video.
Note: The Xtra Styles require the UltraPAK, UltraPAK+, or Audiophile Edition of Band-in-a-Box®. (Xtra Styles PAK 18 requires the 2024 UltraPAK/UltraPAK+/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 7 for Band-in-a-Box 2024 for Windows!
We've just released XPro Styles PAK 7 with 100 brand new RealStyles, plus 50 RealTracks and RealDrums that are sure to delight!
With XPro Styles PAK 7 you can expect 25 rock & pop, 25 jazz, and 25 country styles, as well as 25 of this year's wildcard genre: Celtic!
Here's a small sampling of what XPro Styles PAK 7 has to offer: energetic rock jigs, New Orleans funk, lilting jazz waltzes, fast Celtic punk, uptempo train beats, gritty grunge, intense jazz rock, groovy EDM, soulful R&B, soft singer-songwriter pop, country blues rock, and many more!
Special Pricing! Until September 30, 2024, all the XPro Styles PAKs 1 - 7 are on sale for only $29 ea (Reg. $49 ea)! Supercharge your Band-in-a-Box 2024® with XPro Styles PAK 7! Order now!
Learn more and listen to demos of XPro Styles PAKs.
Watch the XPro Styles PAK 7 Overview & Styles Demos video.
XPro Styles PAKs require Band-in-a-Box® 2024 or higher and are compatible with ANY package, including the Pro, MegaPAK, UltraPAK, UltraPAK+, and Audiophile Edition.
Video - Band-in-a-Box® DAW Plugin Version 6 for Mac®: New Features for Reaper
Band-in-a-Box® 2024 for Mac® - Update Today!
Band-in-a-Box® 2024 for Mac® Video - Over 50 New Features and Enhancements!
|
|
|
|
|
|
|
|
|
|
|
Forums65
Topics82,744
Posts748,694
Members38,870
|
Most Online2,537 Jan 19th, 2020
|
|
|
|
|
|
|
|
|
|
|
There are no members with birthdays on this day. |
|
|
|
|
|
|
|
|