Reputation: 1102
Is it possible to change Java logo in security prompt dialog which occurs when starting an applet? According to Java Security Prompts, Java or vendor logo can appear in the dialog. How can default Java logo can be replaced with a vendor logo? I can't find any Manifest attributes to set the custom vendor logo.
Upvotes: 1
Views: 114
Reputation: 298439
As far as I know there is no way to specify an application icon for an Applet. But Java WebStart supports icons, see the icon
element within the JNLP information
Element.
The icon is used in the loading dialogs and in the list of applications, etc, but I didn’t check whether it is also shown in the security dialog. But it’s the only way to specify an icon at all. So if this doesn’t work, I don’t believe there is any other way.
Upvotes: 1