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:
PanosGR
New Member
*

Avatar
Programming and Telecommunications

Posts: 13
35 / Male / Flag
Joined: Nov 2008
O.P. [Bug]Orange notification
Hello all!I have installed the new WLM beta with the beta of Plus and i discovered that if i have the conversations window minimized or if i cant see it(behind other windows like browser etc.),then when i have a new message from a contact or many contacts,the thumbnail of the conversations window on the taskbar doesnt glows orange so i dont know when i have new messages!Is it a bug of the new beta of WLM or a bug cause the Plus is not 100% compatible with the new beta?

This post was edited on 12-16-2008 at 01:44 AM by PanosGR.
12-16-2008 01:44 AM
Profile E-Mail PM Find Quote Report
tony
Senior Member
****

Avatar

Posts: 976
Reputation: 54
36 / Male / Flag
Joined: Jul 2004
RE: [Bug]Orange notification
It's because plus is not 100% compatible with the new beta.
[Image: beginnerbadgeef2.gif][Image: danceichigoow9.gif]
12-16-2008 02:32 AM
Profile PM Web Find Quote Report
PanosGR
New Member
*

Avatar
Programming and Telecommunications

Posts: 13
35 / Male / Flag
Joined: Nov 2008
O.P. RE: [Bug]Orange notification
Oh ok my friend;)I'm looking forward for the new build of Plus!
12-16-2008 12:53 PM
Profile E-Mail PM Find Quote Report
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
Spunky
Former Super Mod
*****

Avatar

Posts: 3658
Reputation: 61
35 / Male / Flag
Joined: Aug 2006
RE: [Bug]Orange notification
quote:
Originally posted by matty
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);
    }
}


:bow:
<Eljay> "Problems encountered: shit blew up" :zippy:
12-16-2008 02:46 PM
Profile PM Find Quote Report
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: [Bug]Orange notification
Just a side note, this will not flash the tab within Tabbed Chats.

This post was edited on 12-16-2008 at 02:54 PM by matty.
12-16-2008 02:47 PM
Profile E-Mail PM Find Quote Report
PanosGR
New Member
*

Avatar
Programming and Telecommunications

Posts: 13
35 / Male / Flag
Joined: Nov 2008
O.P. RE: [Bug]Orange notification
Nice but where do i write this code?
12-16-2008 10:33 PM
Profile E-Mail PM Find Quote Report
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: [Bug]Orange notification
Create a new script and paste the code.

Now this in fact may not work depending on how compatible Messenger Plus! Live is with the latest version of Windows Live Messenger. Therefore if you do the above and it still doesn't work then something else will have to be done.

Cheers!
12-17-2008 02:55 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »


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