Tkinter- Building a message box

2005-11-07 Thread Tuvas
I've been trying to build a fairly simple message box in tkinter, that when a button is pushed, will pop up a box, that has a line of text, an entry widget, and a button, that when the button is pushed, will return the value in the line of text. However, while I can read the value of the button, I

Re: Tkinter- Building a message box

2005-11-07 Thread Ron Adam
Tuvas wrote: I've been trying to build a fairly simple message box in tkinter, that when a button is pushed, will pop up a box, that has a line of text, an entry widget, and a button, that when the button is pushed, will return the value in the line of text. However, while I can read the

Re: Tkinter- Building a message box

2005-11-07 Thread Tuvas
Do you have any info on dialogs? I've been trying to find some, without alot of success... -- http://mail.python.org/mailman/listinfo/python-list

Re: Tkinter- Building a message box

2005-11-07 Thread jmdeschamps
Maybe this can help: http://effbot.org/zone/tkinter-dialog-windows.htm Good luck! -- http://mail.python.org/mailman/listinfo/python-list

Re: Tkinter- Building a message box

2005-11-07 Thread Tuvas
Thanks alot, that helped TONS! Just had to modify it slightly, but, well, it works great now. Thanks! -- http://mail.python.org/mailman/listinfo/python-list

Re: Tkinter- Building a message box

2005-11-07 Thread Ron Adam
Tuvas wrote: Do you have any info on dialogs? I've been trying to find some, without alot of success... Be sure and look at the examples in python24/lib/lib-tk. The Dialog.py file there does pretty much what you want. In the dialog caller example I gave, it should have been ... def