Bluscream blu
blu commented on issue starred/AutoHotInterception-evilC-1#59 2026-02-07 13:51:36 +00:00
Keyboard is reported twice in monitor, same VID/PID, but different handle

@ChrisAcrobat commented on GitHub (Jan 7, 2023):

After a few minutes of more searching I solved by using FromHandle functions. Is this a stable way of dong things?

keyboardId :=…
blu commented on issue starred/AutoHotInterception-evilC-1#60 2026-02-07 13:51:36 +00:00
How to use subscription mode + key modifiers (shift, ctrl, etc)

@Momen-kh commented on GitHub (Sep 9, 2024):

@TheBestPessimist Hi thanks for this post Can I send Ctrl key from my main mouse and another key from my mouse button with InterceptionTapHold…

blu commented on issue starred/AutoHotInterception-evilC-1#59 2026-02-07 13:51:36 +00:00
Keyboard is reported twice in monitor, same VID/PID, but different handle

@evilC commented on GitHub (Mar 21, 2023):

After a few minutes of more searching I solved by using FromHandle functions. Is this a stable way of dong things?

keyboardId :=…
blu commented on issue starred/AutoHotInterception-evilC-1#57 2026-02-07 13:51:35 +00:00
0x80004002 - No such interface supported

@evilC commented on GitHub (Apr 14, 2020):

keyboard = AHI.GetKeyboardId(0x03EB, 0xFF02) should be keyboard := AHI.GetKeyboardId(0x1017, 0xA003) You were literally setting the variable…

blu commented on issue starred/AutoHotInterception-evilC-1#57 2026-02-07 13:51:35 +00:00
0x80004002 - No such interface supported

@Okaghana commented on GitHub (Apr 14, 2020):

That fixes is. Thank you!

blu opened issue starred/AutoHotInterception-evilC-1#59 2026-02-07 13:51:35 +00:00
Keyboard is reported twice in monitor, same VID/PID, but different handle
blu opened issue starred/AutoHotInterception-evilC-1#60 2026-02-07 13:51:35 +00:00
How to use subscription mode + key modifiers (shift, ctrl, etc)
blu opened issue starred/AutoHotInterception-evilC-1#58 2026-02-07 13:51:35 +00:00
AutoHotInterception.ahk not starting at all
blu closed issue starred/AutoHotInterception-evilC-1#59 2026-02-07 13:51:35 +00:00
Keyboard is reported twice in monitor, same VID/PID, but different handle
blu closed issue starred/AutoHotInterception-evilC-1#58 2026-02-07 13:51:35 +00:00
AutoHotInterception.ahk not starting at all
blu closed issue starred/AutoHotInterception-evilC-1#60 2026-02-07 13:51:35 +00:00
How to use subscription mode + key modifiers (shift, ctrl, etc)
blu commented on issue starred/AutoHotInterception-evilC-1#59 2026-02-07 13:51:35 +00:00
Keyboard is reported twice in monitor, same VID/PID, but different handle

@ChrisAcrobat commented on GitHub (Jan 7, 2023):

I have a similar problem, but mine is for two different mice.

ID: 15 (Logitech M705) VID/PID: 0x046D, 0xC52B Handle: HID\VID_046D&PID_C52B&REV_…

blu commented on issue starred/AutoHotInterception-evilC-1#60 2026-02-07 13:51:35 +00:00
How to use subscription mode + key modifiers (shift, ctrl, etc)

@TheBestPessimist commented on GitHub (Sep 26, 2020):

Ah, I'm sorry for bothering with this, the solution was so simple: I just had to send in Blind mode.

blu commented on issue starred/AutoHotInterception-evilC-1#58 2026-02-07 13:51:35 +00:00
AutoHotInterception.ahk not starting at all

@wsbankenstein commented on GitHub (Nov 14, 2020):

Reinstalled the Interception driver. Fixed the issue.

blu closed issue starred/AutoHotInterception-evilC-1#57 2026-02-07 13:51:34 +00:00
0x80004002 - No such interface supported
blu commented on issue starred/AutoHotInterception-evilC-1#56 2026-02-07 13:51:34 +00:00
Relative move cannot reach the correct position

@evilC commented on GitHub (Nov 5, 2020):

Because FPS games do not have a cursor position, they use relative moves

blu commented on issue starred/AutoHotInterception-evilC-1#57 2026-02-07 13:51:34 +00:00
0x80004002 - No such interface supported

@evilC commented on GitHub (Apr 12, 2020):

keyboard in your function is a local variable, not global. You are passing an empty value for that parameter

SendText(string){
	global…
blu commented on issue starred/AutoHotInterception-evilC-1#57 2026-02-07 13:51:34 +00:00
0x80004002 - No such interface supported

@Okaghana commented on GitHub (Apr 13, 2020):

That doesn't fix the error. I still get

0x80004002 - No such interface supported

Same for passing the keyboard as a function parameter

blu commented on issue starred/AutoHotInterception-evilC-1#57 2026-02-07 13:51:34 +00:00
0x80004002 - No such interface supported

@evilC commented on GitHub (Apr 14, 2020):

AHI.SendKeyEvent(keyboard, GetKeySC(%char%), 1) is also wrong Function calls (GetKeySC) are already in "expression syntax", so wrapping char in %…

blu commented on issue starred/AutoHotInterception-evilC-1#57 2026-02-07 13:51:34 +00:00
0x80004002 - No such interface supported

@Okaghana commented on GitHub (Apr 14, 2020):

Also doesn't fix it.