Notice: This forum has been recovered from an old backup, so some content, links, and dates may be outdated. The forum is currently read-only while we restore sign-in and registration functionality. Details
If you find this forum valuable and would like to help keep it online, donations to help cover hosting and domain costs are greatly appreciated, but never expected. You can support the forum through Buy Me a Coffee or Ko-fi. Thank you for helping preserve the EventGhost community.
If you find this forum valuable and would like to help keep it online, donations to help cover hosting and domain costs are greatly appreciated, but never expected. You can support the forum through Buy Me a Coffee or Ko-fi. Thank you for helping preserve the EventGhost community.
[No Longer Available] Keyboard+
Re: Keyboard+
Just want to mention that EG freezing when interface is open is still happening.
Re: Keyboard+
When using Win key combinations, if you released Win before the other key, the start menu would popup. Fixed in the latest version.
Does anyone have any thoughts as to how the freezing might be addressed? I've been testing theories as they come to mind, but no luck as of yet.
Does anyone have any thoughts as to how the freezing might be addressed? I've been testing theories as they come to mind, but no luck as of yet.
/bw
Re: Keyboard+
I have recently started to notice weird issue: Whenever combination containing LWin key is captured via this plugin (for example LWin+Num0 triggers this bug reliably), shift key will become stuck (for example any click I perform after that combination it would be have as if I would shift + click it). Pressing actual shift key un-stucks the key.
This does not happen with RWin interestingly, does not happen if combination is capture (not added to any macro) and does not happen if Keyboard+ plugin is disabled.
Any idea what could be causing this?
This does not happen with RWin interestingly, does not happen if combination is capture (not added to any macro) and does not happen if Keyboard+ plugin is disabled.
Any idea what could be causing this?
Re: Keyboard+
The stock Keyboard plugin is notorious for this, but I've never ever seen it with Keyboard+, and even with LWin+Num0 (which is one of the combos I most frequently use), I'm not able to reproduce. Is it possible your macro or the program you're launching is the culprit? Try moving the event to a different macro. If that doesn't help, unless you can come up with a set of reproduction instructions that work for me, I fear there's little else I can say.
/bw
Re: Keyboard+
Yes I moved it to different macro and it was still happening.
It is likely something wrong with my setup, so I have decided to delete everything and start fresh. And now I'm stuck on this error. Any idea?
It is likely something wrong with my setup, so I have decided to delete everything and start fresh. And now I'm stuck on this error. Any idea?
-
krambriw
- Plugin Developer
- Posts: 2570
- Joined: Sat Jun 30, 2007 2:51 pm
- Location: Stockholm, Sweden
- Contact:
Re: Keyboard+
So if you read each line and think about it, where would you guess it goes wrong!??
My released plugins
https://drive.google.com/drive/folders/ ... y01eVBKeHM
https://drive.google.com/drive/folders/ ... y01eVBKeHM
Re: Keyboard+
Well it is obviously a DLL or some other component missing. But I don't remember ever installing any additional component when installing this plugin, just grabbing source from github, replacing old Keyboard plugin and it worked.
Re: Keyboard+
The repo currently contains the Python 2.7 version of pyHook, which won't work in the stable version of EventGhost. Try the previous commit.
/bw
Re: Keyboard+
That is interesting. Will EG eventually run on Python 2.7?
Regarding my previous issue, reinstalling did not seem to help. Even creating empty macro and adding LWin related event is enough to trigger this bug. I guess I will try a bit and report back if I can figure out what exactly could be related to it.
Regarding my previous issue, reinstalling did not seem to help. Even creating empty macro and adding LWin related event is enough to trigger this bug. I guess I will try a bit and report back if I can figure out what exactly could be related to it.
Re: Keyboard+
Yes same thing happens with stock Keyboard plugin.
Re: Keyboard+
I found a workaround that works for me. It is not pretty, but it gets the job done.
Instead of using EventGhost, I detect keys using AutoHotKey and then just forward the buttons to the EventGhost using this simple script:
Events are then forwarded to the same exact macro as before.
Instead of using EventGhost, I detect keys using AutoHotKey and then just forward the buttons to the EventGhost using this simple script:
Code: Select all
<#Numpad0:: Run, C:\Program Files (x86)\EventGhost\EventGhost.exe -event WinPlusNum0Re: Keyboard+
Wow you saved me Matejdro, thanks a lot for the script. I've been trying to get this useless Keyboard plugin to work in conjunction with AHK but was impossible. Your event sending script works like a charm for sending whatever it is to EG and then using those events for my Hue plugin.matejdro wrote:I found a workaround that works for me. It is not pretty, but it gets the job done.
Instead of using EventGhost, I detect keys using AutoHotKey and then just forward the buttons to the EventGhost using this simple script:Events are then forwarded to the same exact macro as before.Code: Select all
<#Numpad0:: Run, C:\Program Files (x86)\EventGhost\EventGhost.exe -event WinPlusNum0