Hi All, I am on Macosx Lion running Python 3.2.3 and Tkinter 8.5
The following code breaks on my machine, and given search on the web, has been breaking in different forms since 2005. #======== from tkinter import * def _onMouseWheel(event): print(event) root = Tk() root.bind('<MouseWheel>',_onMouseWheel) root.mainloop() #======= On my machine works under python 2.7.2. I thought this would be fixed by now. Does anyone know anything about it? Mick _______________________________________________ Tkinter-discuss mailing list Tkinter-discuss@python.org http://mail.python.org/mailman/listinfo/tkinter-discuss