;##################################################################### ; ; 기본 사용법: https://www.autohotkey.com/docs/v2/howto/SendKeys.htm ; 키 목록: https://www.autohotkey.com/docs/v1/KeyList.htm ; 실행 방법 예: AutoHotkey64.exe D:\AutoHotkey\ID-PW.ahk ; ;##################################################################### ;##################################################################### ; 특수 키 목록 ; Ctrl: ^ ; Alt: ! ; Shift: + ; Win: # ;##################################################################### ;##################################################################### ; Win+Alt+1를 누르면 myid를 입력한다. ;##################################################################### #!1:: { Send "myid{Enter}" } ;##################################################################### ; Win+Alt+2를 누르면 mypassword를 입력한다. ;##################################################################### #!2:: { Send "mypassword{Enter}" }