Skip to content

Instantly share code, notes, and snippets.

@eddiez9
Created April 19, 2019 04:32
Show Gist options
  • Save eddiez9/210cf1a4e85fee6e9788a338f8e71d24 to your computer and use it in GitHub Desktop.
Save eddiez9/210cf1a4e85fee6e9788a338f8e71d24 to your computer and use it in GitHub Desktop.
Autohotkey to type a file's contents
^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