m0rphling 0 Posted September 5, 2004 Hello, I'm still kind of new to AutoIt. I was wondering if there was a simple way to generate a random 16 digit number and then send it to a text box/notepad file. Share this post Link to post Share on other sites
Jos 2,211 Posted September 5, 2004 Hello, I'm still kind of new to AutoIt. I was wondering if there was a simple way to generate a random 16 digit number and then send it to a text box/notepad file. <{POST_SNAPBACK}>$Key = "" For $x=1 to 16 $Key = $Key & int(Random() * 10) Next FileWriteLine("outputfile.txt",$Key) SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Share this post Link to post Share on other sites
m0rphling 0 Posted September 5, 2004 Thank you very much! That's exactly what I've been looking for. I greatly appreciate your benevolent information. Share this post Link to post Share on other sites