Jump to content

Recommended Posts

Posted
; Press Esc to terminate script, Pause/Break to "pause"

Global $Paused, $Runner
HotKeySet("{PAUSE}", "TogglePause")
HotKeySet("{ESC}", "Terminate")
HotKeySet("{F9}", "ShowMe")

;;;; Body of program would go here ;;;;
While 1
    Sleep(10)
WEnd
;;;;;;;;

Func TogglePause()
    $Paused = Not $Paused
    While $Paused
        Sleep(10)
        ToolTip('Script is "Paused"', 0, 0)
    WEnd
    ToolTip("")
EndFunc   ;==>TogglePause

Func Terminate()
    Exit 0
EndFunc   ;==>Terminate

Func ShowMe()
    $Runner = Not $Runner
    While $Runner
$CoOrd = PixelSearch(30, 30,1024, 768, 0xe3559a)   ; Looks for colour 0xff0000.
If Not @error Then ;If it exists then
MouseClick("Left", $Coord2[0], $Coord2[1], 1, 0) ;Clicks the first instance of that colour
else
MsgBox(0,"!","Could not find colur")
EndIf
WEnd
EndFunc   ;==>ShowMe

Hello guys! I need a help with code above. I tkink ive made something wrong. It should find certain colored pixel with speed of 10ms on loop and immidiately click on it.

Also how to input coordinates

Global $Left = 447
 Global $Top = 234
 Global $Right = 774
 Global $Bottom = 350

In it?

Posted

If you see the help file on pixel search, you'll see it explains the coordinates clearly.

https://www.autoitscript.com/autoit3/docs/functions/PixelSearch.htm

Also, you check $Coord, but then click $Coord2.

Also, the color on the function is different than the commented one.

Also, no sleep of 10ms in the pixel function loop, only in main.

$Paused = Not $Paused

Im confused.

  Reveal hidden contents

IUIAutomation - Topic with framework and examples

Au3Record.exe

Posted

Welcome to AutoIt and the forum!

Can you please tell us which program you try to automate? Pixelsearch depends on screen size and window coordinates and most of the time there are more reliable ways to do what you want to do (Control* functions etc.).

My UDFs and Tutorials:

  Reveal hidden contents

 

Posted

Try using the handle of whichever window you're trying to automate, alongside pixelsearch.

You can use mspaint and the print screen button on your keyboard (if you have a standard US keyboard) to find out which color you're trying to find.

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
  • Recently Browsing   0 members

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