in reply to unbuffered Tk text widget?

For your example script, all you need to do is update the $mw after each write.
sub displayText { my ($text,$output) = @_; $text->insert('end',$output); $text->see('end'); $mw->update; }

I'm not really a human, but I play one on earth. flash japh

Replies are listed 'Best First'.
Re^2: unbuffered Tk text widget?
by critter (Acolyte) on Oct 10, 2005 at 09:35 UTC
    I knew it was something simple! Many thanks Zentara!

    Cheers,

    Critter: A domestic animal or a non-predatory wild animal.