# Description entry my $tmp_frame = $frame->Frame()->grid(-column=>3,-row=>0,-sticky=>'w'); my $tmp_desc = $tmp_frame->Scrolled('Text', -scrollbars=>'oe', -wrap=>'word', -height=>3, -width=>40, -borderwidth =>2, -background=>'white')->grid(); $tmp_desc->bind('<>', sub { return if not $tmp_desc->editModified(); my $txt = $tmp_desc->get('1.0','end-1c'); print $txt; $tmp_desc->editModified('false'); return 1; });