Tengo este codigo que uso para duplicar las teclas disponibles sin quitar la vista del monitor
Code: Select all
^r::t
^c::v
^f::g
Code: Select all
#InstallKeybdHook
if (!A_IsAdmin) {
MsgBox El script no se está ejecutando como Administrador.
ExitApp
}
~CTRL::
if (A_PriorHotkey <> "~CTRL" || A_TimeSincePriorHotkey > 300) {
KeyWait CTRL
return
}
SendPlay z
SendInput z
Return
F12::ExitApp