Hi all,
i have a java application, in which i have set the property of using
the ScreenMenuBar.
com.apple.macos.useScreenMenuBar=true
now i want to display the applications About Box from the About menu
item provided in the Apple menu.
For this i have written the class:
class AboutBoxTest implements MRJAboutHandler
{
public QuitTest()
{
MRJApplicationUtils.registerAboutHandler (this);
}
public void handleAbout
{
AboutBox aAboutBox = new AboutBox();
}
}
i have also set the property
com.apple.mrj.application.apple.menu.about.name = App
Now the problem is that, i want to display my AboutBox. But i dont know
how it will be done.
Please suggest. Its urgent.