David Pantoja wrote: > I have an application in tkinter, one button call to another window, > but the position of this window is random, i' whish to ask at the > list, if exist a function to put the window in x position of the > screen, if exist, which function is it?...
try
w.geometry("%+d%+d" % (xoffset, yoffset))
or
w.geometry("%dx%d%+d%+d" % (width, height, xoffset, yoffset))
also see:
http://smurl.name/w2s
</F>
--
http://mail.python.org/mailman/listinfo/python-list
