Drag and touch gestures

2013-07-01 Thread Hervé Girod
Hello, We tried to perform something as in iOS or Android where there is several active widgets, which can be selected by touch gestures, or dragged by drag gestures. However it seems that if we allow these two gestures on the same widget, the touch gesture takes precedence and the drag is

Re: How to use OpenJFX for Android?

2013-07-01 Thread tomas.brandalik
Hello, gradle build for Android is not ready yet, but we're working on it intensively. Linux will come first this week. On 06/29/2013 03:09 PM, Tobias Bley wrote: Hi, we learned how to use OpenJFX with RoboVM... but how can we build an Android app with the new gradle based OpenJFX? best,

[API Review]: Add 'fxml.version' to System Properties (Was: FXML version number)

2013-07-01 Thread Milan Kubec
Hello, I propose to add 'fxml.version' property to JVM System Properties to store version of FXML specific version that is supported by FXML Loader. The property would be more specific equivalent of 'javafx.version' because these two versions won't advance simultaneously. Details about versioning

Re: Native font rendering in JFX8 b96?

2013-07-01 Thread Felipe Heidrich
Hi John, I believe Phil and Kevin already answered your question. Currently I'm not using DirectWrite to render glyphs at subpixel positions (thus it still looks similar to what we had in past) but I hope to enable it in another week or two. If you happen to care for complex text (Indic,

Re: OpenJFX and iOS

2013-07-01 Thread Richard Bair
Thanks Danno, reading the patch now. Richard On Jun 29, 2013, at 8:01 AM, Danno Ferrin danno.fer...@shemnon.com wrote: Here's a patch that copies all the file types if variants are present, so now all .a files show up in ios-sdk:

RE: How are Mnemonics On Buttons Supposed To Work?

2013-07-01 Thread John Smith
Are you using OS X? For me, mnemonics in JavaFX work on Windows, but not at all in OS X (which is perhaps by undocumented design?). Apple's platform integration guide contains a section on Mnemonics, it based on Swing but I think the concepts translate to JavaFX:

Re: How are Mnemonics On Buttons Supposed To Work?

2013-07-01 Thread Mark Fortner
Hi John, Yes, I am using OS X. Thanks for the link. I ended up creating a window level key listener to listen for single key press events (don't really need a modifier). I'll have to rethink my approach. It would be nice if there was a note in the javadoc about this. Regards, Mark Cheers,