Hi! I'm trying to catch the triple zero (000) key from a numeric keyboard but, I found that it's the same id that the single zero. So, when I press the triple zero key once, I receive three events from the single zero key. I need to make a disctintion between these keys, and use them to different functionalities. How can I do? Martín.
On Wed, 26 Aug 2009 01:17:50 am Martin Zugnoni wrote:
Hi! I'm trying to catch the triple zero (000) key from a numeric keyboard...
This list is for the development *of* the Python language, not development *with* Python. You should probably try the comp.lang.python newsgroup, also available as a mailing list: http://www.python.org/mailman/listinfo/python-list Good luck. -- Steven D'Aprano
Martin Zugnoni wrote:
when I press the triple zero key once, I receive three events from the single zero key. I need to make a disctintion between these keys
Sounds like you can't, except perhaps by detecting three '0' key events arriving at almost the same time. -- Greg
participants (3)
-
Greg Ewing
-
Martin Zugnoni
-
Steven D'Aprano