http://www.perlmonks.org?node_id=997319


in reply to Re: TK: How to change color of readonly BrowseEntry
in thread SOLVED - TK: How to change color of readonly BrowseEntry

I'll give it a shot. Thanks!

Replies are listed 'Best First'.
Re^3: TK: How to change color of readonly BrowseEntry
by mrider (Beadle) on Oct 04, 2012 at 20:35 UTC

    Actually, I got a clue how to do this reading the source code for JBrowseEntry:

    my $dd = $mw->BrowseEntry( -label => 'Chooser', -variable => \$dd_value, -state => 'readonly' -disabledforeground => '#000000', -disabledbackground => '#FFFFFF', )->pack();
      Hmm, if that was it, for future development try the diagnostical Tk::ObjScanner and Tk::WidgetDump
      perl -MTk -MTk::ObjScanner -MTk::WidgetDump -e " $mw = tkinit; $p = +$mw->Scrolled(qw/ Text / )->pack; $mw->WidgetDump; Tk::ObjScanner::sc +an_object( $p ); MainLoop; "