O.P. RE: Suggestion for Event Notifications
I used to use a script that used the following code, only prob is that I can't use it for certain contacts and not for others. Seems like it might be a popular feature request for the event notifications. *shrugs*
I'm not very good with scripting unfortunately or I would try to whip up something myself.
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MessageKind){
if (Origin != Messenger.MyName){
MsgPlus.PlaySound("new_message.mp3");
}
}
|