Win32::Snarl - Perl extension for Snarl notifications |
Win32::Snarl - Perl extension for Snarl notifications
use Win32::Snarl; Win32::Snarl::ShowMessage('Perl', 'Perl is awesome, so is Snarl.'); my $msg_id = Win32::Snarl::ShowMessage('Time', 'The time is now ' . (scalar localtime)); while (Win32::Snarl::IsMessageVisible($msg_id)) { sleep 1; Win32::Snarl::UpdateMessage($msg_id, 'Time', 'The time is now ' . (scalar localtime)); }
Snarl <http://www.fullphat.net/> is a notification system inspired by Growl <http://growl.info/> for Macintosh that lets applications display nice alpha-blended messages on the screen.
Win32::Snarl
is the perl interface to Snarl because the people at fullphat
seem not to care about perl :'(.
Win32::GUI
For Windows API Calls
Snarl Documentation <http://www.fullphat.net/dev/>
Alan Berndt, <alan@eatabrick.org>
Copyright (C) 2007 by Alan Berndt
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.
Win32::Snarl - Perl extension for Snarl notifications |