Re: Tkinter popup menu

2008-09-02 Thread Chuckk Hubbard
On Thu, Aug 28, 2008 at 3:50 AM, Carl [EMAIL PROTECTED] wrote: Chuckk Hubbard [EMAIL PROTECTED] writes: Right-click popup menu. None of the options that come from the cascades can be selected with the mouse. If you select a submenu with the mouse and then use the arrow keys and enter key to

Tkinter popup menu

2008-08-27 Thread Chuckk Hubbard
Right-click popup menu. None of the options that come from the cascades can be selected with the mouse. If you select a submenu with the mouse and then use the arrow keys and enter key to select an option, it works, but the menu remains on the canvas. If you click the option with the mouse, the

Re: Tkinter popup menu

2008-08-27 Thread Carl
Chuckk Hubbard [EMAIL PROTECTED] writes: Right-click popup menu. None of the options that come from the cascades can be selected with the mouse. If you select a submenu with the mouse and then use the arrow keys and enter key to select an option, it works, but the menu remains on the

tkinter popup

2007-03-27 Thread Gigs_
Hi all I cant figure out how to disable resizing of my popup window? How to put this popup window to show in the middle of my text editor? It is writen with Toplevel. thx -- http://mail.python.org/mailman/listinfo/python-list

Re: tkinter popup

2007-03-27 Thread Eric Brunel
On Tue, 27 Mar 2007 12:05:07 +0200, Gigs_ [EMAIL PROTECTED] wrote: Hi all I cant figure out how to disable resizing of my popup window? myPopupWindow.wm_resizable(0, 0) It may or may not make resize controls disappear depending on your platform and/or window manager. But the resizing will

Re: tkinter popup

2007-03-27 Thread Gigs_
Eric Brunel wrote: On Tue, 27 Mar 2007 12:05:07 +0200, Gigs_ [EMAIL PROTECTED] wrote: Hi all I cant figure out how to disable resizing of my popup window? myPopupWindow.wm_resizable(0, 0) It may or may not make resize controls disappear depending on your platform and/or window