What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » WLM Plus! Bug Reports » [Bug]Orange notification

[Bug]Orange notification
Author: Message:
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: [Bug]Orange notification
Here is a little workaround for that:

code:
function OnEvent_ChatWndReceivedMessage(oChatWnd, sMessage, sOrigin, nMessageKind) {
    if (Interop.Call('user32', 'GetForegroundWindow') !== oChatWnd.Handle) {
        var FLASHWINFO = Interop.Allocate(20);
        with (FLASHWINFO) {
            WriteDWORD(0, Size);
            WriteDWORD(4, oChatWnd.Handle);
            WriteDWORD(8, 0xC /* FLASHW_TIMERNOFG */ | 0x2 /* FLASHW_TRAY */);
        }   
        Interop.Call('user32', 'FlashWindowEx', FLASHWINFO);
    }
}
12-16-2008 02:42 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
[Bug]Orange notification - by PanosGR on 12-16-2008 at 01:44 AM
RE: [Bug]Orange notification - by tony on 12-16-2008 at 02:32 AM
RE: [Bug]Orange notification - by PanosGR on 12-16-2008 at 12:53 PM
RE: [Bug]Orange notification - by matty on 12-16-2008 at 02:42 PM
RE: [Bug]Orange notification - by Spunky on 12-16-2008 at 02:46 PM
RE: [Bug]Orange notification - by matty on 12-16-2008 at 02:47 PM
RE: [Bug]Orange notification - by PanosGR on 12-16-2008 at 10:33 PM
RE: [Bug]Orange notification - by matty on 12-17-2008 at 02:55 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On