ahk监控当前窗口

~LButton:: ; 当鼠标左键被按下时,关闭teamview主窗口,并延时一秒执行
SetTimer, CheckWindow, 1000 ; 设置 1 秒后执行 CheckWindow 函数
return

CheckWindow:
If WinActive("office - TeamViewer")
{
    WinClose, ahk_class #32770, TeamViewer
}
Return

你可能感兴趣的:(windows)