in reply to Maximizing window in Perl/TK
First you minimize the window, then you set the new geometry, after that restore the window and then bring it to front.$main->withdraw(); $main->geometry($main->screenwidth."x".$main->screenheight."+0+0"); $main->deiconify(); $main->raise();
|
---|