This is a simple test case for you to reproduce the flashing for
opening a Dialog. It's basically the same for JMenus.
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.UIDefaults;
import javax.swing.UIManager;
import javax.swing.UIManager.Lo
Hi, Robert.
This is unknown issue. Please file a new bug at
http://bugreport.sun.com/bugreport
Thanks!
On 05.02.2014 19:01, Robert Krüger wrote:
This is a simple test case for you to reproduce the flashing for
opening a Dialog. It's basically the same for JMenus.
import javax.swing.JButton;
i
I have done that. Could you let me know what its ID is, once it is
reachable for the public, so I can track it?
On Wed, Feb 5, 2014 at 4:18 PM, Sergey Bylokhov
wrote:
> Hi, Robert.
> This is unknown issue. Please file a new bug at
> http://bugreport.sun.com/bugreport
> Thanks!
>
>
> On 05.02.2014
Hi, Robert.
What bug Id was reported to you? Try to open the link:
https://bugs.openjdk.java.net/browse/JI-bug_id
On 05.02.2014 21:58, Robert Krüger wrote:
I have done that. Could you let me know what its ID is, once it is
reachable for the public, so I can track it?
On Wed, Feb 5, 2014 at 4:18
There is an issue with the outbound email that contains the ID. I will
let you know when the ID is ready.
-Roger
On 2/5/14, 10:13 AM, Sergey Bylokhov wrote:
Hi, Robert.
What bug Id was reported to you? Try to open the link:
https://bugs.openjdk.java.net/browse/JI-bug_id
On 05.02.2014 21:58, R
Thanks
On Wed, Feb 5, 2014 at 7:28 PM, Roger Lewis wrote:
> There is an issue with the outbound email that contains the ID. I will let
> you know when the ID is ready.
>
> -Roger
>
>
> On 2/5/14, 10:13 AM, Sergey Bylokhov wrote:
>>
>> Hi, Robert.
>> What bug Id was reported to you? Try to open th
Java is no longer installed by default on OS X, but fortunately if a user tries
to launch a Java app for the first time, they receive the following message:
"To open "Test App", you need a Java SE 6 Runtime. Would you like to install
one now?"
However, this prompts to install Java SE 6 rather t
As you seem to be aware, with Java 7 and later you are expected to embed the
JRE in your application bundle. I think the JavaFX packager will do this for
you. The size is usually not relevant these days and the added reliability
makes up for it anyway. You leave no room for the user to downloa
As far as I know you can't. You would need to write your own launcher that
downloads the jre from a site that you host yourself.
Such a solution wouldn't be allowed in the app store either. The best
solution right now is to bundle the jre with your app. But I feel your
pain about app size.
Steve