Re: overrideredirect vs. text entry etc. widget

2009-09-16 Thread kernus
I did, no luck. but I will keep trying..., :P I will let you know if some trick works. Sean DiZazzo wrote: On Sep 15, 10:20 pm, kernus ker...@gmail.com wrote: On Sep 15, 11:42 am, Sean DiZazzo half.ital...@gmail.com wrote: Whats interesting is that if you call overrideredirect from

Re: overrideredirect vs. text entry etc. widget

2009-09-15 Thread Sean DiZazzo
On Sep 14, 10:43 pm, kernus ker...@gmail.com wrote: I just googled this post: http://mail.python.org/pipermail/python-list/2006-September/575832.html something like: from Tkinter import * root = Tk() Entry(root).pack() Button(root, text='Quit', command=sys.exit).pack()

Re: overrideredirect vs. text entry etc. widget

2009-09-15 Thread kernus
On Sep 15, 11:42 am, Sean DiZazzo half.ital...@gmail.com wrote: Whats interesting is that if you call overrideredirect from a button command, it works as expected.  Well, at least the text entry field ^so, Sean, you know how to *click this magic button in the programming way*?

overrideredirect vs. text entry etc. widget

2009-09-14 Thread kernus
I just googled this post: http://mail.python.org/pipermail/python-list/2006-September/575832.html something like: from Tkinter import * root = Tk() Entry(root).pack() Button(root, text='Quit', command=sys.exit).pack() root.overrideredirect(1) root.mainloop() the button works boths under