in reply to Perl TK changing the logo
#!/usr/bin/perl use Tk; my $mw = tkinit; my $image = 'z-icon.gif'; # 32x32 GIF or BMP my $icon = $mw->Photo(-file => $image); $mw->idletasks; # this line is crucial $mw->iconimage($icon); MainLoop;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Perl TK changing the logo
by Anonymous Monk on Oct 26, 2010 at 07:24 UTC | |
by zentara (Cardinal) on Oct 26, 2010 at 11:19 UTC |