How to blink minimized frame

How i can blink my frame when it is minimized ?I designed a chat fram and when any new message comes it should start to blink if my frame is minimized. Thanks & RegardsAnki
[224 byte] By [ankireddy_narravula] at [2007-9-26 1:57:56]
# 1

perhaps what you can do is change the frame icon image every second or so to give the blinking effect.

jframe.setIconImage(darkImage);

and on the next iteration:

jframe.setIconImage(lightImage);

you can just have a separate thread to do the image switching. if there are thread safety problems, you may have to use SwingUtilities.invokeLater(...).

darrelln at 2007-6-29 3:15:07 > top of Java-index,Desktop,Core GUI APIs...