-
More specifically; Is it better to select a small section of the screen or a large one? Is it better to have lots of detail in it or as few as possible? Does the amount of contrast within the region play a role in its accuracy of being detected? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi ! I think that's a good question, as I can regularly see people in the issues tracker confused about how the application works. Here is a few points that can helps understand how Smart AutoClicker works. Scenario detection processThe application will iterate through the scenario events (clicks before v1.2.0) in the same order as the one configured by the user.
Condition matching:The application compare each pixels colors of the configured image condition to the pixel colors of the current screen frame, at the exact same position. With a tolerance of 0, each pixels of the condition image must be the exact same as the pixels of the screen in order to match the condition. The tolerance is the amount (in %) of tolerated difference between the condition image pixels and the screen frame pixels. How to select my conditions
I hope this will helps you. If you have more questions, feel free to ask. |
Beta Was this translation helpful? Give feedback.
-
Awesome, thanks. |
Beta Was this translation helpful? Give feedback.
Hi !
I think that's a good question, as I can regularly see people in the issues tracker confused about how the application works. Here is a few points that can helps understand how Smart AutoClicker works.
Scenario detection process
The application will iterate through the scenario events (clicks before v1.2.0) in the same order as the one configured by the user.
For each of those events, it checks if the conditions are matched (given the conditions and the operator):
Once the iteration is complete (or stopped) we wait for the next screen frame.
Condition m…