Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: Re: Re: Re: Perl::Tk - Event sequencing question

by crabbdean (Pilgrim)
on May 01, 2004 at 04:41 UTC ( [id://349572]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $tx = $mw->Scrolled("Text", -width => 80,
                    -height => 25,
    ...
    open(CHILD, "ls -laR |") or die "Can't open: $!";
    CHILD->autoflush(1);
    $mw->fileevent('CHILD', 'readable', [\&output, \*CHILD, $mw, $tx]);
    
  2. or download this
    sub output {
        my ($handle, $widget, $tx) = @_;
    ...
        }
        $widget->idletasks;
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (6)
As of 2024-04-18 07:16 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found