autohotkey - Clicking when part of window changes color -


I'm trying to create a program that will click on a certain location when some location color changes in the desktop application It goes from white to green words or else somewhere I can understand what commands the client sends to the program, when they click on a certain button and then loop the command until the button is available. .

I know that it seems misleading and strange, but please tell me what is the best of programming language for any of these options. Apart from this, I would like to know how this program will be challenging and how to do it. Currently I'm using auto hotkey if I want to clarify anything, then tell me thank you in advance.

Look into AutoHot's documentation. Keep in mind that pixels should be visible, and that X and Y are relative to the active window, until it changes.

  PixelGetColor, OutputWire, X, Y [, Alt | Slow | RGB]   

Then you can compare the color with the color you are looking for. Keep in mind that colors are in BGR format, 0000FF is red. If you have any color in RGB, then change it (112233 => 332211) or use RGB parameters.

Comments

Popular posts from this blog

Python SQLAlchemy:AttributeError: Neither 'Column' object nor 'Comparator' object has an attribute 'schema' -

java - How not to audit a join table and related entities using Hibernate Envers? -

mongodb - CakePHP paginator ignoring order, but only for certain values -