The name of my applications in the Apple Menu initially takes on
name in the Title tag of my JNLP for a second, then the name changes
to com.sun.javaws.Main .
In development, Netbeans, the name is the class name. I can put in
the command line arg -Xdock:name='Sample Name' & this changes it
permanently.
I tried adding this in the resources tag of the JNLP, but nothing
different happened
<j2se version="1.6+" java-vm-args="-DXdock:name='Sample Name' -
Dapple.awt.graphics.UseQuartz=true -
Dapple.laf.useScreenMenuBar=true"/>
^^^^^^^^^^^^^^^^^^^^^^^^^
Xdock:name is a java command line option not a system property. So you
should use
-Xdock:name='Sample Name'
and not -DXdock:... in your JNLP file.
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Java-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/java-dev/email@hidden