Re: Tkinter pack difficulty

2007-09-17 Thread Simon Forman
Thanks everyone for the incredibly helpful replies! I got the effect I wanted, no problem. I don't know why I didn't think to remove the expand option. I thought the sticky option would constrain the expansion. Thanks again, ~Simon -- http://mail.python.org/mailman/listinfo/python-list

Tkinter pack difficulty

2007-09-12 Thread Simon Forman
Hi all, I realize this is more of a Tk question than a python one, but since I'm using python and don't know Tcl/Tk I figured I'd ask here first before bugging the Tcl folks. I am having a terrible time trying to get a pack() layout working. I have three frames stacked top to bottom and

Re: Tkinter pack difficulty

2007-09-12 Thread jim-on-linux
On Wednesday 12 September 2007 13:22, Simon Forman wrote: Hi all, I realize this is more of a Tk question than a python one, but since I'm using python and don't know Tcl/Tk I figured I'd ask here first before bugging the Tcl folks. I am having a terrible time trying to get a pack() layout

Re: Tkinter pack difficulty

2007-09-12 Thread Tony
On Sep 12, 6:22 pm, Simon Forman [EMAIL PROTECTED] wrote: Hi all, Snip Any thoughts or advice? Thanks in advance, ~Simon This seems to do what you want, the difference is that the expand option is left out top and bottom, also I increased height and put in a width value as well: from

Re: Tkinter pack difficulty

2007-09-12 Thread Russell E. Owen
In article [EMAIL PROTECTED], Simon Forman [EMAIL PROTECTED] wrote: Hi all, I realize this is more of a Tk question than a python one, but since I'm using python and don't know Tcl/Tk I figured I'd ask here first before bugging the Tcl folks. I am having a terrible time trying to get a