Re: [Tutor] Resources for Tkinter...

2006-10-19 Thread Feise, David
I really got a lot out of Thinking in Tkinter: http://www.ferg.org/thinking_in_tkinter/ It doesn’t delve too deeply, but it’s still a good resource.    This New Mexico Tech website is a good reference once you’ve got some of the basics: http://infohost.nmt.edu/tcc/help/pubs/tkinter/  

Re: [Tutor] Getting the screen size....using Tkinter

2006-12-04 Thread Feise, David
Try this: >>> from Tkinter import * >>> root = Tk() >>> root.winfo_screenwidth() 1280 >>> root.winfo_screenheight() 1024 >>> -Dave From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Asrarahmed Kadri Sent: Monday, December 04, 2006 8:44 AM To: