Change volume with mouse wheel over task bar

Yeah, you can change the volume just moving the mouse wheel over task bar using AutoHotkey and the following little script:

#If MouseIsOver("ahk_class Shell_TrayWnd")
WheelUp::Send {Volume_Up}
WheelDown::Send {Volume_Down}
MouseIsOver(WinTitle) {
MouseGetPos,,, Win
return WinExist(WinTitle . " ahk_id " . Win)
}

 01 August 2011 | tips usability