quote:
Originally posted by shaque
The annoying thing is that the taskbar doesn't flash anymore. I could care less about the missing window, however, I need the taskbar to flash, quite simply because I mute my PC a lot of times.
Create a new script and put the following code in it.
code:
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MessageKind){
Interop.Call("User32", "FlashWindow", ChatWnd.handle, true);
}
That does the trick for me.