korzen9999 Posted September 28, 2016 Posted September 28, 2016 expandcollapse popup; 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?
careca Posted September 29, 2016 Posted September 29, 2016 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 Renamer - Rename files and folders, remove portions of text from the filename etc. GPO Tool - Export/Import Group policy settings. MirrorDir - Synchronize/Backup/Mirror Folders BeatsPlayer - Music player. Params Tool - Right click an exe to see it's parameters or execute them. String Trigger - Triggers pasting text or applications or internet links on specific strings. Inconspicuous - Hide files in plain sight, not fully encrypted. Regedit Control - Registry browsing history, quickly jump into any saved key. Time4Shutdown - Write the time for shutdown in minutes. Power Profiles Tool - Set a profile as active, delete, duplicate, export and import. Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes. NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s. IUIAutomation - Topic with framework and examples Au3Record.exe
water Posted September 29, 2016 Posted September 29, 2016 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 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
Aareon Posted October 1, 2016 Posted October 1, 2016 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.
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