Kafka has asked for the wisdom of the Perl Monks concerning the following question:
# 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('<<Modified>>', sub { return if not $tmp_desc->editModified(); my $txt = $tmp_desc->get('1.0','end-1c'); print $txt; $tmp_desc->editModified('false'); return 1; });
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: <<Modified>> Virtual event in Text
by Anonymous Monk on Jan 11, 2016 at 10:52 UTC | |
by Anonymous Monk on Jan 11, 2016 at 10:59 UTC | |
by Kafka (Acolyte) on Jan 12, 2016 at 14:29 UTC |