[Bug]Orange notification |
Author: |
Message: |
PanosGR
New Member
Programming and Telecommunications
Posts: 13
36 / /
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 |
|
|
tony
Senior Member
Posts: 976 Reputation: 54
36 / /
Joined: Jul 2004
|
RE: [Bug]Orange notification
It's because plus is not 100% compatible with the new beta.
|
|
12-16-2008 02:32 AM |
|
|
PanosGR
New Member
Programming and Telecommunications
Posts: 13
36 / /
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 |
|
|
matty
Scripting Guru
Posts: 8336 Reputation: 109
39 / /
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 |
|
|
Spunky
Former Super Mod
Posts: 3658 Reputation: 61
36 / /
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);
}
}
<Eljay> "Problems encountered: shit blew up"
|
|
12-16-2008 02:46 PM |
|
|
matty
Scripting Guru
Posts: 8336 Reputation: 109
39 / /
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 |
|
|
PanosGR
New Member
Programming and Telecommunications
Posts: 13
36 / /
Joined: Nov 2008
|
O.P. RE: [Bug]Orange notification
Nice but where do i write this code?
|
|
12-16-2008 10:33 PM |
|
|
matty
Scripting Guru
Posts: 8336 Reputation: 109
39 / /
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 |
|
|
|