In article <[EMAIL PROTECTED]>,
Dean Allen Provins <[EMAIL PROTECTED]> wrote:
>I need to determine the size of a canvas while the process is running.
>Does anyone know of a technique that will let me do that?
.
.
.
Does
>>> import Tkinter
>>> c = Tkinter.Canvas()
>>> c.create_oval(13, 51, 80, 130)
1
>>> c.pack()
>>> print c.cget("width")
284
help?
There are actually several different notions of the size of a
canvas. The example abovve should be a good starting point,
though.
There's also a mailing list specifically for Tkinter <URL:
http://tkinter.unpythonic.net/wiki/mailing_20lists >; that
might interest you.
--
http://mail.python.org/mailman/listinfo/python-list