| Author |
How to reload an applet
|
Ayan Kumar Roy
Greenhorn
Joined: Aug 21, 2002
Posts: 10
|
|
I have made a game applet, where score is being shown in a new Dialog window. which displays a button Play again, clicking on which, the applet should reload. Is it possible? Pls. help
|
Ayan Kumar Roy.<br />India
|
 |
Rob Ross
Bartender
Joined: Jan 07, 2002
Posts: 2205
|
|
Yes. You don't actually re-load the applet though. You need to factor your applet so that it can be restarted. Have a method like initGame() that gets called in response to a click in your playGame button. You can then automatically start your game when your applet loads, by having the start() method call your initGame() method.
|
Rob
SCJP 1.4
|
 |
 |
|
|
subject: How to reload an applet
|
|
|