in reply to Missing TK Messagebox icons
I'm not familiar with messageBox, but many similar Tk widgets will take any Image as a valid parameter to -icon.
So, something like:
my $msg_icon = $MW->Photo( -file=>'msgicon.xpm' ); $MW->messageBox( -message => $message, -icon => $msg_icon, -type => 'okcancel', -title => $title );
Ought to work. See Tk::Photo, which is an Image widget.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Missing TK Messagebox icons
by zentara (Cardinal) on Nov 15, 2007 at 18:37 UTC |