hunt-and-peck icon indicating copy to clipboard operation
hunt-and-peck copied to clipboard

Support double click

Open Leoongithub opened this issue 4 years ago • 3 comments

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.

Leoongithub avatar Sep 16 '20 06:09 Leoongithub

Not within UIAutomation

liuxilu avatar Sep 17 '20 07:09 liuxilu

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.

LexiconCode avatar Jan 14 '21 07:01 LexiconCode

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).

adrianhajdukiewicz1 avatar Feb 18 '23 12:02 adrianhajdukiewicz1