Reputation: 2670
Mac OS X features an 'About' screen for applications.
But how do I change the version number that is displayed, the icon shown, and add some text programmatically? I don't want a seperate Mac application bundle trough, I want to keep anything in a single multiplatform Jar file. Thank you.
Upvotes: 1
Views: 190
Reputation: 1783
The way to do this was to use OSXAdapter and call its setAboutHandler(...)
method pointing to your method for popping up an about dialog. But apparently that's legacy now.
Upvotes: 1