Re: Cocoa sheets using Java
Re: Cocoa sheets using Java
- Subject: Re: Cocoa sheets using Java
- From: "Nathan V. Roberts" <email@hidden>
- Date: Sat, 10 Nov 2001 00:56:00 -0600
NSApplication app;
app.beginSheet(mySheet, mainWindow, mySheet, null, null);
can someone tell me what is wrong with this code?
Try:
NSApplication.sharedApplication().beginSheet(...);
(What Finlay said, but in Java.)
Nate