A feature-rich, modular AOL Instant Messenger client written chiefly by Bill Atkins and Dan Chokola in their high school days.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
344 B

return 1 unless $^O =~ /win32/i;
package Win32X;
use Milkbone;
use Win32::API;
use strict;
use warnings;
my $FlashWindow = new Win32::API('user32', 'FlashWindow', 'NI', 'I');
register_hook("flash_window", sub {
my $wnd = $ARGS{-wnd};
$wnd->after(200, [sub { $_[0]->Call(hex($_[1]->frame()), 1) if $_[1]; }, $FlashWindow, $wnd]);
});
1;