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


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

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();

Replies are listed 'Best First'.
Re^4: TK: How to change color of readonly BrowseEntry
by Anonymous Monk on Oct 04, 2012 at 20:47 UTC
    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; "