in reply to Re: Tk configuration
in thread Tk configuration

This node falls below the community's threshold of quality. You may see it by logging in.

Replies are listed 'Best First'.
Re^3: Tk configuration
by vkon (Curate) on Apr 07, 2011 at 10:27 UTC
    here it is
    use Tk; my $t = tkinit->Scrolled('Text')->pack(); $t->tagConfigure('red',-foreground=>'red'); $t->insert('end', "foo, bar, ",'', "fluffy", 'red'); MainLoop;