Is it possible to make Logitech scripts targets letters?
For example > F
Using mouse button 5
if I wanted this logitech script to press hold F
key until release of mouse button 5
how would I do that?
function OnEvent(event, arg)
if event == "MOUSE_BUTTON_RELEASED" and arg == 5 then
PressAndReleaseMouseButton(5);
end