in reply to tK Scrolled Questions?

Disable the widget with:

$detailLog->configure( -state => 'disabled' );

Update: If disabled, have to enable it first before you can write in it:

$detailLog->configure( -state => 'normal' ); $detailLog->insert( '1.0', 'some text' ); $detailLog->configure( -state => 'disabled' );

Stefan

Replies are listed 'Best First'.
Re^2: tK Scrolled Questions?
by kgnickl (Novice) on Feb 25, 2011 at 22:12 UTC
    Worked perfectly! Thanks!