PHPWarner Posted December 22, 2009 Posted December 22, 2009 Hello, Can I do something similar as my PHP code on AutoIt? $quotes[] = "A1"; $quotes[] = "B1"; srand ((double) microtime() * 1000000); $random_quote = rand(0, count($quotes) - 1); $random_quote = $quotes[$random_quote]; Thanks in advice.
SEuBo Posted December 22, 2009 Posted December 22, 2009 (edited) Like this? Dim $aArray[10] = ["A","B","C","D","E","F","G","H","I","J"] MsgBox(0,"",$aArray[Random(0,UBound($aArray)-1,1)]) /EDIT: Fast reply ate my Line Break :S Edited December 22, 2009 by SEuBo AutoIt Examples/UDF's:Generate Function at Runtime using IRunningObjectTable / AutoItObjectVery Simple Inter-Process Communication (using AutoItObject Pure AutoIt)
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