Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re^2: Tk::Text insert buffer!

by Alle (Novice)
on Sep 26, 2012 at 14:37 UTC ( [id://995786]=note: print w/replies, xml ) Need Help??


in reply to Re: Tk::Text insert buffer!
in thread Tk::Text insert buffer!

Thank you. I catch your mind, this is just a demo. I need display info on text widget immediately after insert method,no buffer,not wait 3 seconds and then display whole info. Can I?

Replies are listed 'Best First'.
Re^3: Tk::Text insert buffer!
by zentara (Archbishop) on Sep 26, 2012 at 15:23 UTC
    I need display info on text widget immediately after insert method,no buffer,not wait 3 seconds and then display whole info. Can I?

    Hi, sure you can. Using your example without the sleep statement:

    #!/usr/bin/perl -w use strict; use Tk; $| = 1; my $mw = MainWindow->new; my $text = $mw->Text->pack; my $bt = $mw->Button(-text => 'insert', -command => sub {&test_insert})->pack; MainLoop; sub test_insert{ for (1..3){ $text->insert('end', "$_\n"); } }
    or you may not be showing the real code you need to use. If you are trying to display something from some other source, and the Text widget isn't displaying it right away, you can try putting a "$mw->update" or a "$text->update" right after your insert statement. This timer may be what you are looking for, otherwise explain in greater detail what you are actually trying to display.
    #!/usr/bin/perl -w use strict; use Tk; $| = 1; my $mw = MainWindow->new; my $text = $mw->Text->pack; my $repeater = $mw->repeat(1000, \&test_insert); MainLoop; sub test_insert{ $text->insert('end', time."\n"); }

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

      Thank you very , the update method is my need,

      add code '$text->update' after '$text->insert(...)', It works perfect, thanks again!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://995786]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (6)
As of 2024-03-19 09:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found