最小/最大は通常サイズへ。通常サイズは最大へ。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
WinGet, id, list Loop, %id% { StringTrimRight, this_id, id%A_Index%, 0 WinGetTitle, this_title, ahk_id %this_id% if(RegExMatch(this_title, "Google Chrome") > 0) { WinGet, min_max, MinMax, ahk_id %this_id% If (min_max = 1 OR min_max = -1) { WinRestore, ahk_id %this_id% } Else { WinMaximize, ahk_id %this_id% } } } |