Last active
February 28, 2023 16:05
-
-
Save larshp/ee23a6e5d3ddb6038da9a705b0238ea1 to your computer and use it in GitHub Desktop.
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
Escape:: | |
ExitApp | |
Return | |
#n:: ; Windows Key + N | |
index := 1 | |
text = | |
Loop, read, C:\Users\Desktop\input.txt | |
{ | |
Loop, parse, A_LoopReadLine, %A_Tab% | |
{ | |
temp := StrReplace(A_LoopField, ";", A_Tab) | |
text = %text%%temp%`r`n | |
if (Mod(index, 30) = 0) { | |
Paste(text) | |
text = | |
SendInput {PgDn} | |
Sleep 500 | |
} | |
index++ | |
} | |
} | |
Paste(text) | |
Paste(text) { | |
clipboard = %text% | |
Sleep 20 | |
Send ^v | |
Sleep 200 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment