Anti-nuisance lawsuit warning: The purpose of these notes is to remind me, Zoegond, of stuff or to help me work stuff out. They may contain mistakes.

Quick

  • ($a, $b....) = unpack("A2A7...", $packed)
  • push( array, list )

Sunday, February 12, 2012

Perl::Tk hide window with withdraw

If you withdraw your MainWindow and then raise it again, you must apparently also deiconify it (like the concept of 'withdraw' includes 'minimise'):

$in->{window}->withdraw();
...
$in->{window}->deiconify();
$in->{window}->raise();

You may also need to update() it after the raise to get included widgets to show.

Followers

Blog Archive