Open GoogleCodeExporter opened 9 years ago
The long key timeout was, admittedly, a poorly thought out afterthought.
I need to have a way of grouping combinations visually [Ctrl+A] vs [Ctrl] [A].
Original comment by sc...@forusers.com
on 7 Jul 2013 at 3:19
I thought the timeout was a variable to indicate for how long to display the
information but I'm not sure. Is that its purpose?
I looked at the source code and noticed that it's possible to check if keys are
currently pressed or not. I think that's what's needed to make it work the way
I need.
Ideally, I would like to create a list of rules of what a combo is. Not just
SHIFT || ALT || CTRL, but something more precise. For example, I don't need to
show which keys I pressed when I selected text using CTRL+SHIFT+LEFT. I do a
lot of text selection, and displaying that is too much info. I don't know if
it's a lot of work, but I would like to set rules like: (CTRL || ALT) &&
(A-Z,ENTER,F1-F12).
I think this depends very much on the kind of software you are screencasting.
For something like Gimp, probably each key press is important. But for talking
about source code editing, you would like to skip most of the key presses.
If anyone gives me indications of which files should be edited I may try to do
this myself.
Original comment by ham...@gmail.com
on 8 Jul 2013 at 11:46
Sorry, my mistake, I was confusing with "old keys".
Looks like the code should be in key_mon.py all related to timeout_sec.
Not sure why there is some commented out code there, not something I normally
do.
Original comment by sc...@forusers.com
on 8 Jul 2013 at 8:40
Original issue reported on code.google.com by
ham...@gmail.com
on 7 Jul 2013 at 1:01