in reply to Re^7: perltk autoresize following users resize
in thread perltk autoresize following users resize

Just so you get a clearer picture of how packing works, try this: Put your Exit button first in the packing in your buildBUI sub, and it will now be the last thing to be chopped off. Of course your frames gets squished instead.
sub buildGui { $goMainWindow = new MainWindow; #pack your Exit button first in the list my ($oExit) = $goMainWindow->Button(-text => 'Exit', -command => sub{exit}, )->pack( -padx => '5', -pady => '5', -side => 'bottom', ); ...... ....... .....

I'm not really a human, but I play one on earth Remember How Lucky You Are