블로그 이미지
Flying Mr.Cheon youGom

Recent Comment»

Recent Post»

Recent Trackback»

« 2024/5 »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31

 
 

Shift + a 누를 때 : Send, {SHIFTDOWN} a {SHIFTUP}


 
아래와 같이 설명서가 적혀 있습니다. ( 번역해놓음  ^^; )



To hold down or release a key: Enclose in braces the name of the key followed by the word Down or Up. For example:
키를 누르고 있거나 풀어줄 때 :  키 이름에 Down 또는 Up 를 넣습니다.

Send {b down}{b up}
Send {TAB down}{TAB up}
Send {Up down}  ; Press down the up-arrow key. 방향키 ( 업-다운 )을 누르게 됨.
Sleep 1000  ; Keep it down for one second. 다운 상태 1 초간 유지
Send {Up up} ; Release the up-arrow key.  Up 방향키를 풀어줍니다.

 
:

[AutoHotKey] 키보드 Key 리스트

파워유저로 가는길 | 2011. 10. 14. 00:31 | Posted by youGom

사용방법 send,  {Enter} second line.

 Space - the spacebar
Tab
Enter (or Return)
Escape (or Esc)
Backspace (or BS)

Delete (or Del)
Insert (or Ins)
Home
End
PgUp
PgDn
Up
Down
Left
Right

ScrollLock
CapsLock
NumLock

Numlock ON Numlock OFF
Numpad0 NumpadIns
Numpad1 NumpadEnd
Numpad2 NumpadDown
Numpad3 NumpadPgDn
Numpad4 NumpadLeft
Numpad5 NumpadClear
Numpad6 NumpadRight
Numpad7 NumpadHome
Numpad8 NumpadUp
Numpad9 NumpadPgUp
NumpadDot (.) NumpadDel
NumpadDiv (/) NumpadDiv (/)
NumpadMult (*) NumpadMult (*)
NumpadAdd (+) NumpadAdd (+)
NumpadSub (-) NumpadSub (-)
NumpadEnter NumpadEnter


F1 through F24 - The 12 or more function keys at the top of most keyboards.

AppsKey - this is the key that invokes the right-click context menu.

LWin - the left windows key
RWin - the right windows key. Note: unlike Control/Alt/Shift, there is no generic/neutral "Win" key because the OS does not support it.
Control (or Ctrl)
Alt
Shift
Note: The hotkeys Shift::, Alt::, and Control:: fire upon release of the key unless they have the tilde prefix such as ~Alt::. By contrast, a specific left or right hotkey such as LAlt:: fires upon press-down.

Note: For the most part, these next 6 keys are not supported by Windows 95/98/Me. Use the above instead:
LControl (or LCtrl) - the left control key
RControl (or RCtrl) - the right control key
LShift - the left shift key
RShift - the right shift key
LAlt - the left Alt key
RAlt - Note: If your keyboard layout has AltGr instead of RAlt, you can probably use it as a hotkey prefix via <^>! as described here. In addition, "LControl & RAlt::" would make AltGr itself into a hotkey.

PrintScreen
CtrlBreak
Pause
Break -- Since this is synonymous with Pause, use ^CtrlBreak in hotkeys instead of ^Pause or ^Break.

Help - this probably doesn't exist on most keyboards. It's usually not the same as F1.
Sleep - note that the sleep key on some keyboards might not work with this.

The following exist only on Multimedia or Internet keyboards that have extra buttons or keys:
Browser_Back
Browser_Forward
Browser_Refresh
Browser_Stop
Browser_Search
Browser_Favorites
Browser_Home
Volume_Mute
Volume_Down
Volume_Up
Media_Next
Media_Prev
Media_Stop
Media_Play_Pause
Launch_Mail
Launch_Media
Launch_App1
Launch_App2

SCnnn (where nnn is the scan code of a key) - Recognizes unusual keys not mentioned above. See Special Keys for details.

VKnn (where nn is the hexadecimal virtual key code of a key) - This rarely-used method also prevents certain types of hotkeys from requiring the keyboard hook. For example, the following hotkey does not use the keyboard hook, but as a side-effect it is triggered by pressing either Home or NumpadHome: ^VK24::MsgBox You pressed Home or NumpadHome while holding down Control. See Special Keys for more information

:

[AutoHotKey] 기본 사용법

파워유저로 가는길 | 2011. 8. 16. 11:35 | Posted by youGom


--------------------------------------------------------------------------

      Send, {}  {}안의 글자를 누릅니다.

      Sleep, n  n만큼 쉽니다..  1000 = 1초

      MouseClick, Left or Right  마우스 왼쪽 or 오른쪽 클릭

      Return  되돌아가다 스크립트 마지막에 씁니다.

      Pause 중지 / 재시작 (Return 아래에 써주세요)

      Exitapp 오토핫키 종료

 

--------------------------------------------------------------------------

     

    F1  시작

    F2  재시작

    F3  종료

 

--------------------------------------------------------------------------

F1::

Loop

 

{

Send, dkssudgktpdy

Sleep, 300

Send, {F2}

Sleep, 300

}

Return

F2::Pause

F3::Exitapp

 

--------------------------------------------------------------------------

간단합니다.. 마지막에 Send, {F2} 를 쓴 것은 한번만 루프하려고 한거구요..

F2를 또 누르시면 도 칩니다. 참 그리고 '한/영' 키는 '한글'로 되어있어야 되구요.

Ctrl+a 를 누르면 시작하게 하는 방법은 F1을 ^a 로 바꾸어 주시면 됩니다...

^이 CTRL 입니다...

-------------------------------------------------------------------------- 

 

: