http://www.perlmonks.org?node_id=1000444


in reply to tk positioning of widgets

G'day gibsonca,

The documentation for individual widgets (e.g. Tk::Entry) lists Standard Options (see Tk::options for details) and Widget-Specific Options. Depending on the desired layout of your GUI, choose appropriate options such as -anchor, -justify and -orient.

Geometry managers (e.g. Tk::pack which you are using in your code) also have options which affect layout.

-- Ken