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


in reply to Re: Perl TK Questions
in thread Perl TK Questions

I guess it depends on your screen. To centre the main window on my laptop

$mw->geometry('200x200+550+250');

works for me.

Replies are listed 'Best First'.
Re^3: Perl TK Questions
by Khariton (Sexton) on Dec 23, 2010 at 11:30 UTC
    If your window has 400x300 dimensions then
    $mw->geometry('400x300+'.int(($mw->screenwidth-400)/2).'+'.int(($mw->s +creenheight-300)/2));
    will help you.

    But I see in some systems geometry works strange.
    1. If I use KDE4.5.2 without 3d then all works fine.
    2. If I use Compiz on Kubuntu 10.10 then some time windows position is random. In old versions of Kubuntu all was fine. May be this is temporary.
    3. Some problems was on Windows with StrawberyPerl.