http://bugs.winehq.org/show_bug.cgi?id=36894 Bug ID: 36894 Summary: implement FlashWindowEx Product: Wine Version: 1.7.22 Hardware: x86 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: user32 Assignee: wine-bugs(a)winehq.org Reporter: lilydjwg(a)gmail.com CC: fracting(a)gmail.com Currently FlashWindowEx does nothing. It makes programs like IMs unable to notify the user that it needs attention (received a new message etc). Some IMs like Tencent Messenager (TM) only uses this when an already open chat window receives new messages. I suggest you implement this function by setting the urgent hint on Linux/X11. I've verified that implementing this function helps in this (TM) situation: BOOL WINAPI FlashWindowEx( PFLASHWINFO pfwi ) { FIXME("%p\n", pfwi); system("notify-send 'new message!'"); return TRUE; } -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.