hunt-and-peck
hunt-and-peck copied to clipboard
Support double click
Is it possible to support double click, right click, middle click and so on by using different hotkeys or CLI options?
And during typing mutiple characters, it would be better if the matcthing labels are highlighting or others are hidden.
Not within UIAutomation
This is really needed for full navigation.
Not within UIAutomation
There could be a workaround though using screen coordinates and emulating mouse clicks. Here's an example of an implementation. This project is my 1st foray into C# so I might not be able to pull off implementing it.
One question is what would the user experience be like with this implemented? Simply appending a integer at the end could denote n clicks but defining left/right/middle is something to be discussed.
We can point the mouse cursor to selection (it is possible, draft is here: https://github.com/adrianhajdukiewicz1/hunt-and-peck/pull/5#) and then map built-in MouseKeys Windows feature to different keys (using AutoHotKeys maybe?). MouseKeys is a feature that allows steering the mouse with the keyboard only (e.g. by clicking a combination of buttons you perform right mouse click).