Sorry for the bad english.
Is it possible to fully emulate the left and right mouse click?
That is, so that the key on the keyboard begins to replace the mouse button, including drag and drop, selection, etc.
Mouse click
Re: Mouse click
Thanks for the offer but frankly speaking - no. I was fighting with mouse features in HidMacros and I remember it never worked properly. I'm not even sure if it's technically possible - the advance features you're mentioning, like selection or dnd. Maybe only by writing emulated mouse driver and I don't plan to learn these skills
Petr Medek
LUAmacros author
LUAmacros author
Re: Mouse click
I've done this for the middle mouse button in a somewhat circuitous way, by using LuaMacros + AutoHotkey and some intermediate hidden F23 + F24 for the down/up button actions.
LuaMacros:
AutoHotkey:
LuaMacros:
Code: Select all
if (button == 9) then
if (direction == 1) then lmc_send_keys("{F23}"); -- middle button down
elseif (direction == 0) then lmc_send_keys("{F24}"); -- middle button up
end
end
Code: Select all
F23::Send {MButton down}
F24::Send {MButton up}