Posted on 2017-03-08 13:06
云自无心水自闲 阅读(356)
评论(0) 编辑 收藏
官网地址:autohotkey.com
; fill password
^Numpad2::
Send, root{tab}root{enter}
Return
^Numpad3::
IfWinExist, ahk_exe OUTLOOK.EXE
{
WinActivate ahk_exe OUTLOOK.EXE ; Automatically uses the window found above.
; WinMaximize ; same
;Send, Some text.{Enter}
msgbox Outlook is running.
}
Return