Jump to content

Recommended Posts

Posted
15 hours ago, genius257 said:

where is your desired target for the text to be sent to?

for emails word.txt file contain some hello,hi, dear. and bunch of shortcut greetings

Posted

Okay so here's an idea, because currently as soon as you launch the application, the text will be sent.

Press the + key (not numpad) to send to current active window

HotKeySet("{+}", "_Send")

$File = FileReadToArray("words.txt")

While 1
    Sleep(10)
WEnd

Func _Send()
    $RandomWords = $File[Random(0, UBound($File) - 1, 1)]
    Send($RandomWords)
EndFunc

Just close the application by clicking the tray icon and choosing exit

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...