Hi,
I'm trying to understand how to deploy an app both as an applet and as a normal java desktop app as painlessly as possible.
What I came up with so far is
this.
GameApplet (derived from the
4k applet template thread) and
GameFrame are both thin wrappers around the same functionality, and are basically identical except for extending different AWT classes.
And yet while GameApplet seem to work well, GameFrame just displays a blank grey window and doesn't quit upon window close.
Any idea what I'm doing wrong?