Re: Handling Enter key presses on Buttons in JavaFX

2016-06-07 Thread Michael Berry
On 7 June 2016 at 23:04, Tomas Mikula wrote: > What about forgetting the whole notion of a "default button" and the only > effect of setting the default property to true being that the button will > start as focused? > > So I add a question: > > 3) Would anyone miss the

Re: Handling Enter key presses on Buttons in JavaFX

2016-06-07 Thread Michael Berry
I can't comment on behalf of the Mac guys, but certainly from a Windows perspective I find the current behaviour confusing - I would ideally expect the enter key to fire the focused button, and the "default" button would get fired by default purely because it is the one first selected (as oppose

Re: [9] Proposal to deprecate VP6 video and the FLV/FXM file formats

2015-08-27 Thread Michael Berry
On 27 August 2015 at 19:53, David DeHaven david.deha...@oracle.com wrote: +1 for deprecation - I haven't used VP6 in a long while, and would value the whole thing being open source more than its inclusion. Out of interest, is this anything to do with JEP 257? I started looking at this

Combobox issue with Windows 10

2015-08-09 Thread Michael Berry
After upgrading to windows 10, I've had many reports of users hitting this issue (https://bugs.openjdk.java.net/browse/JDK-8132897) whereby clicking any unfocused combobox in our application completely freezes it up. (Interestingly, tabbing so the combobox is selected first before clicking

Re: Why Javafx UI hangs or become unresponsive on using Plarform.runLater() ?

2014-10-19 Thread Michael Berry
Perhaps a silly question - but do you really need millions of lines in the text area? When you're displaying this much text then from my understanding things are bound to hang (simply because of the processing overload) and there's not really a great deal you can do about it. You can see if

British english on JavaFX controls

2014-10-16 Thread Michael Berry
Hello, I'm trying to get the JavaFX controls (specifically the ColorPicker) to display British English labels, that is Colour instead of Color, but don't seem to be getting anywhere - do I need to do anything more than setting the default Locale? For instance: public void start(Stage

Re: British english on JavaFX controls

2014-10-16 Thread Michael Berry
, Michael Berry wrote: Hello, I'm trying to get the JavaFX controls (specifically the ColorPicker) to display British English labels, that is Colour instead of Color, but don't seem to be getting anywhere - do I need to do anything more than setting the default Locale? For instance

Re: British english on JavaFX controls

2014-10-16 Thread Michael Berry
Hi Tom, Sure, that makes sense, thanks for the info. Don't suppose there's a workaround you know of? This is for an application which has a bundled JRE, so I can potentially just add the language file in the proper location - it'd just be nice to have a fix that doesn't require modification if

Re: British english on JavaFX controls

2014-10-16 Thread Michael Berry
. If AWT/Swing is missing a translation, is there a way to add it short of modifying the system? Steve On 2014-10-16, 10:28 AM, Michael Berry wrote: Hi Tom, Sure, that makes sense, thanks for the info. Don't suppose there's a workaround you know of? This is for an application which has

Re: OT: Netbeans ported to JFX?

2014-07-09 Thread Michael Berry
It would be nice in a utopian sense - though I'd have to question if it would really be worth the resources required? Personally I'd be much more in favour of further development of JavaFX itself... Michael On 9 July 2014 10:52, Tobias Bley t...@ultramixer.com wrote: very interesting

Re: macosx fullscreen and window manager

2014-03-31 Thread Michael Berry
Hi Erik, Not a full solution by any means - but in terms of the mouse pointer being shown, you could just set a blank cursor using setCursor(Cursor.NONE) on Scene. Thanks, Michael On 31 March 2014 11:54, Anthony Petrov anthony.pet...@oracle.com wrote: Hi Erik, What you're asking for is

Re: Adding GStreamer plugins

2014-03-28 Thread Michael Berry
thanks, Michael On 27 March 2014 08:58, Kirill Kirichenko kirill.kiriche...@oracle.comwrote: On 27.03.2014 03:53, Michael Berry wrote: Unfortunately I seem to have become a bit stuck at step one! I'm probably missing a few things that are rather obvious, but haven't really got much

Re: Adding GStreamer plugins

2014-03-26 Thread Michael Berry
Hi David, Sure - I'm aware there's legal issues surrounding many of the formats, though one of the reasons I picked MKV to start with was because it's an open container format. I'm certainly not aware of any restrictions surrounding it (though please correct me if I'm wrong on that front!) A

Re: Adding GStreamer plugins

2014-03-25 Thread Michael Berry
in a working plugin, and have some end result from what I'm trying to achieve here! Many thanks, Michael On 25 March 2014 11:00, Kirill Kirichenko kirill.kiriche...@oracle.comwrote: Hi Michael. See my comments inline. On 24.03.2014 04:31, Michael Berry wrote: I'm now a bit further along

Re: Adding GStreamer plugins

2014-03-25 Thread Michael Berry
steve.x.northo...@oracle.comwrote: On 2014-03-25 7:00 AM, Kirill Kirichenko wrote: Hi Michael. See my comments inline. On 24.03.2014 04:31, Michael Berry wrote: I'm now a bit further along with this, though struggling to get the matroska plugin to compile (getting a bunch of unresolved

Re: Adding GStreamer plugins

2014-03-25 Thread Michael Berry
Hi Richard, Sure, I've emailed the patch to Scott and will work on a writeup for others that want to do something similar! (Minor point, is the wiki source in standard MediaWiki style or something else?) Kirill - I think I'll take your suggestion next and start looking at upgrading the existing

Re: Adding GStreamer plugins

2014-03-23 Thread Michael Berry
, 2014, at 9:26 PM, Michael Berry berry...@gmail.com wrote: Hi all, I've managed to clone and build OpenJFX successfully, and am now in the process of trying to see how feasible it would be to add support for other media formats. As a first port of call I'm attempting to see if I can get

Re: Adding GStreamer plugins

2014-03-23 Thread Michael Berry
, Michael On 23 March 2014 15:32, Michael Berry berry...@gmail.com wrote: Hi Scott, Sure, that's in fact my eventual goal - but in order to successfully get that far I need to work out how to compile OpenJFX with other GStreamer plugins first, and unfortunately at the moment I seem

LNK1123: failure during conversion to COFF when building under windows

2014-03-22 Thread Michael Berry
Hi, I'm currently trying to build OpenJFX from source on Windows - I've followed the instructions on the build page and have Visual Studio 2010, the June 2010 directx sdk, cygwin and its relevant modules installed. However, when building it fails at the buildJavaFXPackage task (output below.)

Re: LNK1123: failure during conversion to COFF when building under windows

2014-03-22 Thread Michael Berry
On 22 March 2014 14:46, Kevin Rushforth kevin.rushfo...@oracle.com wrote: Do you have VS 2010 Service Pack 1? I've seen this failure on machines that don't have SP1 installed. -- Kevin Michael Berry wrote: Hi, I'm currently trying to build OpenJFX from source on Windows - I've

Adding GStreamer plugins

2014-03-22 Thread Michael Berry
Hi all, I've managed to clone and build OpenJFX successfully, and am now in the process of trying to see how feasible it would be to add support for other media formats. As a first port of call I'm attempting to see if I can get the framework accepting the Matroska plugin, but seem to be coming a