Advertisement
jeffaxelrod

Popper/beeper for Checker Plus

Oct 26th, 2021
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. SetTimer WindowCheck, 5000
  2.  
  3. WindowCheck:
  4.    WinGet, id, LIST, ahk_class Chrome_WidgetWin_1
  5.     Loop, %id% {
  6.         this_id := id%A_Index%
  7.         WinGetPos, Xpos, Ypos, Width, Height, ahk_id %this_id%
  8.         if (Width=663) {
  9.             WinActivate, ahk_id %this_id%
  10.             SoundGet, MasterVolume
  11.             SoundSet, 60
  12.             SoundBeep
  13.             SoundSet, MasterVolume
  14.  
  15.         }
  16.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement