in reply to Re: Perl Tk : Displaying window in bottom right Corner
in thread Perl Tk : Displaying window in bottom right Corner

Use the following code
use strict; use warnings; use Tk; # Main Window my $mw = MainWindow->new; $mw->geometry('+793+475'); MainLoop;

Replies are listed 'Best First'.
Re^3: Perl Tk : Displaying window in bottom right Corner
by stefbv (Priest) on Apr 03, 2010 at 08:23 UTC

    On my screen, (1920x1080) your code will put a window almost on the center :)

    Update: I guess your screen resolution is 1024x768 (or 1024x800).

    Regards, Stefan