Purpose: to provide examples to the beginning [Tk] programmer of how the -sticky configuration parameter works on the various Tk [widget]s that support the flag. ---- For instance: frame .addr -background orange grid .addr -sticky we entry .addr.addr1 -width 30 grid .addr.addr1 -sticky we The original author's expectation was that the field would be left justified and would expand. - [RS] would rather expect it to be centered, but fill all available space. Use ''-justify left'' for left justification :) ---- [Category GUI]