jessem Posted January 10, 2008 Posted January 10, 2008 I'm trying to make the conversion from c++ to autoit with arrays. Even then that was some time ago. Pardon the seudo code. $Name [4] = ( "John", "Paul", "Ringo", "George" ) $Rnd = Random(1, 4, 1) msgBox(0, "Favorite Beatle", "You like " & $Name[$Rnd] ) Thanks for the help with a silly question. Jesse
Developers Jos Posted January 10, 2008 Developers Posted January 10, 2008 Dim $Name[4] = ["John", "Paul", "Ringo", "George"] $Rnd = Random(0, 3, 1) MsgBox(0, "Favorite Beatle", "You like " & $Name[$Rnd]) 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.
jessem Posted January 11, 2008 Author Posted January 11, 2008 Dim $Name[4] = ["John", "Paul", "Ringo", "George"] $Rnd = Random(0, 3, 1) MsgBox(0, "Favorite Beatle", "You like " & $Name[$Rnd]) Awsome. Thanks for that!
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