My Java application sometimes stays at system tray, just like MSN messenger does. I need popup a window to display some formated texts. Sometimes there is more than 1 message entry. I need to display them all.
I am new to jave Swing/GUI.
Anyone has idea or experience on this?
I haven’t had the opportunity to work with the Java system tray functionality yet, but you might be interested in reading this overview.
One particular section that appears to describe what you want is this:
That sounds like it describes what you want to do, but I’m not sure if there are any limitations on it. With that, the
SystemTrayandTrayIconclasses might be of interest as well, although I’m guessing that you’ve read them already.