This week's book giveaway is in the Kotlin forum. We're giving away four copies of Kotlin for Android App Development and have Peter Sommerhoff on-line! See this thread for details.
i want that when i iconize or minimize a JInternalFrame window on taskbar, bases on certain condition its minimized icon should change its colour or looks (like in yahoo messenger, when a message comes, the minimized or iconized instant message window blinks!!) is there any class available for such customizations?? how should i achieve this? thanks in advance
Have you tryed:
if(messageArrived){
if(!frameToBeHighlighted.isActive()){
frameToBeHighlighted.setVisible(true);
}
}
I've used a similar snippet on a JFrame I've wanted to be highlighted when minimized. It worked perfectly on Vista 32. I suppose it has to be multi-platform, but I haven't tested it. GL!
Why have you reopened a 7-year old post? please read this.
Campbell Ritchie
Marshal
Posts: 62871
203
posted 9 years ago
But welcome to JavaRanch
We are pleased to have you here.
Ovidiu Drumia
Greenhorn
Posts: 2
posted 9 years ago
Well, 1st of all thank you for welcoming me . I've reopened this thread because I've spent a lot of time on research on this topic, and I've finally come up with that simple answer yesterday. I thought that other developers that would have the same problem might benefit from my post. Anyway I hadn't had the time to read the forum rules just yet, so I'd like to apologize for reopening this post.
And inside of my fortune cookie was this tiny ad:
Programmatically Create PDF Using Free Spire.PDF with Java