Nanascalala 0 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 Share this post Link to post Share on other sites
Dan 0 Posted April 10, 2004 If $color NOT = 4802889 Then isweg() ; <----- NOT WORKING!!Try this:If NOT ($color = 4802889) Then isweg() Share this post Link to post Share on other sites
scriptkitty 1 Posted April 10, 2004 or If $color <> 4802889 Then isweg() AutoIt3, the MACGYVER Pocket Knife for computers. Share this post Link to post Share on other sites