Jump to content

Recommended Posts

Posted

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

Posted (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 by FireFox

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...