in reply to Perl/Tk Oddities

1) Is there some way to turn off the little Tk logo that appears on the caption bar? I'm sure it is not a significant issue for an end user to see it, but why have it on a production application if one can avoid it?
This won't turn it off, but will replace the logo with one of your own, which might be blank to achieve the 'turned off' effect. In place of the -file attribute, one can use the -data attribute to use an xbm bitmap defined somewhere in your script.

Here's a snippit of non-standalone code as an example.

$mainwindow->Icon( -image => $mainwindow->Pixmap( -file => 'c:/perl/site/lib/tk/Dubya.xpm' ), );

Replies are listed 'Best First'.
Re^2: Perl/Tk Oddities
by TomKane (Beadle) on Apr 13, 2008 at 15:26 UTC
    Thanks. I was able to create a blank xpm file that blotted out the TK logo. Now I'll look into creating my own logo. I didn't catch on to the fact that the Icon() function worked on the upper left part of the caption bar, I thought it was oriented toward the task bar.