Clive Galway

Results 307 comments of Clive Galway

So it gets to the [end of the AHI constructor](https://github.com/evilC/AutoHotInterception/blob/master/Lib/AutoHotInterception.ahk#L51) (ie completes `OkCheck()`) OK?

Where do you have the AHI files? You didn't put them in Program Files or some other protected folder did you? What happens if you run scripts as admin?

If it doesn't crash when you do it, I guess not, but TBH I would be kind of surprised if it worked. Certainly, once you add a ContextManager, just setting...

There's a specific command for turning AHI on and off - `SetState()`

If the monitor is not working (#60 ) then AHI is fundamentally not working, so this would be expected.

> I didn't type it wrong did I? Does the monitor app work for this device? If so, just use the "copy" button in the monitor app to get the...

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 be...

> @evilC Is it somehow possible to restart the interception driver so it resets the counter without having to do a restart? No > AHI seems to interfere with it...

Hi, many thanks for contributing, I have some thoughts though - It assumes AHK is not installed? Or at the very least will force an upgrade. Should we not assume...

``` #SingleInstance force #include Lib\AutoHotInterception.ahk AHI := new AutoHotInterception() id1 := AHI.GetKeyboardId(0x1C4F, 0x0002, 1) id2 := AHI.GetKeyboardId(0x258A, 0x001F, 1) AHI.SubscribeKey(id1, GetKeySC("z"), true, Func("Kb1Event")) AHI.SubscribeKey(id2, GetKeySC("z"), true, Func("Kb2Event")) return Kb1Event(state){ if...