Jump to content

Repeat a set script and pixel search duration


Recommended Posts

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? 

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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 2022-02-19 - Version 1.6.1.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 (NEW 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

 

Link to comment
Share on other sites

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 2022-02-19 - Version 1.6.1.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 (NEW 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

 

Link to comment
Share on other sites

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 2022-02-19 - Version 1.6.1.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 (NEW 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

 

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...