Posted on 2017-03-08 13:06
云自無心水自閑 閱讀(366)
評論(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