Shovel Posted June 11, 2016 Posted June 11, 2016 I want to do a pixel search but the problem is that this specific pixel im looking for appears and disappears at random. So basically I tried doing search pixel, if true then click, if false then repeat search. I have $pix = PixelSearch(672,315,972,508,0x021831,5) if IsArray($pix) = true then MouseClick("left", $pix[0], $pix[1],1,1) EndIf if IsArray($pix) = False Then $pix = PixelSearch(672,315,972,508,0x0A75B3,1) if IsArray($pix) = true then MouseClick("left", $pix[0], $pix[1],1,1) EndIf Endif But it didn't actually stop to repixel search when the pix wasn't found and continued instead to do the next action. my theory was that until u find the pixel, keep looking for it. Any help?
Shovel Posted June 11, 2016 Author Posted June 11, 2016 sorry i meant $pix = PixelSearch(672,315,972,508,0x021831,5) if IsArray($pix) = true then MouseClick("left", $pix[0], $pix[1],1,1) EndIf if IsArray($pix) = False Then $pix = PixelSearch(672,315,972,508,0x021831,5) if IsArray($pix) = true then MouseClick("left", $pix[0], $pix[1],1,1) EndIf Endif
water Posted June 11, 2016 Posted June 11, 2016 Welcom to AutoIt and the forum! Can you please tell us which program you try to automate? Pixel related functions are not very reliable because they depend on screen resolution and window position. Most of the time there are more reliable ways to do what you want to do. My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
Shovel Posted June 11, 2016 Author Posted June 11, 2016 Is pixel search like, it will search forever for that pixel? Or can I set a time like: look for 5 seconds. If not, repeat search.
water Posted June 11, 2016 Posted June 11, 2016 No, you need to call Pixelsearch in a loop. But again: If you can tell us which program you try to automate we can give much better advice. My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
water Posted June 11, 2016 Posted June 11, 2016 BTW: Could you please use code tags when posting code? Means: the "<>" button in the editor. Enhances readability of your code My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
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