Jump to content

Error: non-Array variable


Recommended Posts

Hi guys,

I get the following error message by a script:

"Line -1:
Error: Subskript used with non-Array variable"

The row which is causing the error is probably this one:

MouseClick($Click, $SearchResult[0]+25, $SearchResult[1]+35, 7, 3)

Here is the code in a better context.

.........
$SearchResult = PixelSearch(252,196,768,487,$Target,5,3)

If @error Then
Else
MouseClick($Click, $SearchResult[0]+25, $SearchResult[1]+35, 7, 3)
if $SearchResult = PixelSearch(237,193,806,638,$Target,5,1) Then
Send("{enter}") 

Send("{F10}") Else
Send("{F12}") 
$SearchResult = PixelSearch(342,342,1000,342,$Target,5,3)
MouseClick($Click, $SearchResult[0]+25, $SearchResult[1]+35, 7, 3)
if $SearchResult = PixelSearch(237,193,806,638,$Target,5,1) Then
..........

Perhaps anyone can explain me how I can resolve this error.

Link to comment
Share on other sites

This worked for me.... :P

$Target = 0xFFFFFF
$Click = "Primary" 

$SearchResult = PixelSearch(252, 196, 768, 487, $Target, 5, 3)

If Not @error Then
    MouseClick($Click, $SearchResult[0] + 25, $SearchResult[1] + 35, 7, 3)
    If $SearchResult = PixelSearch(237, 193, 806, 638, $Target, 5, 1) Then
        Send("{enter}")
        Send("{F10}")
    Else
        Send("{F12}")
        $SearchResult = PixelSearch(342, 342, 1000, 342, $Target, 5, 3)
        MouseClick($Click, $SearchResult[0] + 25, $SearchResult[1] + 35, 7, 3)
    EndIf
EndIf
Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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