Sabiancym 0 Posted August 28, 2010 Basically, I need a script that will scan an area for certain items going across the screen. When it finds one it will click on it, but there are other items that look similar, but have a red ring around them that I don't want it to click on. Example: Script finds a blue circle, it clicks on it. Script finds a blue circle with a red ring around it, it ignores it. Is it possible to do this? Or can it only search for one pixel color? Thanks Share this post Link to post Share on other sites
JohnOne 1,604 Posted August 28, 2010 Script finds a blue circle, it clicks on it.Script finds a blue circle with a red ring around it, it ignores it.Is it possible to do this? Or can it only search for one pixel color?ThanksYes, to both. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Share this post Link to post Share on other sites
Sabiancym 0 Posted August 28, 2010 Yes, to both.Ok, so do I accomplish this using the pixelSearch function? Or is there something else I need to be using? Share this post Link to post Share on other sites
Realm 19 Posted August 28, 2010 look at PixelGetColor() & PixelSearch(), you can check multiple points, and different colors with each function. My Contributions: Unix Timestamp: Calculate Unix time, or seconds since Epoch, accounting for your local timezone and daylight savings time. RegEdit Jumper: A Small & Simple interface based on Yashied's Reg Jumper Function, for searching Hives in your registry. Share this post Link to post Share on other sites
Sabiancym 0 Posted August 29, 2010 look at PixelGetColor() & PixelSearch(), you can check multiple points, and different colors with each function.Cool, thanks for the help. Share this post Link to post Share on other sites