Created
September 25, 2020 14:11
-
-
Save FelipeGrijo/33a8edc6845f251a6c636d3272b01b43 to your computer and use it in GitHub Desktop.
Pressiona tecla por x segundos. AutoHotkey
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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