in reply to Perl/TK: How to set the width and height of the main window?
#!/usr/bin/perl use strict; use warnings; use Tk; my $mw = MainWindow->new(); my $c = $mw->Canvas(-width => 600, -height => 600); $c->pack; MainLoop; [download]
I hope this helps.