Finding scripts to work with Growl or Snarl is not the easiest thing in the world. I re-wrote a simple script to show most of the variables of msn messenger for use with Growl.
Two ways to install
1: Complete Growl Script Here
2: Or do the following.
Get Growl Notify here: http://www.growlforwindows.com/gfw/help/growlnotify.aspx and you’ll also need an icon, i took a generic msn icon and just placed it in the windows folder. Using Msn plus just add a new script and paste this code in and it should basically work.
var shell = new ActiveXObject("wscript.shell");
var Growlexe = ‘"’ + MsgPlus.ScriptFilesPath + ‘\\growlnotify.exe"’;
var GrowlIcon = ‘"’ + MsgPlus.ScriptFilesPath + ‘\\icon.png"’;function OnEvent_ContactSignin(Email){
var cmd = Growlexe + Email + ‘" signed in " /t:"Windows Live Messenger" /i:’+GrowlIcon+”;
shell.Run(cmd);
}function OnEvent_ContactSignout(Email){
var cmd = Growlexe + Email + ‘" signed out " /t:"Windows Live Messenger" /i:’+GrowlIcon+”;
shell.Run(cmd);
}function OnEvent_ContactBlocked(Email){
var cmd = Growlexe + Email + ‘" has been blocked " /t:"Windows Live Messenger" /i:’+GrowlIcon+”;
shell.Run(cmd);
}function OnEvent_ContactUnblocked(Email){
var cmd = Growlexe + Email + ‘" has been unblocked " /t:"Windows Live Messenger" /i:’+GrowlIcon+”;
shell.Run(cmd);
}function OnEvent_ContactPsmChange(Email){
var cmd = Growlexe + Email + ‘" has changed PSM " /t:"Windows Live Messenger" /i:’+GrowlIcon+”;
shell.Run(cmd);
}function OnEvent_ContactNameChange(Email){
var cmd = Growlexe + Email + ‘" has changed Nick name " /t:"Windows Live Messenger" /i:’+GrowlIcon+”;
shell.Run(cmd);
}

![Syndicate this site using RSS [x]](http://www.ghost-house.co.uk/wordpress/wp-content/themes/mad-meg/images/rss.png)


