Jump to content

Recommended Posts

Posted

Hi!

I have a problem with pixelsearching

Func pixel()
    PixelSearch(566,302,611,332,0x0260FE)
    Sleep(500)
    If Not @error Then
  Call("tovabb")
    EndIf
    Return
EndFunc

So how do i do, that the script will only continue, if it finds the specified color(what i need to switch with the "if not @error ....")

I know its really easy, but im newbie to AutoitV3, so pls help!

And sorry for my bad enlgish! :whistle:

Posted

;this is a loop
for $a = 1 to 2
;insert the exit in here.
;If @error = (a certain error)Then exitloop
 

$a=1
next
;the next call would go here

i hope this helps kinda confusing on what you are asking and this is the only thing i could think of.

  • Developers
Posted

What about this logic ??

Pixel()
tovabb()

Func pixel()
   While 1
      PixelSearch(566,302,611,332,0x0260FE)
      If Not @error Then return
      Sleep(500)
   Wend
EndFunc

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.
  :)

Posted (edited)

Thanks so much, problem solved !! (ive tried beerman's)

JdeB ive tried your method too, it worked, thanks

Edited by Gtevil

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
×
×
  • Create New...