tkinter 3.0 multiple keyboard events together

janislaw wicijowski at gmail.com
Fri Dec 26 05:09:04 EST 2008


On 26 Gru, 05:52, Pavel Kosina <g... at post.cz> wrote:
> Is it possible to catch in an event more that one key from keyboard? In
> my code, I can handle always the only one, the first I press, the others
> are omitted. Say, I press both "4" and "8" and only "4" is catched.
>
> def movePlayer(event):
>     print (event.keysym)
>
> Thank you.
>
> --
> geon
> Pavel Kosina

Each keypress triggers another event. Fortunately there are two types
of events: reaction to press and release. The logic to write to
recognize those as simultaneous clicks is up to you :)

JW



More information about the Python-list mailing list