Skip to content

Instantly share code, notes, and snippets.

@FelipeGrijo
Created September 25, 2020 14:11
Show Gist options
  • Save FelipeGrijo/33a8edc6845f251a6c636d3272b01b43 to your computer and use it in GitHub Desktop.
Save FelipeGrijo/33a8edc6845f251a6c636d3272b01b43 to your computer and use it in GitHub Desktop.
Pressiona tecla por x segundos. AutoHotkey
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%
^r::Suspend ; Control + R = pausa
^+r::ExitApp ; Control + Shift + R = fecha
r:: ; R = pressiona letra E pora 1 seg
Send, {e Down}
Sleep, 1000
Send, {e Up}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment