- #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
- ; #Warn ; Enable warnings to assist with detecting common errors.
- SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
- SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
- #Persistent
- #SingleInstance, Force
- #Include Acc.ahk
- MouseOverWin(WinTitle)
- {
- MouseGetPos,,, Win
- return WinExist(WinTitle . " ahk_id " . Win)
- }
- MouseOverControl(Control)
- {
- MouseGetPos, , , , CurrentControl
- if (CurrentControl = Control)
- return true
- else if (InStr(CurrentControl, Control))
- return true
- else
- return false
- }
- #If (MouseOverWin("ahk_class Shell_TrayWnd") and not MouseOverControl("Start1"))
- MButton::
- Gosub,GetAcc
- if (vAccName = "Running applications") ;empty
- {
- ;mute..
- }
- else if (InStr(vAccName, "running window")) ; closing window open
- {
- WinTitle := RegExReplace(vAccName," - [0-9]+ running windows?")
- SendMessage, 0x0010, ,,, %WinTitle%,,,,500 ;WinClose, %WinTitle% SendMessage
- }
- return
- WheelDown::
- Gosub,GetAcc
- ;do stuff
- return
- GetAcc:
- oAcc := Acc_ObjectFromPoint(vChildId)
- vAccName := oAcc.accName(vChildId)
- return