Nanascalala Posted April 10, 2004 Posted April 10, 2004 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
Dan Posted April 10, 2004 Posted April 10, 2004 If $color NOT = 4802889 Then isweg() ; <----- NOT WORKING!!Try this:If NOT ($color = 4802889) Then isweg()
scriptkitty Posted April 10, 2004 Posted April 10, 2004 or If $color <> 4802889 Then isweg() AutoIt3, the MACGYVER Pocket Knife for computers.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now