Re: Tkinter Label alignment problem using OS 10.6

2010-07-31 Thread AJ
On Jul 31, 8:04 am, r wrote: > On Jul 31, 2:55 am, Peter Otten <__pete...@web.de> wrote: > > > PS: Rantingrick is right; you should use one of the other geometry managers > > Incidentally I was actually writing a version of the OP's script using > the grid manager when i found his nasty response.

Re: Tkinter Label alignment problem using OS 10.6

2010-07-31 Thread AJ
On Jul 31, 12:55 am, Peter Otten <__pete...@web.de> wrote: > AJ wrote: > > I have written a sample program that ran correctly with earlier than > > Mac OS 10.6. The answer field Label does not align correctly. I > > downloaded the latest Python 2.7 release but still did not solve the > > problem.  

Re: Tkinter Label alignment problem using OS 10.6

2010-07-31 Thread r
On Jul 31, 2:55 am, Peter Otten <__pete...@web.de> wrote: > PS: Rantingrick is right; you should use one of the other geometry managers Incidentally I was actually writing a version of the OP's script using the grid manager when i found his nasty response. So I think i'll just keep it for me self

Re: Tkinter Label alignment problem using OS 10.6

2010-07-31 Thread Peter Otten
AJ wrote: > I have written a sample program that ran correctly with earlier than > Mac OS 10.6. The answer field Label does not align correctly. I > downloaded the latest Python 2.7 release but still did not solve the > problem. Look for line "L4.place(relx=0.32,rely=0.56, anchor=W)" The underly

Re: Tkinter Label alignment problem using OS 10.6

2010-07-31 Thread Mark Young
That seems a bit harsh. Place, in general, isn't as useful as pack and grid. Yelling at him for suggesting you use them is unnecessary. When I looked at when your script generates, I don't see why you couldn't just use grid. I can fairly easily see a grid layout. But, I guess it's supposed to be a

Re: Tkinter Label alignment problem using OS 10.6

2010-07-30 Thread AJ
On Jul 30, 5:07 pm, rantingrick wrote: > On Jul 30, 6:52 pm, AJ wrote: > > > Dear users, > > > I have written a sample program that ran correctly with earlier than > > Mac OS 10.6. The answer field Label does not align correctly. I > > downloaded the latest Python 2.7 release but still did not so

Re: Tkinter Label alignment problem using OS 10.6

2010-07-30 Thread rantingrick
On Jul 30, 6:52 pm, AJ wrote: > Dear users, > > I have written a sample program that ran correctly with earlier than > Mac OS 10.6. The answer field Label does not align correctly. I > downloaded the latest Python 2.7 release but still did not solve the > problem.  Look for line "L4.place(relx=0.3

Tkinter Label alignment problem using OS 10.6

2010-07-30 Thread AJ
Dear users, I have written a sample program that ran correctly with earlier than Mac OS 10.6. The answer field Label does not align correctly. I downloaded the latest Python 2.7 release but still did not solve the problem. Look for line "L4.place(relx=0.32,rely=0.56, anchor=W)" #!/usr/bin/env py