well, I think about paint(graphic g) -> repaint()/update()
but the problem that I found is when repaint()
the whole applet was reset and it become blank.
I set all game function in JPanel which JApplet will call at my init() [thanks for correcting]
The score Label can update inside JPanel well.
But when the gameover, How can I make it over?
I want to set the condition like when score= something then
JApplet will go to win or lose (html page).
I think about how to derived value form JPanel to JApplet.
Since I found the JLabel in JApplet that I set to show value of JPanel Class did not update
so I think that the derived process is fail.
Can you give me a hint?