in reply to Justify text Tcl::Tk

Use sticky option of grid to justify the label

Replies are listed 'Best First'.
Re^2: Justify text Tcl::Tk grid
by Anonymous Monk on Mar 10, 2016 at 07:14 UTC

    I did a few google searches and didn't find much other than this:

    my $welcome_label_bottom = $frame_border_bottom->Label( -text => "Progress Update: \n" )->pac +k(-side=>'right', -anchor=>'n');

    but it doesn't seem to work

    what would the sticky option of grid code look like? - thanks!</p?

      "what would the sticky option of grid code look like?"

      See the Tk::grid documentation.

      See the "Tk distribution page" for links to the documentation for all the core Tk::* modules.

      — Ken