Re: [JAVA2D] Render TitledBorder in Synth

2008-07-17 Thread java2d
Hi :) We had the same problem. Ofcourse your work a round (you described above) works but it is not a solution. The work a round we used is: Instaed: [i]BorderFactory.createTitledBorder(title);[/i] You should use: [b][i]Border objBorder = BorderFactory.createLineBorder(Color.black); //Also u

Re: [JAVA2D] I see that FullScreen Exclusive Mode has changed....

2008-07-17 Thread java2d
The way it is now is fine with me -- the flash is a little bit much. The icon in the upper right should be enough. This is why: If a person does something to enter FSEM, then that person (in most cases) will know that it's an applet window and the flashing is just mildly annoying. If a

Re: [JAVA2D] I see that FullScreen Exclusive Mode has changed....

2008-07-17 Thread java2d
I added a ComponentListener to my VSync applet. http://pancyl.com/VSync.htm The listener just prints out the name of the received event, eg. vsync.VSyncFS --- Resized vsync.VSyncFS --- Shown Observations: The flashing border happens everytime vsync.VSyncFS gains focus. That's probably

Re: [JAVA2D] I see that FullScreen Exclusive Mode has changed....

2008-07-17 Thread Dmitri Trembovetski
[EMAIL PROTECTED] wrote: I added a ComponentListener to my VSync applet. http://pancyl.com/VSync.htm The listener just prints out the name of the received event, eg. vsync.VSyncFS --- Resized vsync.VSyncFS --- Shown Observations: The flashing border happens everytime vsync.VSyncFS gains

Re: [JAVA2D] I see that FullScreen Exclusive Mode has changed....

2008-07-17 Thread Dmitri Trembovetski
I wanted to add, your feedback on the new applet warning window is most welcome. While we won't have time to address any issues you raise in 6u10 we will try in 6u11. Thanks, Dmitri Dmitri Trembovetski wrote: [EMAIL PROTECTED] wrote: I added a ComponentListener to my VSync