You can change your Java Web Start application's Launch button image, if you don't like the default button or if you have another image that you have standardized on.
Use thedeployJava.launchButtonPNG
variable to point to the location
of your Launch button's image.
Variable: deployJava.launchButtonPNG
Usage: Providing an alternate image URL
In this example, the Notepad application's Launch button is now an image of Duke waving.
<script src="http://www.java.com/js/deployJava.js"></script> <script> deployJava.launchButtonPNG='http://download.oracle.com/javase/tutorial/images/DukeWave.gif'; var url = "http://java.sun.com/javase/technologies/desktop/javawebstart/apps/notepad.jnlp"; deployJava.createWebStartLaunchButton(url, '1.6.0'); </script>