Advertisement
Guest User

Autohotkey Numpad Volume

a guest
Nov 28th, 2013
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. NumPadUp::
  2.     ;Send, {Volume_Up}
  3.     VA_SetMasterMute(false)
  4.     VA_SetMasterVolume(VA_GetMasterVolume(2)+10)
  5. Return
  6.  
  7. ~NumPadUp up::
  8.     ;Send, {Volume_Up}
  9.     VA_SetMasterVolume(VA_GetMasterVolume(),1)
  10. Return
  11.  
  12. NumPadPgUp::
  13.     ;Send, {Volume_Down}
  14.     VA_SetMasterVolume(VA_GetMasterVolume(2)-20)
  15. Return
  16.  
  17. ~NumPadPgUp up::
  18.     ;Send, {Volume_Down}
  19.     VA_SetMasterVolume(0,1)
  20. Return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement