Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Perl/TK Main Window Destroy

by converter (Priest)
on Jul 17, 2003 at 13:56 UTC ( [id://275216]=note: print w/replies, xml ) Need Help??


in reply to Perl/TK Main Window Destroy

Tk is an event-driven GUI toolkit, and provides numerous ways to hook into the event loop. You might want to use the after method (documented in the Tk::after man page). Example:

#!/usr/bin/perl use Tk; $timeout = 8000; $m = tkinit; # prevent pack() sizing the Toplevel down so # that we can still reach the controls $m->packPropagate(0); $m->Label( -text =>'hi', )->pack; $m->Button( -text=>'Ok', -command => sub { $m->destroy; }, )->pack; # invoke a callback after $timeout msecs $after = $m->after( $timeout, [$m, 'destroy'], ); MainLoop;

conv

Log In?
Username:
Password:

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

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

    No recent polls found