I\'m trying to change the application name displayed into the menu bar of OS X but i can\'t succeed with that. I have tried settings as the first statement in the main metho
Apparently, you can do it adding the following when you add the following options to the command line:
-Xdock:name="Alessio"
While com.apple.mrj.application.apple.menu.about.name is the right property name, I think you'll be setting it too late. Have you tried it on the command line as:
-Dcom.apple.mrj.application.apple.menu.about.name=Alessio
For more information about writing Java Apps for OS X: http://www.oracle.com/technetwork/articles/javase/javatomac-140486.html
It may also be worth looking at something like this: http://launch4j.sourceforge.net/