SNOWFLAKES DRAWING PAPER

Apple KeyBoard 에서 HOME, END, PageUp, PageDown, Delete 키 설정 본문

참고/정보/유용정보

Apple KeyBoard 에서 HOME, END, PageUp, PageDown, Delete 키 설정

눈송2 2010. 7. 8. 10:32
얼마전에 아이폰에서 타이핑할 일이 있어서 블투 키보드(MB184KH/A)를 구입했다
윈도에서도 사용할려고 블투를 연결을 했는데 HOME, END키가 없네...
그래서 구글링을 하다고 찾았다

AutoHotKey를 이용해서 키를 대체 설정한다

아래 내용은 개인적인 키 설정
Keyboard Media Keys.ahk line 45~

;My settings
  LAlt::LWin
  LWin::LAlt
  #RWin::End
  RWin::Home
  ^RWin::End
  +BS::DELETE
  +Down::PgDn
  +Up::PgUp

reference document : http://www.autohotkey.com/docs/Hotkeys.htm


;My settings
  LAlt::LWin
  LWin::LAlt
  #Right::End
  #Left::Home
  #BS::DELETE
  #Down::PgDn
  #Up::PgUp

or

;My settings
  LAlt::LWin
  LWin::LAlt
  #RWin::End
  RWin::Home
  #BS::DELETE
  #Down::PgDn
  #Up::PgUp




http://www.alvinpoh.com/how-to-remap-keyboard-keys-in-windows-such-as-the-with-apple-keyboard/

AutoHotKey 메뉴얼

다운로드는
http://www.autohotkey.com/download/AutoHotkeyInstall.exe
사 이트 주소는
http://www.autohotkey.com/






사용방법 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.


Comments