IT
Current auto hot key script
Last72
2020. 9. 30. 08:04
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
; Select All
F1::
Send, ^a
return
; Copy All
F5::
Send, ^a
Send, ^c
return
; All Paste
F6::
Send, ^a
Send, ^v
return
; Copy
F3::
Send, ^c
return
; Paste
F4::
Send, ^v
return
; Ctrl + Tab
`::
Send, ^{Tab}
return
Well I do lot of copy and paste