Re: [Tkinter-discuss] Problems with hotkeys
Hi, Thus spoketh craf unto us on Fri, 07 Jan 2011 20:18:05 -0300: (...) > > There is a way of pressing a key combination without the focus this on > the button that has focus at that time? Binding the callback to the widget's toplevel window (so in your case the Tk() instance) instead of the
[Tkinter-discuss] Problems with hotkeys
Hi. I'm trying to use the hotkeys access to controls. My code is as follows: - import Tkinter class App: def __init__(self, master): self.root = master self.entry = Tkinter.Entry(self.root) self.ent