Shadowram Posted December 18, 2009 Posted December 18, 2009 Like: Global $test_ab[10] = ["test_ab", "t", 2500, 0, 0, 0, 0, 110] Global $test_ac[10] = $test_ab[10]
BennyBB Posted December 18, 2009 Posted December 18, 2009 Do you mean sth like this? Dim $test_ac = $test_ab _ArrayDisplay($test_ac)
Mat Posted December 18, 2009 Posted December 18, 2009 Yes, you can also store arrays within arrays! #include<Array.au3> Local $aFirstArray[5] = [1, 2, 3, 4, 5] Local $aSecondArray[5] = [1, 2, 3, 4, 5] $aFirstArray[3] = $aSecondArray _ArrayDisplay ($aFirstArray[3], "First Array: Element 3") However, it does warn you in the helpfile against doing this. Mat AutoIt Project Listing
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