lilshortwun Posted June 9, 2007 Posted June 9, 2007 Hi, is there any way to make autoit send out random words? Thank you.
BrettF Posted June 9, 2007 Posted June 9, 2007 Hi, is there any way to make autoit send out random words? Thank you.Yes. Put those words, into a array (or a txt document, containing the random words, separated by a "|" or something similar. Now read it, then string split, the read file, by the separator char. Now just call it like this: $array[Random (1, Ubound($array)-1)] Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version!
lilshortwun Posted June 9, 2007 Author Posted June 9, 2007 I'm thinking more like this. Send("testing testing testing" X) <---- where the X is a 6 digit number thats random. Is that possible? Please help me
herewasplato Posted June 10, 2007 Posted June 10, 2007 $x = Random(0, 9, 1) Send("testing testing testing" & $x) [size="1"][font="Arial"].[u].[/u][/font][/size]
BrettF Posted June 10, 2007 Posted June 10, 2007 Hi, is there any way to make autoit send out random words? Thank you.I'm thinking more like this.Send("testing testing testing" X) <---- where the X is a 6 digit number thats random. Is that possible? Please help meFirst a random word then a random number??? Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version!
herewasplato Posted June 10, 2007 Posted June 10, 2007 (edited) First a random word then a random number??? They were just a couple of random posts :-) Edit: Grammmmarrrr Edited June 10, 2007 by herewasplato [size="1"][font="Arial"].[u].[/u][/font][/size]
herewasplato Posted June 10, 2007 Posted June 10, 2007 wow thanks so much!You are welcome - but use it only for good :-) [size="1"][font="Arial"].[u].[/u][/font][/size]
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now