Jump to content

Little Help Needed


Guest Gtevil
 Share

Recommended Posts

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:

Link to comment
Share on other sites

  • Developers

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

Link to comment
Share on other sites

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

JdeB ive tried your method too, it worked, thanks

Edited by Gtevil
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...