in reply to Setting fonts in Tk Menu's

I forgot to mention the nice Tk module called Tk::FontDialog. It allows you to recursively go thru widgets and change fonts. It is used something like this:
use Tk::FontDialog; my $fd = $mw->FontDialog( -nicefont => 0, -title => 'Select Font', -applycmd => \&apply_font, -fixedfontsbutton => 1, -nicefontsbutton => 1, ); sub apply_font { my $font = shift; if ( defined $font ) { $rotext->configure( -font => $font ); $mw->RefontTree( -font => $font ); $top->RefontTree( -font => $font ); } }

I'm not really a human, but I play one on earth. flash japh