Created
April 19, 2019 04:32
-
-
Save eddiez9/210cf1a4e85fee6e9788a338f8e71d24 to your computer and use it in GitHub Desktop.
Autohotkey to type a file's contents
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
^j:: | |
SetKeyDelay, 1 | |
loop,read,C:\test.txt | |
{ | |
Send,{raw}%a_loopReadLine% | |
Sleep, 100 | |
SendInput,{enter} | |
Sleep, 50 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment