in reply to Re^2: Can't get Dialog or messageBox to work from button
in thread Can't get Dialog or messageBox to work from button

Does anybody know where the documentation for Tk::Popup is at? Or know what I can do to get the dialog displayed onscreen in this case?

tk popup, http://search.cpan.org/grep?cpanid=SREZIC&release=Tk-804.033&string=popup&i=1&n=1&C=0, site:perlmonks.org tk dual monitor, tk monitor

Re: tk-dialog box and multi-monitor, Re: Tk multiple monitor problem, Re^3: Tk multiple monitor problem,

  • Comment on Re^3: Can't get Dialog or messageBox to work from button

Replies are listed 'Best First'.
Re^4: Can't get Dialog or messageBox to work from button
by SwaJime (Scribe) on Jan 14, 2016 at 14:45 UTC

    Thanks again :-)

    I was able to get this work after looking at http://search.cpan.org/dist/Tk/pod/Popup.pod with the following line changed:

    my (@popup_opts) = (-popover => $mw, -overanchor=>'c', -popanchor=>'c');

    It is working the way I want it to now. Thank you so much for your help. :)

    John