Tkinter bind single key

John Hunter jdhunter at nitace.bsd.uchicago.edu
Mon Nov 5 18:13:44 EST 2001


I am reading 'An Introduction to Tkinter' by Fredrik Lundh and my read
of Chapter 7 'Events and Bindings' is that this syntax

        self.__canvas.bind('+', self.zoomin)

should bind the '+' key to the member function zoomin (but it doesn't
work).  I know the function and everything else is ok, because when I
do

        self.__canvas.bind('<Button-1>', self.zoomin)

Everything works as expected (mouse-1 causes a zoom event).

Is there something I am missing about binding regular keys?

Thanks,
John Hunter 



More information about the Python-list mailing list