Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Tk Scrolled

by michaelg (Beadle)
on Sep 30, 2003 at 14:59 UTC ( [id://295307]=perlquestion: print w/replies, xml ) Need Help??

michaelg has asked for the wisdom of the Perl Monks concerning the following question:

Hi all ,
I'm using Tk's Scrolled in the next way:
my $text = $nw->Scrolled('Text',
..
..)->pack(...)
The problem is the text window does not role down
automatically for every text I send .
I made a little research and found the "jump=>" option
should do the trick , but it didn't work ( I think it is a known bug) .
maybe one of U monks have a solution.
Michael

Replies are listed 'Best First'.
Re: Tk Scrolled
by zentara (Archbishop) on Sep 30, 2003 at 16:41 UTC
    Try this snippet:
    #!/usr/bin/perl use Tk; use strict; my $mw=tkinit; my $textarea = $mw->Scrolled("Text",-scrollbars => 'ose')->pack; $mw->after(1000,\&filltext); MainLoop; sub filltext { for (1..100){ $textarea->insert('end', "$_\n"); $textarea->see('end'); $textarea->idletasks; $mw->after(50); #this is just to slow things down } }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (5)
As of 2024-04-20 00:05 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found