Compile specific Apple API (com.apple.eawt) on Windows

2013-10-27 Thread Abu Abdullah
Hi, Windows port of Oracle JDK 7 does not include com.apple.eawt.* classes preventing compiling the code on Windows. Is there any way to overcome this. My main development platform is Windows and rarely I'm able to test the code on Mac machine.

Re: Compile specific Apple API (com.apple.eawt) on Windows

2013-10-27 Thread Abu Abdullah
ons/2151174/how-can-i-develop-apple-java-extensions-on-windows > > I believe this should work fine in JDK7 also. > > Steve > > > On Sun, Oct 27, 2013 at 10:07 PM, Abu Abdullah wrote: > >> Hi, >> >> Windows port of Oracle JDK 7 does not include com.apple.eawt.

JavaAppLauncher and working directory

2014-04-06 Thread Abu Abdullah
Hi, I'm trying to bundle my application using Oracle JavaAppLauncher (from the AppBundler project files). all app classes are not in Jar but in a simple directory structure as follow: my.app/Contents/Java/ my.app/Contents/Java/classes my.app/Contents/Java/setting my.app/Contents/Java/lib my.app/C

Re: JavaAppLauncher and working directory

2014-04-06 Thread Abu Abdullah
On Sun, Apr 6, 2014 at 9:02 PM, Michael Hall wrote: > On Apr 6, 2014, at 2:10 AM, Abu Abdullah wrote: > > > > > > > I'm using scripting to do this and not by AppBundler. > > Once i launch the application, it didn't recognize its location

Re: JavaAppLauncher and working directory

2014-04-07 Thread Abu Abdullah
On Sun, Apr 6, 2014 at 6:45 PM, Joe McGlynn wrote: > I don't believe the "app bundler" project is maintained any longer. That > code was subsumed into the "FX Packager" (which works for non-FX apps) > about a year ago. FWIW, I suspect that you need to put your application > classes into a JAR f

Re: JavaAppLauncher and working directory

2014-04-10 Thread Abu Abdullah
> > > I believe the way this works is that any jars in the Java directory are > added to classpath _but_ the Java directory itself is not classpath. The > Classes directory it contains is in classpath. > > For example: > > set java.class.path > java.class.path=/Users/mjh/HalfPipe/HalfPipe7.app/Cont

Javafxpackager and splash screen

2014-04-11 Thread Abu Abdullah
Hi, using javafxpackager -deploy on a jar with SplashScreen in the manifest.mf will not create an entity in the info.plist with splash option. Is it supported. I'm using jdk 1.8.0, I have tried to do it manually e.g. JVMOptions -splash:$APP_ROOT/Contents/Java/images/logo.png i tried

Re: Javafxpackager and splash screen

2014-04-11 Thread Abu Abdullah
On Sat, Apr 12, 2014 at 6:19 AM, Michael Hall wrote: > > i tried even the absolute path in case APP_ROOT is not supported but not > working. > > > I seem to remember support for something like this being added. But am not > sure. You could check the source. > > I tried also with jdk1.8.0 u20 as w

Re: Javafxpackager and splash screen

2014-04-13 Thread Abu Abdullah
On Sat, Apr 12, 2014 at 1:52 PM, Michael Hall wrote: > On Apr 11, 2014, at 9:38 PM, Abu Abdullah wrote: > > On Sat, Apr 12, 2014 at 6:19 AM, Michael Hall wrote: > >> >> i tried even the absolute path in case APP_ROOT is not supported but not >> working. >>

Re: Javafxpackager and splash screen

2014-04-15 Thread Abu Abdullah
i will do that. thanks On Mon, Apr 14, 2014 at 8:26 PM, David DeHaven wrote: > > You may want to join the OpenJFX mailing list, the developers working on > JavaFX packager are more likely to see packager questions over there. > > openjfx-...@openjdk.java.net > > -DrD- > > > Hi, > > > > using jav

Re: Javafxpackager and splash screen

2014-04-15 Thread Abu Abdullah
On Tue, Apr 15, 2014 at 3:20 AM, Danno Ferrin wrote: > Try APPDIR instead of APP_ROOT. > > > Still the same result, it is not working even with absolute path. maybe I'm missing something.