zaree
zaree

Reputation: 631

Set Icon to JApplet titlebar

I am using JApplet embedded in HTML. How can I set an icon or logo to the title bar of JApplet, just like we set icons to JFrame using setIconImage?

Upvotes: 1

Views: 451

Answers (1)

Andrew Thompson
Andrew Thompson

Reputation: 168835

An applet has no title bar, so that is not possible. You could always try to have the applet set an icon for the web page itself.

Upvotes: 1

Related Questions