Jason Rogers
Jason Rogers

Reputation: 19344

JApplet: setting the size of the frame

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)?

Upvotes: 3

Views: 11302

Answers (1)

Andrew Thompson
Andrew Thompson

Reputation: 168815

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.

Upvotes: 4

Related Questions