OnMyDSeeAtAll
Junior Member | Редактировать | Профиль | Сообщение | Цитировать | Сообщить модератору @PPavlukha Тут несколько вариантов как можно оформить условие соответствия: Код: #IfWinActive ahk_class Notepad ~LButton:: TrayTip,, % "condition is match" Sleep, 1250 TrayTip Return #IfWinActive ahk_class CalcFrame ~LButton:: TrayTip,, % "condition is match" Sleep, 1250 TrayTip Return #IfWinActive ~LButton:: TrayTip,, % "do something else" Sleep, 250 TrayTip Return |
Код: GroupAdd, myGroup, ahk_class Notepad GroupAdd, myGroup, ahk_class CalcFrame #IfWinActive ahk_group myGroup ~LButton:: TrayTip,, % "condition is match" Sleep, 1250 TrayTip Return |
Код: #If (WinActive("ahk_class Notepad")) Or (WinActive("ahk_class CalcFrame")) ~LButton::TrayTip,, % "match condition" |
Код: SetTitleMatchMode, RegEx #If WinActive("ahk_class Notepad|CalcFrame") ~LButton::TrayTip,, % "match condition" |
Код: #If CheckUp() ~LButton:: TrayTip,, % "condition is match" Sleep, 1250 TrayTip Return CheckUp() { WinGetClass, winClass, A Return, winClass~="Notepad|CalcFrame" ? True:False } | @aidomars "Косяк" тут на лицо конечно... |