Home > Software | Tutorial > Speed Up Your Pro Tools Workflow…

Speed Up Your Pro Tools Workflow…

…with these Autohotkey scripts. Autohotkey is a free macro program that turns multiple keystrokes into single ones. It’s a bit difficult to get working sometimes, but it can do some rediculous things. For Macs you can get Quikey, it is available for Windows too, but AutoHotKey is free!

Here’s some simple ones to try out for making new tracks. You can copy the code below and paste it over the default script, then reload. Remember you can change any of the hotkeys to suit your needs.

Keep checking back on this post because I’ll be updating it as I create more scripts.

Blue is the function of the script and Red is the key command to activate it. + means Shift, ^ means CTRL, # means Win key, ! means Alt

;Create Mono Track

home::

Send, {CTRLDOWN}{SHIFTDOWN}n{SHIFTUP}{CTRLUP}{ENTER} 

return

;Create Stereo track

+home::

Send, {CTRLDOWN}{SHIFTDOWN}n{SHIFTUP}{CTRLUP}

Send, {CTRLDOWN}{RIGHT}{CTRLUP}{ENTER}

return

;Create Instrument Track

end::

Send, {SHIFTDOWN}{CTRLDOWN}n{SHIFTUP}{CTRLUP}

Send, {CTRLDOWN}{RIGHT}{CTRLUP}{CTRLDOWN}{DOWN}{DOWN}{DOWN}{DOWN}{CTRLUP}{ENTER}

return

;Create MIDI track

+end::

Send, {CTRLDOWN}{SHIFTDOWN}n{CTRLUP}{SHIFTUP}

Send, {CTRLDOWN}{DOWN}{DOWN}{DOWN}{CTRLUP}{ENTER} 

return

;Create Aux Mono

pgup::

Send, {CTRLDOWN}{SHIFTDOWN}n{SHIFTUP}{CTRLUP}

Send, {CTRLDOWN}{DOWN}{CTRLUP}{ ENTER} 

return

;Create Aux Stereo

+pgup::

Send, {CTRLDOWN}{SHIFTDOWN}n{SHIFTUP}{CTRLUP}

Send, {CTRLDOWN}{RIGHT}{CTRLUP}{CTRLDOWN}{DOWN}{CTRLUP}{ENTER} 

return

–Added Sept 16 2008–
I’m so happy I figured this one out.
From Kenny Gioia’s first tutorial dvd.
Make a new track under your kick (or snare) drum track
Use beat detective to make a cut on all beats
Turn off tab to transient so Tab or ‘ now goes to each cut on the the region.
find a sample you like, drag it onto the empty track, select it and X to cut it.
tab to the first hit and then hold down \ to let the script do the work for you.

;Kenny Gioia Sample Enhancement
::\::;vp'
return
;Show Playback Engine
pause::send, {ALTDOWN}{ALTUP}sp
return

;Show Preferences
PrintScreen::Send, {ALTDOWN}{ALTUP}sn
return

This never made much sense to me, why do you need to hold ctrl to go to the mixer?

;Show Mixer/Edit window
=::send, ^=
return
;Save As (WinS wouldn't work for some reason, I need to figure out a better button for this)
F12::Send, {altdown}{altup}{down}a
return

–Added Sept 17 2008–

;Suspend All Groups

F9::send, {ctrldown}{shiftdown}g{ctrlup}{shiftup}

return

;Consolidate All Tracks (v2)

This will go to the start of the session, select all, then select to the start (so all regions start at 0:00), then consolidates all regions.

+F12::send,

{enter}{ctrldown}a{ctrlup}{shiftdown}{enter}{altdown}{altup}e{down}{down}{down}{down}{down}{down}{down}{down}{down}{down}{down}{down}{down}{down}{down}{down}{down}{down}{down}{down}{down}{enter}
return

–Added Oct 15 2008–

Even though this feature is in PT 8 (and even better) I figured out a similar way to do it in 7.4 and below. Use this for comping vocals from up to 5 takes. The Comp track should be on top of the playlist, each take on a separate track below. Make your selection and tap M, the audio will be copied, moved up to the top track and paste.

;Quick Swipe Comp
M::Send, cpppppv
return

Also Interesting:

  1. Measuring hardware latency in Protools LE
  2. Grooveboxmusic Pro Tools Operator DVD
  3. Vocal Tuning and Correction Tools

, , ,

TOP