The -k parameter does indeed do what I need as far as not blocking the keyboards goes!
I have a follow up question though- is there a way to run two instances of LuaMacros simultaneously? I need to block one keyboard without blocking the other, and I'm not quite sure how to do that.
Search found 5 matches
- 19 Mar 2021, 18:10
- Forum: General
- Topic: Handle input from keyboard without blocking events
- Replies: 3
- Views: 7145
- 19 Mar 2021, 18:03
- Forum: General
- Topic: [SOLVED] Macro to hold down/release (TOGGLE)
- Replies: 2
- Views: 8295
Re: Macro to hold down/release (TOGGLE)
There is a way, with a couple caveats. First of all, from what I've heard autohotkey is just the right sort of tool for this job, although I have never used it myself. You might check it out. Don't get me wrong, LuaMacros can do it too, but it might be overkill. The other consideration is that this ...
- 18 Mar 2021, 19:48
- Forum: General
- Topic: Handle input from keyboard without blocking events
- Replies: 3
- Views: 7145
Handle input from keyboard without blocking events
I'm still working on this keyboard project, and I had a question/feature request. Is there a way to handle input from a keyboard without blocking it? This is useful when tracking inputs from individual devices without messing up their use/capabilities. I tried simulating all the keypresses in the ha...
- 03 Mar 2021, 11:44
- Forum: General
- Topic: Check key state?
- Replies: 2
- Views: 5807
Re: Check key state?
Thanks for the quick reply!
I guess I'll just handle the main keyboard events (simulating the actual key event) and make a virtual keyboard to reference. Sadly I've run into difficulties with the C# side of things.
It turns out Windows isn't easily fooled.
I guess I'll just handle the main keyboard events (simulating the actual key event) and make a virtual keyboard to reference. Sadly I've run into difficulties with the C# side of things.

- 02 Mar 2021, 19:20
- Forum: General
- Topic: Check key state?
- Replies: 2
- Views: 5807
Check key state?
I'm working on a project to use my second keyboard to do all sorts of cool stuff, for which I'm using LUAMacros for some tasks, and sending all the encoded key event data to a C# programme that does the rest. I've noticed that although LUAMacros handles the KeyUp and KeyDown events when lmc_set_hand...