Skip to content

Instantly share code, notes, and snippets.

@dacap
Created August 2, 2011 00:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dacap/1119346 to your computer and use it in GitHub Desktop.
Save dacap/1119346 to your computer and use it in GitHub Desktop.
Change volume with mouse wheel over task bar
#If MouseIsOver("ahk_class Shell_TrayWnd")
WheelUp::Send {Volume_Up}
WheelDown::Send {Volume_Down}
MouseIsOver(WinTitle) {
MouseGetPos,,, Win
return WinExist(WinTitle . " ahk_id " . Win)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment