I've a javaapplet that runs in a browser. When pressing f11 in the applet then the applet will be full screen. I put the applet in a frame and set the frame full screen:
(this class extends the Applet class)
But when you press ESC it should be restore the screen from the full screen frame to the browser. I've tried everything to get it work but it won't If you press ESC now it will close full screen but the browser applet has a white screen.
When you add the Applet to the JFrame it is automatically removed from the frame (sharedOwnerFrame?) that the Java plugin creates for it in the browser.
Something like this might work, if this is a JApplet:
Assign the JApplet's contentPane to an instance field
When trying this I would suggest you name the variable something other than contentPane so you don't inadvertently hide any similarly named variable in a superclass. I haven't checked whether that might happen, but its better to be safe.
luck, db
There are no new questions, but there may be new answers.