Is there a way in Tkinter to bind a combination of keys that will work in all keyboard layouts? (bind by scancode)
For example, I need \'Control-Z\' bin
\'Control-Z\'
def copy(event): print 'Ctrl-C' master.clipboard_append('text')
and it works!