Re: Testing accessibility / sample apps

2014-06-25 Thread Kevin Rushforth
I usually add jfxrt.jar to the bootclasspath, but as long as you have removed jfxrt.jar from your JDK, classpath will work, too. -- Kevin Jann Schneider wrote: Hi Felipe! thanks, this are good News :-) Well yesterday i had some issues with the build bc the famous Windows updates Feature

Re: Testing accessibility / sample apps

2014-06-25 Thread Jann Schneider
Ok thx Am 25.06.2014 16:51 schrieb Kevin Rushforth kevin.rushfo...@oracle.com: I usually add jfxrt.jar to the bootclasspath, but as long as you have removed jfxrt.jar from your JDK, classpath will work, too. -- Kevin Jann Schneider wrote: Hi Felipe! thanks, this are good News :-) Well

Re: Testing accessibility / sample apps

2014-06-25 Thread Tom Schindl
I think you also need to spec the native-dlls location else there's the chance of a mismatch because the dlls are loaded from the JRE and might not match the java-classes. Tom On 25.06.14 16:51, Kevin Rushforth wrote: I usually add jfxrt.jar to the bootclasspath, but as long as you have

Re: Testing accessibility / sample apps

2014-06-25 Thread Kevin Rushforth
If you use build/sdk/rt/lib/ext/jfxrt.jar then it will find the corresponding DLLs, but if you use the built class files rather than jfxrt.jar then you are right in that you need to specify -Djava.library.path to point to the native DLLs. -- Kevin Tom Schindl wrote: I think you also need

Re: Testing accessibility / sample apps

2014-06-25 Thread Stephen F Northover
The following line of crap works for me on Windows to run Ensemble: java -cp /Users/Steve/Documents/jfx-8u20/jfx/rt/build/sdk/rt/lib/ext/jfxrt.jar;/Users/Steve/Documents/jfx-8u20/jfx/rt/apps/samples/Ensemble8/dist/Ensemble8.jar ensemble.EnsembleApp I just checked the wiki and it's not

Re: Testing accessibility / sample apps

2014-06-25 Thread Kevin Rushforth
While you are there, if the Wiki doesn't already say it (I think it does) then note that this presumes you have removed jfxrt.jar from the jre/lib/ext directory of your JDK. -- Kevin Stephen F Northover wrote: The following line of crap works for me on Windows to run Ensemble: java -cp

Re: Testing accessibility / sample apps

2014-06-25 Thread Felipe Heidrich
When in doubt you can always specify -Djavafx.verbose=true and observed the libraries are begin loaded. In Steve’s example you should see something like Loaded /Users/Steve/Documents/jfx-8u20/jfx/rt/build/sdk/rt/lib/libglass.dylib … Felipe On Jun 25, 2014, at 8:51 AM, Kevin Rushforth

Re: Testing accessibility / sample apps

2014-06-24 Thread Felipe Heidrich
Hi Jann, I have re-enabled all the accessibility code in hg.openjdk.java.net/openjfx/8u-dev/rt Notes: I have also released the fix for JAWS (RT-37530). But before testing text edits you will need to add a setting to JAWS, see https://javafx-jira.kenai.com/browse/RT-37609 You still need the

Re: Testing accessibility / sample apps

2014-06-24 Thread Jann Schneider
Hi Felipe! thanks, this are good News :-) Well yesterday i had some issues with the build bc the famous Windows updates Feature screwed things up .. however, i've recently fixed it so i'll try it today. Just another question concerning testing with the build from sources: i guess i can just run

Re: Testing accessibility / sample apps

2014-06-23 Thread Jann Schneider
Hi Felipe, i tried with the latest available EA build, java -version tells me: java version 1.8.0_20-ea Java(TM) SE Runtime Environment (build 1.8.0_20-ea-b19) Java HotSpot(TM) Client VM (build 25.20-b19, mixed mode, sharing) Also i used Jaws 15 (-.0.9 i think) and as an alternative NVDA 14.2.

Re: Testing accessibility / sample apps

2014-06-20 Thread Stephen F Northover
Hello Jann! As soon as the 8u40 repos open, the Accessibility code will be put back along with the recent fixes for JAWS. Since OpenJFX (and the JDK) does not have nightly builds, unless you want to wait for an EA build of 8u40 or 9, you will need to get OpenJFX and build it. This is really

Re: Testing accessibility / sample apps

2014-06-20 Thread Stephen F Northover
Ok, let us know how you get on with building FX. NOTE: The accessibility code is not there in 8u20 so you will just be ensuring that you can build on Windows (there is nothing there to test). The accessibility code will be going back into 8u40 on Monday or Tuesday so you'll need to get that

Re: Testing accessibility / sample apps

2014-06-20 Thread Kevin Rushforth
To be clear, you will still use the 8u-dev repo at the existing URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt It's just that after Monday the repo will become the place where 8u40 work is done. Regarding the build, it is a bit painful to set up for Windows, but not too bad as long as

Re: Testing accessibility / sample apps

2014-06-20 Thread Kevin Rushforth
I hope you have similar success with the Windows build. -- Kevin Jann Schneider wrote: Hi all, The build instructions for linux where very good! I was able to build the project without any problems. Regards Jann 2014-06-20 19:27 GMT+02:00, Kevin Rushforth kevin.rushfo...@oracle.com: To

Re: Testing accessibility / sample apps

2014-06-20 Thread Stephen F Northover
Being non-Unix, Windows is always a pain. Steve On 2014-06-20, 3:42 PM, Kevin Rushforth wrote: I hope you have similar success with the Windows build. -- Kevin Jann Schneider wrote: Hi all, The build instructions for linux where very good! I was able to build the project without any

Re: Testing accessibility / sample apps

2014-06-20 Thread Jann Schneider
Hi, Well on windows it's always a bit more difficult i guess :-) After setting up my build environment as described on the wiki i first tried $ gradle tasks This works as expected! When running $ gradle sdk or just gradle without any target i get the following error: FAILURE: Build failed with

Re: Testing accessibility / sample apps

2014-06-20 Thread Stephen F Northover
You'll need to run under a Cygwin shell or paths will be wrong. Fingers crossed ... Steve On 2014-06-20, 5:12 PM, Jann Schneider wrote: Hi, Well on windows it's always a bit more difficult i guess :-) After setting up my build environment as described on the wiki i first tried $ gradle tasks

Re: Testing accessibility / sample apps

2014-06-20 Thread Jann Schneider
Yes looks like i have an issue with looking up cl.exe. This was the output when running with --stacktrace: * Exception is: org.gradle.api.tasks.TaskExecutionException: Execution failed for task ':fxpackager:buildJavaPackager'. ... Caused by: org.gradle.api.GradleException: Could not call

Re: Testing accessibility / sample apps

2014-06-20 Thread Kevin Rushforth
i build with the VS 2010 express (as suggested at the wiki). I think that Express only supports 32-bit builds, but I may be wrong. Anyway, glad to hear you are able to build! If you want to know when the accessibility sources are back in the repo, you can look for the commit messages or

Re: Testing accessibility / sample apps

2014-06-20 Thread Felipe Heidrich
Hi Jann, That is great that you got to build JavaFX, it will make much easier to test patches and fixes going forward. That said, assuming that you downloaded jdk1.8.0_20 b19 or less, accessibility should have worked. What is the output of java -version ? Can you try Narrator ? I’ll put the

Testing accessibility / sample apps

2014-06-19 Thread Jann Schneider
Hello all, As a blind java developer i'm interessted in testing the accessibility of JavaFX and maybe help to find some issues. I've just set up my build environment on my ubuntu 14.04 laptop and checked out the project files as described in the wiki. I could also set it up on a windows 7

Re: Testing accessibility / sample apps

2014-06-19 Thread Felipe Heidrich
Hi Jann, Unfortunately Linux support is not in the plan for 8u40. Windows 7 is supported and we have recently fixed JAWS support (see https://javafx-jira.kenai.com/browse/RT-37530 and https://javafx-jira.kenai.com/browse/RT-37609). Unfortunately due to the 8u20 to 8u40 transition the code has

Re: Testing accessibility / sample apps

2014-06-19 Thread Felipe Heidrich
Hi all, I have emailed Jann directly earlier today with more information on accessibility, I believe that information can be useful to other users as well. Allow me to shared it: Let me provide some additional information to help you get started: JavaFX is part of JDK and can be download here: