^ -> 컨트롤키 클릭
! -> Alt 키 클릭
# -> 윈도우키 클릭
+ -> shift 클릭할때
컨트롤 키와 t버튼을 같이 누를 경우 메시지 박스가 나타납니다
return 종료를 뜻합니다
^t::
MsgBox 컨트롤키와 t 버튼클릭할때
return
특정 프로그램을 실행하고자할때
alt + c를 클릭할때 크롬브라우저가 실행됩니다
아래의 실행주소를 알고자 한다면 해당 아이콘에 마우스 우클릭 하고 속성을 보시면 자세하게 나타납니다
!c::
Run "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"
return
^t::
MsgBox Cotnrl+t
return
!t::
MsgBox Alt+t
return
#t::
MsgBox Win+t
return
+t::
MsgBox Shift+t
return
!i::
Run "C:Program FilesInternet Exploreriexplore.exe" -nomerge
return
!c::
Run "C:Program Files (x86)GoogleChromeApplicationchrome.exe"
return