Clive Galway

Results 286 comments of Clive Galway

I never heard of a tablet device sending keys. Maybe the software that comes with the device is sending key presses, in which case AHI would not support them, as...

The newly released v0.5.0 now includes a ScanCodeTester to help me investigate issues such as this This one is a bit of a mind-bender to fix, due to the way...

Thanks for the heads up, I will look into it I can think of plenty ways that it could happen BTW, `static device := {}` looks a little risky to...

`AHI.SendKeyEvent(KEYBOARD, GetKeySC(key), sflag == "Down" ? 1 : 2)` Press is 1, release is 0. 2 will do nothing. So you will only ever press the key, and never release...

Yes, the thread pooling is a matter of concern for me too Crumbl3d submitted a PR with some code that makes all the callbacks fire in sequence - he currently...

I made a test release: https://github.com/evilC/AutoHotInterception/releases/tag/v0.4.0 Notice the extra `concurrent` param for the subscribe methods. Try setting this to true and see if any issues still repro.

> The good news is that I can't reproduce the bug, neither with the concurrent param true, false or none at all Hmm, strange. There were quite a lot of...

> #bug: sending RShift instantly kills my script. If this is persisting, can you raise another issue please?

I supply the x86 version, because many people, even on x64 systems, just use x86 AHK, because then compiled scripts etc work on all PCs. The instructions, however, are not...

I made the mess, I guess I need to clean it up... Thank you so much for persisting to remind me on this one, I will try and get it...