I'm trying to put together a Java Webstart app, but don't want it to display the Webstart splash screen, or "downloading app" boxes. Is there any way I can turn them off? (I'm fine with it displaying the Permissions Request box, but nothing else).
+3
A:
Yes, use the -nosplash option.
Place this:
<argument>-nosplash</argument>
in your JNLP document.
Ry4an
2009-07-11 21:41:41
A:
Or you can use your on startup image:
MyProject1.0 My Company. Application Launcher For MyProject1.0 ....
adrian.tarau
2009-07-12 00:11:10
A:
Note, that for production use you might want the visual feedback to users, to avoid the "It doesn't work today" (where a big update must be downloaded over a slow line resulting in long startup times).
Thorbjørn Ravn Andersen
2009-07-12 10:35:11
What I'd like to do is to have the feedback be in my page instead, the only reason I'm even using WebStart is because it loads in a separate process and hence won't hang the browser.
2009-07-19 05:08:15