자유게시판
해피는 펑션키를 쓰려면 Fn키를 같이 눌러야 하기 때문에 오른쪽 새끼 손가락으로 Fn키 누르는게 습관이 되었나봅니다.
어제 일반 배열 키보드를 쓰면서도 맨 오른쪽 하단의 키도 같이 누르고 있는 저를 발견하곤
혼자서 잠시 웃었습니다..ㅎㅎㅎ
요새 장터때문에 하도 우중중한 글이 많아서 글 올려봅니다..
나는야 破壞之王~!
요즘 쓰는 오토핫키 맵핑입니다...참고가 되시려나..ㅠ_ㅠ
해피용입니다.하앍~
; You can also run more than one .ahk file simultaneously and each will
; get its own tray icon.
; Please read the QUICK-START TUTORIAL near the top of the help file.
; It explains how to perform common automation tasks such as sending
; keystrokes and mouse clicks. It also explains how to use hotkeys.
; SAMPLE HOTKEYS: Below are two sample hotkeys. The first is Win+Z and it
; launches a web site in the default browser. The second is Control+Alt+N
; and it launches a new Notepad window (or activates an existing one). To
; try out these hotkeys, run AutoHotkey again, which will load this file.
#z::Run www.autohotkey.com
^!n::
IfWinExist Untitled - Notepad
WinActivate
else
Run Notepad
return
; Note: From now on whenever you run AutoHotkey directly, this script
; will be loaded. So feel free to customize it to suit your needs.
; Create Notepad: WinKey + n
#n::
IfWinExist Untitled - Notepad
WinActivate
else
Run Notepad
return
; Create calculate: WinKey + c
#c::
IfWinExist Untitled -
WinActivate
else
Run calc.exe
return
; Create winm: WinKey + x
#x::
IfWinExist Untitled -
WinActivate
else
Run C:\Program Files\WinM\WINM.exe
return
; Create explorer: WinKey + v
#v::
IfWinExist Untitled -
WinActivate
else
Run C:\Program Files\Internet Explorer\IEXPLORE.EXE
return
; Alt + 4 -> Alt + F4
!4::Send !{F4}
; 맨오른쪽 키를 한자키로 셋팅
RWin::
Send, {SC1f1}
return
#singleInstance force
subApplyNumLockWindow()
return
~ScrollLock:: subApplyNumLockWindow()
return
subApplyNumLockWindow(){
static numLockGui:=77
bNumLockOn:=GetKeyState("ScrollLock","T")
if(bNumLockOn){
Gui %numLockGui%: +Owner
Gui %numLockGui%:Show, NoActivate, NumLockWindow
}else{
Gui %numLockGui%:Destroy
}
}
#ifWinExist NumLockWindow
sc027::Left
'::Right
[::Up
/::Down
l::PgUp
.::PgDn
k::Home
,::End
j::NumpadDiv ;(/)
h::NumpadMult ;(*)
m::numpadsub ;(-)
n::NumpadAdd ;(+)
1::F1
2::F2
3::F3
4::F4
5::F5
6::F6
7::F7
8::F8
9::F9
0::F10
y::send, 00
u::NumpadDot
-::F11
=::F12
\::Ins
a::SoundSet -4
s::SoundSet +4
d::SoundSet +1,,mute
f::
Drive, Eject
; If the command completed quickly, the tray was probably already ejected.
; In that case, retract it:
if A_TimeSinceThisHotkey < 1000 ; Adjust this time if needed.
Drive, Eject,, 1
return
#ifWinExist
; Note: From now on whenever you run AutoHotkey directly, this script
; will be loaded. So feel free to customize it to suit your needs.
; Please read the QUICK-START TUTORIAL near the top of the help file.
; It explains how to perform common automation tasks such as sending
; keystrokes and mouse clicks. It also explains more about hotkeys.
alt-4를 누릅니다...
하도 적응되서 일반 키보드에도 alt-4를 오토핫키로 맵핑해놨다는....
alt-4의외로 정말 편합니다.