I read that this is a difficult question because the applet is running in the browser. But I would like my applet window to always keep the same size. (Right now, working with Eclipse, I can shift the window size.)
At the moment, I am only doing this:
public class myJApplet extends JApplet{
public void init() {
this.setSize(800, 480);
}
}
Is there any way to add this.setResizable(false)?
source
share