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


in reply to tie STDOUT in Tkx

Sure it is, maybe :)

fail  [cpan://tkx tie], [metacpan://tkx tie], [google://site:perlmonks.org tkx tie stdout] tkx tie, tkx tie, site:perlmonks.org tkx tie stdout

fail again ?node_id=3989;BIT=tie%20;HIT=Tkx...

use Tie::STDOUT print => sub { $textvariable .= join ''. @_; }
use Tie::STDERR print => sub { $textwidget->insert("end", join ''. @_ ); }

use constant STAPENDER => sub { $textwidget->insert_end( @_ ); };
use Tie::STDOUT print => STAPENDER;
use Tie::STDERR print => STAPENDER;

Replies are listed 'Best First'.
Re^2: tie STDOUT in Tkx
by ColonelPanic (Friar) on Dec 03, 2012 at 11:19 UTC
    The road to wisdom? -- Well, it's plain and simple to express: Err and err and err again but less and less and less.

    -- Piet Hein

    ;)



    When's the last time you used duct tape on a duct? --Larry Wall
      :) Yup, it should be use Tie::STDERR STAPENDER(); as the two modules aren't by the same author their interface isn't identical