Advertisement
Jacob_Mango

Spotify Autohotkey

Aug 20th, 2017
4,025
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. SetTitleMatchMode 2
  2. #WinActivateForce
  3. #singleinstance force
  4.  
  5. ; "CTRL + PAGE UP"  for volume up, change this to any hotkey you want
  6. ^Up::
  7. {
  8. DetectHiddenWindows, On
  9. ; "^{Up}" is the default hotkey for volume in spotify
  10. ControlSend, ahk_parent, ^{Up}, ahk_class SpotifyMainWindow
  11. DetectHiddenWindows, Off
  12. return
  13. }
  14.  
  15. ; "CTRL + PAGE DOWN"  for volume down
  16. ^Down::
  17. {
  18. DetectHiddenWindows, On
  19. ; "^{Down}" is the default hotkey for volume in spotify
  20. ControlSend, ahk_parent, ^{Down}, ahk_class SpotifyMainWindow
  21. DetectHiddenWindows, Off
  22. return
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement