Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. ;made this incase someone else wants to learn basic autohotkey stuff
  2. ;anything after a semicolon is just a comment to explain what i did
  3.  
  4. #IfWinActive, ahk_exe Ableton Live 10 Suite.exe ; makes this script only run when your ableton window is active (when you're "using it"). you can have separate script files with unique hotkeys for different applications with this code. just use the windows spy to find the process name. for example, for chrome it would be "ahk_exe Chrome.exe"
  5.  
  6. ;some basic hotkeys below
  7.  
  8. ^w:: ; makes ctrl+w perform delete because i hate reaching over to the delete key lol
  9. Send, {Delete}
  10. Return
  11.  
  12. !q:: ; makes alt+q perform ctrl+u (quantize) because i use it a lot. ctrl+u is way too difficult to reach.
  13. Send, ^u
  14. Return
  15.  
  16. !a:: ; makes alt+a perform ctrl+j (consolidate) because i also use this a lot and it's annoying to reach
  17. Send, ^j
  18. Return
  19.  
  20. F1:: ; here i set F1 to search and insert serum for me. you can make it work for whatever vst plugin you want. just make sure it's the only search result that appears.
  21. Send, ^f
  22. Send, "serum.vst" ; put what you want to search in the ableton search bar here
  23. Sleep 300 ; waits for 300 milliseconds because sometimes ableton is slow
  24. Send, {Enter 2}
  25. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement