in reply to Perl/TK Main Window Destroy

You can set an alarm, and then trap that alarm to exit the application. Something like
$SIG{ALRM} = sub { exit 0 }; # trap an alarm and assign a sub to exit alarm 60; # trigger an alarm after 60 seconds MainLoop;
should do the trick.

Hope that helps.

-- Foxcub
#include www.liquidfusion.org.uk