Alt down does seem to still pass through
Posted: 22 Oct 2018, 14:04
I'm trying to change place of the ALT and WIN key only on my laptop but not for external keyboards.
I have created this program
The win key seem to work nicely as an alt key, but the alt key works strangely. I suspect that it still passes though alt down (as well as what I send), but not alt up.
Is ALT a special key or is my lua program crap?
I have tried running as admin with the same result.
I have created this program
Code: Select all
-- assign logical name to macro keyboard
lmc_assign_keyboard('MACROS');
-- direction 1 = down
-- direction 0 = up
-- button 18 = alt
-- button 91 = win
-- lmc_send_input(65, 0, 0) -- press A
-- lmc_send_input(65, 0, 2) -- release A
-- define callback for whole device
lmc_set_handler('MACROS',function(button, direction)
print('button: ' .. button .. ' direction: ' .. direction)
if (button == 18) then -- if ALT
if (direction == 1) then lmc_send_input(91, 0, 0) -- press WIN
elseif (direction == 0) then lmc_send_input(91, 0, 2) -- release WIN
end
elseif (button == 91) then -- if WIN
if (direction == 1) then lmc_send_input(18, 0, 0) -- press ALT
elseif (direction == 0) then lmc_send_input(18, 0, 2) -- release ALT
end
else
if (direction == 1) then lmc_send_input(button, 0, 0) -- pass through press
elseif (direction == 0) then lmc_send_input(button, 0, 2) -- pass through release
end
end
end)
Is ALT a special key or is my lua program crap?
I have tried running as admin with the same result.