Code: Select all
-- shift down
lmc_set_handler('BTKEY',16,1,function(button, direction)
shift=true
end)
-- ( to CTRL+Z
lmc_set_handler('BTKEY',57,0,function(button, direction)
if(shift == true) then
lmc_send_keys("^z")
shift=false
end
end)