http://qs321.pair.com?node_id=488745


in reply to Monitor dimensions

use strict; use warnings; use Tk; my $main = MainWindow->new(); my ($width, $height) = ($main->screenwidth(), $main->screenheight()); print "Width: $width\nHeight: $height";

Replies are listed 'Best First'.
Re^2: Monitor dimensions
by biochris (Beadle) on Sep 02, 2005 at 19:34 UTC
    Thank you so much. You have given me my hope back for Perl/Tk.