JApplet: setting the size of the frame

11,270

Set the size of the applet in the HTML. E.G.

<html>
<body>
<applet code="myJApplet" width="800" height="480">
</applet>
</body>
</html>

The applet will still be resizable when the HTML is loaded in the AppletViewer, but that is not relevant to deployment.

Share:
11,270
Jason Rogers
Author by

Jason Rogers

Updated on June 04, 2022

Comments

  • Jason Rogers
    Jason Rogers almost 2 years

    I read that this is a tricky question because an applet is run in the browser. But I would like my applet window to always maintain the same size. (Right now working with Eclipse I can slide the size of the window.)

    For the moment I only do this:

    public class myJApplet extends JApplet{
      public void init() {
         this.setSize(800, 480);
      }
    }
    

    Is there a way to add a this.setResizable(false)?