A
Aahz
Anyone used Tkinter on 10.3 yet?
Anyone used Tkinter on 10.3 yet?
I have been using Tkinter on Mac OS X 10.3 and it works fine. I havev
not really stressed it however, just running IDLE, and some other
programs that use Tkinter GUI's. No heavy lifting, I'm afraid. Still,
come on in, the water feels fine ;-)))
[email protected] (Aahz) said:Anyone used Tkinter on 10.3 yet?
I'm sorry to hear about those problems, Russell. I am using Tkinter on
Aqua, and I guess now that I think about it, I've noticed a few
non-perfect looking dialogs or widgets, but they didnt really bother
me.
I'm still using the Ptyhon 2.3 that came installed on Panther, I
believe, and I hadn't hear about the diffiulties upgrading to a new
Python version; it almost makes me want to try it to find out what
troubels lurk. Maybe I will and report back...
Russell E. Owen said:Well, I'm not sure how serious the problem actually is. I may have
overstated it. Hoping to hear soon. ... ...
Summary: both aqua and X11 versions of Python are working well for me.
-- Russell
I have tried to get Tkinter working on my Mac (OS X 10.3). I installed
MacPython 2.3 and the TclTkAquaBI-8.4.2.0.dmg.
When I type:
import Tkinter
r = Tkinter.Tk()
I get a window all right, but clicking on the window causes the
following error:
SetFrontProcess failed,-606
I have tried to get Tkinter working on my Mac (OS X 10.3). I installed
MacPython 2.3 and the TclTkAquaBI-8.4.2.0.dmg.
When I type:
import Tkinter
r = Tkinter.Tk()
I get a window all right, but clicking on the window causes the
following error:
SetFrontProcess failed,-606
the window can't properly get focus.
I have tried to get Tkinter working on my Mac (OS X 10.3). I installed
MacPython 2.3 and the TclTkAquaBI-8.4.2.0.dmg.
When I type:
import Tkinter
r = Tkinter.Tk()
I get a window all right, but clicking on the window causes the
following error:
SetFrontProcess failed,-606
the window can't properly get focus.
Had same problem when I tried the example Tk application that comes
with nltk (Natural Language Toolkit).
Any ideas?
You are almost certainly typing python instead of pythonw at the
terminal prompt. This results in exactly the error described. (I'm not
sure why there are two commands instead of python doing whatever extra
magic pythonw does.)
I'd guess that pythonw imports more stuff; if you want to run a non-GUI
application (say in a cron job), that would be wasteful.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.