1. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. ; #Warn ; Enable warnings to assist with detecting common errors.
  3. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  4. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  5. #Persistent
  6. #SingleInstance, Force
  7. #Include Acc.ahk
  8. MouseOverWin(WinTitle)
  9. {
  10. MouseGetPos,,, Win
  11. return WinExist(WinTitle . " ahk_id " . Win)
  12. }
  13. MouseOverControl(Control)
  14. {
  15. MouseGetPos, , , , CurrentControl
  16. if (CurrentControl = Control)
  17. return true
  18. else if (InStr(CurrentControl, Control))
  19. return true
  20. else
  21. return false
  22. }
  23. #If (MouseOverWin("ahk_class Shell_TrayWnd") and not MouseOverControl("Start1"))
  24. MButton::
  25. Gosub,GetAcc
  26. if (vAccName = "Running applications") ;empty
  27. {
  28. ;mute..
  29. }
  30. else if (InStr(vAccName, "running window")) ; closing window open
  31. {
  32. WinTitle := RegExReplace(vAccName," - [0-9]+ running windows?")
  33. SendMessage, 0x0010, ,,, %WinTitle%,,,,500 ;WinClose, %WinTitle% SendMessage
  34. }
  35. return
  36. WheelDown::
  37. Gosub,GetAcc
  38. ;do stuff
  39. return
  40. GetAcc:
  41. oAcc := Acc_ObjectFromPoint(vChildId)
  42. vAccName := oAcc.accName(vChildId)
  43. return