https://www.autohotkey.com/
 记录
https://www.autohotkey.com/docs/v2/
https://www.autohotkey.com/docs/v2/lib/Send.htm
https://www.autohotkey.com/boards/
#z::Run "https://www.autohotkey.com"  ; Win+Z
#n::Run "mspaint"  ; Win+n
^!n::  ; Ctrl+Alt+N
{
    if WinExist("Untitled - Notepad")
        WinActivate
    else
        Run "Notepad"
}
 
22
Run "notepad.exe"
if WinWait("无标题 - 记事本", , 3){    
    WinMinimize ; Use the window found by WinWait.
    MsgBox "WinWait not timed out."
    
}
else{
    MsgBox "WinWait timed out."
}
 
xshell 子窗口关闭
v2
Run "xshell.exe"
if WinWait("Xshell 5 (Free for Home/School)", , 6){    
   ; WinMinimize ; Use the window found by WinWait.
    MsgBox "WinWait not timed out."
    SetTimer CheckForMsgBox, 100 
    CheckForMsgBox()
    {
        If WinExist("会话") 
        {
         Send "{Enter}" 
         SetTimer CheckForMsgBox,0             
        }
    
    }
}
else{
    MsgBox "WinWait timed out."
}
 



















