Re: [Tutor] Question about GUI applications.

2011-11-08 Thread Steve Willoughby
On 08-Nov-11 16:38, Alan Gauld wrote: I note it says this sets the bitmap for the "iconified widget". That to me means the icon on the desktop, or in the Taskbar. Can you confirm that it also sets the icon at top left in the title bar? Yes, it changes the top left of the application window. To

Re: [Tutor] Question about GUI applications.

2011-11-08 Thread Alan Gauld
On 08/11/11 15:56, Steve Willoughby wrote: I have an app I'm developing and running successfully on Windows (as well as OSX and Linux). At least in this case it is able to replace the application icon in place of the default "TK" one. The code I use is: root = Tkinter.Tk() root.iconbitmap(defau

Re: [Tutor] Question about GUI applications.

2011-11-08 Thread Alan Gauld
On 08/11/11 15:56, Steve Willoughby wrote: I can't recall what it is, but its similar to the one used for setting the title text on the Window, one of the wm_x calls. I have an app I'm developing and running successfully on Windows ... root = Tkinter.Tk() root.iconbitmap(default=ico_image

Re: [Tutor] Question about GUI applications.

2011-11-08 Thread Steve Willoughby
On 08-Nov-11 00:39, Alan Gauld wrote: On 08/11/11 04:30, Nathaniel Trujillo wrote: I just wrote the following GUI application. How do I get rid of the 7k in the upper left hand corner and how to I put other stuff there like say a picture of someone. Thanks for the help. If you are using Window

Re: [Tutor] Question about GUI applications.

2011-11-08 Thread Alan Gauld
On 08/11/11 04:30, Nathaniel Trujillo wrote: I just wrote the following GUI application. How do I get rid of the 7k in the upper left hand corner and how to I put other stuff there like say a picture of someone. Thanks for the help. If you are using Windows I don't think you can, due to a bug i

[Tutor] Question about GUI applications.

2011-11-07 Thread Nathaniel Trujillo
I just wrote the following GUI application. How do I get rid of the 7k in the upper left hand corner and how to I put other stuff there like say a picture of someone. Thanks for the help. Here is the GUI application. It is called mad_lib.py.py # Mad Lib # Create a story based on user input from t