Alright, I'm trying to make a script that will type, in notepad, every combination of word and number using a-z, A-Z, and 1-0.
Example:
a
b
c
d
e....
then when it gets done with that it will go,
aa
ab
ac
ad....
then,
ba
bb
bc...
and so on. I've been messing around with this for a while and this is what I have to far. To be honest I don't even know how most of this script works, or if this is even the best way to do this. Please help.
CODEHotKeySet("{DEL}", "MyStart")
HotKeySet("{INS}", "MyExit")
$alphabet = StringSplit('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890')
$g = 1
While 1
Sleep (2000)
Wend
Func MyStart()
While $g = 1
For $a = 1 to 62
$letter = $alphabet[$a]
Send($letter)
Send("{Enter}")
Next
$g = 2
WEnd
While $g = 2
For $b = 1 to 62
$letterb = $alphabet[$b]
Send($letterb)
Next
For $a = 1 to 62
$letter = $alphabet[$a]
Send($letter)
Send("{Enter}")
Next
$g = 3
WEnd
EndFunc
FuncMyExit()
Exit
EndFunc
Also, why does codebox get rid of my tabs?