Search found 2 matches

by darkestdream
19 Aug 2018, 11:48
Forum: General
Topic: CTRL+Z question
Replies: 1
Views: 4618

Re: CTRL+Z question

The following code solves the problem

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)  
by darkestdream
19 Aug 2018, 10:28
Forum: General
Topic: CTRL+Z question
Replies: 1
Views: 4618

CTRL+Z question

Hi all, I'm facing some difficulties mapping CTRL+Z on my bluetooth keyboard. This is the hardware I'm using: https://images-na.ssl-images-amazon.com/images/I/711IC1dOUmL._SX466_.jpg What I would like to do is to map the CTRL+Z combo on the "(" key. When the "(" key is pressed, the hardware sends 16...