Jump to content

Structured Keysender


Recommended Posts

I am trying to make a keysender that would send something like: a, b c, .... aa, ab, ac... aaa, aab aac... You get the idea.

I already have a keysender that will send any of 73 keys (letters, numbers, their capital forms, and _) in a random way in a set of one to 13.

I started a structured keysender but it would take around 5000 functions in the way I was doing it (with the limited knowledge of AutoIt that I have.)

I'm at school and I'll post what I have when I get home (I don't have the file here =P) but if anyone has any ideas...

Link to comment
Share on other sites

to just spam every charactor in existence do somthign like

for $x=32 to 126
  send(chr($x))
next

you could put this inside another loop that adds a charactor at the end or whatever.

Yeah, good idea, but would that do caps?

And would I have to set $x too? I mean I guess I could do

$x=32
While $x < 127
for $x=32 to 126
  send(chr($x))
next
$x++
Wend

Would that work at all?

Edited by Eric1
Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...