@MartinLichtblau commented on GitHub (Feb 1, 2019):
Indeed the mouse stops working after some hibernations. BUT the same happens when turning the mouse on/off multiple (~7) times. Once this…
@Revvilo commented on GitHub (Dec 2, 2018):
Awesome. And yes, that's what I was originally doing to avoid a big copy-paste tower of subscriptions, but man, this is taking it to a new level. So…
@Revvilo commented on GitHub (Dec 3, 2018):
So in regards to the original issue and now knowing that I can use .Bind(); I subscribed all keys to the same callback, binding the code and name…
@evilC commented on GitHub (Jan 30, 2019):
Cannot reproduce this issue on my PC, your script works fine
@evilC commented on GitHub (Jan 30, 2019):
Define "Not working". Do you mean that they no longer function in Windows as mice, or do you mean that AHI does not see them?
This seems unlikely to…
@MartinLichtblau commented on GitHub (Aug 9, 2019):
So I've faced this issue many times now and when I did I always did a restart, since that's the only thing that works; Replugging, Disabling…
@MartinLichtblau commented on GitHub (Feb 1, 2019):
They didn't respond. Didn't show up in AHI, through e.g. your Monitor.ahk. But were shown in Windows Device Manager. But more I didn't check.…
@evilC commented on GitHub (Aug 9, 2019):
This is a known issue. Unplugging and replugging a device will cause the ID to increment.
Once it increments to beyond ID 10 (For keyboards) or 20…
@evilC commented on GitHub (Dec 2, 2018):
It will override.
I suppose you don't have to go with either one func per key or one func for all, you could split it up.
eg you could maybe have a…
@Revvilo commented on GitHub (Dec 2, 2018):
Oh jeez. Ok yeah, that might have been a good idea to use first... might've taken me a while to come up with that, so I appreciate the jump-start! I…
@Revvilo commented on GitHub (Dec 1, 2018):
Ah, okay. Too bad. I'm actually finding the key up event useful a lot more than I thought I would, so it doesn't seem to be as big of an issue as it…
@evilC commented on GitHub (Dec 2, 2018):
I corrected the docs, thanks.
If you want to subscribe to every key on the keyboard, you could use a function like this:
AHI := new…
@Revvilo commented on GitHub (Dec 5, 2018):
No, it doesn't, made sure to check that first. Sorry I was a bit tired when writing that and must've spaced out on it.
@exp111 commented on GitHub (Sep 18, 2020):
I don't know if the TS3Patch is even updated to the newest version and as these plugins rely on that plugin I can't do much without it.
@MartinLichtblau commented on GitHub (Jan 13, 2019):
Didn't mean it like this. Anyway... Another bonus: the send commands go even deeper than the windows key registry remaps.
@evilC commented on GitHub (Dec 1, 2018):
The Monitor is incapable of blocking.
As the code currently stands, you would have to declare a subscription to every key on the keyboard, and set the…
@Revvilo commented on GitHub (Dec 5, 2018):
Ah okay, I'd guess that this might be the normal behaviour of the character and AHK just has a system in place to allow for what I did in `SendInput,…