Title: Signature.html
Good ideas. I particularly like the one below about pyw. Never heard of it before. Very nice in this situation.

As for Tk/Tcl, I got the highly recommended book from some Python source via an interlibrary loan. My problem with it is that I really don't want to spend weeks learning Tk/Tcl.

##############
# testTk.py
from Tkinter import *

top = Tk()
w = Button(top, text="Button")
w.pack()
top.mainloop()
##############

Just play with the pack or grid options and observe the effect
If you have the file open in an editor and name the file as .pyw
you can then easily run the file from explorer and have multiple
versions displayed at the same time to compare results.


Perhaps there's a geometry tutor somewhere on the web.

Try the Tcl/Tk web sites they tend to be good for that kind of stuff.
Its easy to translate the Tk command to Tkinter.

HTH,



--
           Wayne Watson (Watson Adventures, Prop., Nevada City, CA)

             (121.01 Deg. W, 39.26 Deg. N) GMT-8 hr std. time)


                Life is one damn thing after another."
                     -- Mark Twain 
_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to