Jump to content

Recommended Posts

Posted

Ok, I want to make sure pixel 410,344 is the dec color 4802889. But, if it's not that color run func isweg.

I just want it to continuously check

I have:

Do

$color = PixelGetColor( 410 , 344 )

If $color NOT = 4802889 Then isweg() ; <----- NOT WORKING!!

Until *BLAH*BLAH*

Func isweg()

Msgbox(0,"Alert","ERROR")

EndFunc

plz help, im so stumped, i think its how im using not, but i cant figure it out.

thx for all help

-nanascalala

Posted (edited)

Put NOT before the logic.

Do
$color = PixelGetColor( 410 , 344 )
If NOT $color = 4802889 Then isweg(); <----- NOT WORKING!!
Until *BLAH*BLAH*

Func isweg()
Msgbox(0,"Alert","ERROR")
EndFunc

I prefer the not equal as in <>

equal =

exact ==

not equal <>

equal or greater >=

equal or less than <=

Do
$color = PixelGetColor( 410 , 344 )
If $color <> 4802889 Then isweg(); <----- NOT WORKING!!
Until *BLAH*BLAH*

Func isweg()
Msgbox(0,"Alert","ERROR")
EndFunc
Edited by scriptkitty

AutoIt3, the MACGYVER Pocket Knife for computers.

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