Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

ozboomer's scratchpad

by ozboomer (Friar)
on Feb 16, 2006 at 00:16 UTC ( [id://530567]=scratchpad: print w/replies, xml ) Need Help??

My weekly QuickQuestion(tm)... I'm going gaga on a simple Perl/Tk operation ( see my scratchpad ) When -width is specified, why is the text label contents always centred? - justify is documented to only work with multi-line contents. How can the contents of a fixed-width text label be left-justified?
use strict; use Tk; my $mw = MainWindow->new; my $lbl = $mw->Label( # File -text => '(start)', # -width => 12, -background => 'bisque', # -justify => 'left', -relief => 'groove', )->pack; my $btn = $mw->Button( -text => "Go!", -command => \&test, )->pack; MainLoop; sub test { $lbl->configure(-text => 'A'); }
this node xml test Aug 19, 2009 at 01:35 UTC
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (3)
As of 2024-04-16 04:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found