Re: [Tkinter-discuss] Python 3.2 and binding Mousewheel on Mac

2012-04-20 Thread Michael O'Donnell
Hi Kevin, As I mentioned in my email, the code worked fine for me too under 2.7.3. This matches diagnoses of the problem in 2011. I just thought, a year later, the problem would be fixed. Mick On Fri, Apr 20, 2012 at 10:39 PM, Kevin Walzer wrote: > On 4/20/12 8:05 AM, Michael O'Donnell wrot

Re: [Tkinter-discuss] problem changing font settings for ttk themed widgets on Windows

2012-04-20 Thread willie.lawrence
Hello, In Windows the fonts are tuples, so you can try: ttk.Style().configure('TLabelframe.label', font=("Arial", 14, "bold")) tell if it works -- View this message in context: http://python.6.n6.nabble.com/problem-changing-font-settings-for-ttk-themed-widgets-on-Windows-tp4895707p4902700.html Se

[Tkinter-discuss] Serializing tkinter objects

2012-04-20 Thread willie.lawrence
Hello everybody, I'm a new user of this List. OBS: forgive my english (I'm a brazilian student) My question: I want save PhotoImage (Tkinter.PhotoImage or/and PIL.tkImage.PhotoImage) objects, but Tkinter classes cannot be serialized, so I thought in get all pixels and serialize this tuple, when in

Re: [Tkinter-discuss] Python 3.2 and binding Mousewheel on Mac

2012-04-20 Thread Lion Kimbro
Not the answer but a data point: Windows 7 Python 3.2.2 -- worked fine ___ Tkinter-discuss mailing list Tkinter-discuss@python.org http://mail.python.org/mailman/listinfo/tkinter-discuss

Re: [Tkinter-discuss] Tkinter GUI freezing

2012-04-20 Thread Wayne Werner
On Thu, 19 Apr 2012, Bharath Reddy A. wrote: Hi all,I have created a GUI using Tkinter.  I have a button "GO", which when clicked calls a function (mainFunc). That function takes around 60 seconds to execute and in the mean time outputs many numbers which have to be displayed in a list in the

Re: [Tkinter-discuss] Python 3.2 and binding Mousewheel on Mac

2012-04-20 Thread Kevin Walzer
On 4/20/12 8:05 AM, Michael O'Donnell wrote: 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. Using the similar code on 10.7.3 with Python 2.7.1, here's t

[Tkinter-discuss] Python 3.2 and binding Mousewheel on Mac

2012-04-20 Thread Michael O'Donnell
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('',_onMouse