| Author |
Restore applet from full screen
|
Jochem Gruter
Greenhorn
Joined: Aug 16, 2011
Posts: 9
|
|
Hi,
I've a java applet 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.
|
 |
Darryl Burke
Bartender
Joined: May 03, 2008
Posts: 4163
|
|
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 fieldAdd the contentPane to the JFrameGo full screen
Close full screenSet the contentPane back to the JApplet
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.
|
 |
 |
|
|
subject: Restore applet from full screen
|
|
|