in reply to Perl ScreenSaver

perl/Tk applications will work on Windows, and you can easily bind mouse and keyboard activity to exit the program.
use strict; use Tk; my $mw = new MainWindow(); ... $mw->bind("<Motion>",sub { $mw->destroy }); MainLoop;

Replies are listed 'Best First'.
Re: Re: Perl ScreenSaver
by beretboy (Chaplain) on Feb 25, 2003 at 23:21 UTC
    Thanks thats perfect!

    "Sanity is the playground of the unimaginative" -Unknown
      post code or email to zack@nasledov.com