
05-27-2010, 02:22 AM
|
|
|
Join Date: May 2010
Posts: 114
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
To do a FlashWindow in Java, here's what I found:
From:
http://stackoverflow.com/questions/4...sers-attention
There are two common ways to do this: use JNI to set urgency hints on the taskbar's window, and create a notification icon/message. I prefer the second way, since it's cross-platform and less annoying.
See documentation on the TrayIcon class, particularly the displayMessage() method.
And:
http://java.sun.com/javase/6/docs/ap.../TrayIcon.html
|