talkingtree Posted December 6, 2012 Posted December 6, 2012 Hi, For example, my PixelSearch gave 2 variables $abc[0] = 100 $abc[1] = 10 Are you able to alter it's value entered in the array? I tried to alter by $abc = PixelSearch(438, 426, 889, 782, 0x0000FF, 5, 2) If Not @error Then $abc[0] = $abc[0] + 50 ; to get to 150 $abc[1] = $abc[1] -5 ; to get to 5 Endif But it doesnt work, error appears
FireFox Posted December 6, 2012 Posted December 6, 2012 (edited) Hi, Please use code tags. What error do you have? I don't see the problem here. Edit: Check if you are not accessing the array out of this snippet in case of the error. So, you can do : Global $abc = PixelSearch(438, 426, 889, 782, 0x0000FF, 5, 2) If Not @error Then $abc[0] = $abc[0] + 50 ; to get to 150 $abc[1] = $abc[1] -5 ; to get to 5 Else Dim $abc[2] = [100, 10] Endif ConsoleWrite($abc[0] &@CrLF) Br, FireFox. Edited December 6, 2012 by FireFox
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