Search found 5 matches

by SifJar
14 Jan 2016, 16:42
Forum: General
Topic: Original key still being sent?
Replies: 4
Views: 10890

Re: Original key still being sent?

I don't think so, that would be even more complicated. The issue is windows probably have some special API to handle window key and LuaMacros blocking mechanism doesn't work with this special way. Once I would investigate and see the possibilities it would be easier to block the key completely than...
by SifJar
13 Jan 2016, 15:26
Forum: General
Topic: Original key still being sent?
Replies: 4
Views: 10890

Re: Original key still being sent?

Blocking the original key press is kind of windows hack. It's quite possible that this hack I have chosen doens't work for windows key. But I don't see other way how to block original key press so this is probably a fact - LuaMacros cannot block windows key. Ah, that's frustrating. Oh well. Would i...
by SifJar
13 Jan 2016, 15:23
Forum: General
Topic: Disable original key echo
Replies: 19
Views: 29040

Re: Disable original key echo

admin wrote:Not yet, if you're willing to test, I'll prepare this dll
Upon further testing (as mentioned in my other topic), it appears only to apply to the Windows key, unfortunately. So I'm not experiencing the same issue as others I don't think.
by SifJar
12 Jan 2016, 14:06
Forum: General
Topic: Disable original key echo
Replies: 19
Views: 29040

Re: Disable original key echo

I'm experiencing this problem as well. Was the DLL to always block the key ever made?
by SifJar
12 Jan 2016, 14:01
Forum: General
Topic: Original key still being sent?
Replies: 4
Views: 10890

Original key still being sent?

So I'm very new to this, used Lua a little before years ago (can't remember any of it now though). I have written the following script: lmc_device_set_name('tablet', 'GDIX1001') lmc_print_devices() lmc_set_handler('tablet',function(button, direction) if (button == 91) then print ('pressed') end end)...