jobukkit
jobukkit

Reputation: 2670

How do I change the 'About' screen of Mac OS X in a Java program?

Mac OS X features an 'About' screen for applications.

enter image description here

Defualt About screen

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

Answers (1)

martijno
martijno

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

Related Questions