in reply to Re^12: Perl tk - How to integrate external scripts
in thread Perl tk - How to integrate external scripts

Tk::TextUndo inherits the methods from the Tk::Text widget, so you can use ->insert() to add text to the widget:

... $te2->insert('end', "Mean length:\t" . $stat->mean() . "\n"); +# append line ... ... # $te2->see('end'); # optionally scroll to the end

Replies are listed 'Best First'.
Re^14: Perl tk - How to integrate external scripts
by Giorgio C (Novice) on Feb 01, 2012 at 15:14 UTC
    Eliya you're great !!! At this rate I'll mention you in the acknowledgments of my PhD thesis :) Thanks a lot