Re: simple GUI question

2004-12-08 Thread Eric Brunel
Roose wrote: [snip] Another thing I would *like* but is not strictly necessary would be to change the font size and color of the text within the box. Is there a good way of doing that? I have googled around but can't find any decent example code for some reason. Short answer: you can't. The tkMes

Re: simple GUI question

2004-12-08 Thread Brian van den Broek
Brian van den Broek said unto the world upon 2004-12-08 03:16: Hi, I don't know Tkinter past a hour of playing, so I cannot show you how. I can, however, show you a good place to start looking: Best, Bria

Re: simple GUI question

2004-12-08 Thread Brian van den Broek
Roose said unto the world upon 2004-12-08 02:23: You want somthing like: root = Tkinter.Tk() root.withdraw() msg = tkMessageBox.showwarning("Ooops", "Some warning") Awesome thanks! Any chance you know about the font thing : ) Nah I'll stop being lazy and hack it... but for some reason Tkinter doe

Re: simple GUI question

2004-12-07 Thread Roose
> You want somthing like: > > root = Tkinter.Tk() > root.withdraw() > msg = tkMessageBox.showwarning("Ooops", "Some warning") Awesome thanks! Any chance you know about the font thing : ) Nah I'll stop being lazy and hack it... but for some reason Tkinter doesn't jive with the way I think at all.

Re: simple GUI question

2004-12-07 Thread vincent wehren
Roose wrote: I have been writing only command line programs in python, and I need a way to simply pop up a GUI dialog box, with an "OK" box. Simple huh? I have used tkMessageBox.showwarning. This works OK but it also pops up an empty frame -- i.e. it pops up 2 things. Is there a way to disable t

simple GUI question

2004-12-07 Thread Roose
I have been writing only command line programs in python, and I need a way to simply pop up a GUI dialog box, with an "OK" box. Simple huh? I have used tkMessageBox.showwarning. This works OK but it also pops up an empty frame -- i.e. it pops up 2 things. Is there a way to disable this, or is t