Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. ;anything after a semicolon is just a comment to explain what i did
  2.  
  3. #IfWinActive, ahk_exe Ableton Live 10 Suite.exe ; makes this script only run when your ableton window is active (when you're "using it")
  4.  
  5. ^w:: ; makes ctrl+w perform delete because i hate reaching over to the delete key lol
  6. Send, {Delete}
  7. Return
  8.  
  9. !q:: ; makes alt+q perform ctrl+u (quantize) because i use this a lot. ctrl+u is way too difficult to reach.
  10. Send, ^u
  11. Return
  12.  
  13. !a:: ; makes alt+a perform ctrl+j (consolidate) because i also use this a lot and it's annoying to reach
  14. Send, ^j
  15. Return
  16.  
  17. F1:: ;probably the coolest thing. let's you automatically insert a plugin with one shortcut. here i set F1 to insert serum for me. you can have it search whatever text but make sure it's unique so it's the only search result.
  18. Send, ^f
  19. Send, "serum.vst" ; put what you want to search in the ableton search bar here
  20. Sleep 300 ; waits for 300 milliseconds because sometimes ableton is slow
  21. Send, {Enter 2}
  22. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement