Greetings,

Is it possible to define a Perl/TK widget and then use the place method to
place that widget more than once.  I can't seem to figure out how to do this
if it is possible.  The following snippet of code only places the second
instance in the main window ($msw).  Any help would be appreciated.

...
$divider1_l = $msw->Label(
        -background                     => "green",
        -foreground                     => "black",
        -relief                         => "raised",
)->place(
        -relx                           => ".3",
        -rely                           => ".05",
        -relwidth                       => ".010",
        -relheight                      => ".95",
);

$divider1_l->place(
        -relx                           => "0",
        -rely                           => ".085",
        -relwidth                       => ".3",
        -relheight                      => ".01",
);
...


Best Regards,

Robert Zielfelder




.-.  --..


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to