Reputation: 631
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
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