Author
Problem with game applet
Topias Martikainen
Greenhorn
Joined: Nov 13, 2012
Posts: 2
I have been trying to do a simple reaction game applet .. I have been trying for hours to make "aika" increasing when you press ENTER but I havent figured it out!
So I would like to get some help for this issue.. Sorry for being such a "noob" and I thank beforehand.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35438
posted Nov 13, 2012 06:56:06
0
if (frozen = false)
You're missing a very important character here. I didn't look at the rest of the code, so there may be other issues.
Android apps – ImageJ plugins – Java web charts
Topias Martikainen
Greenhorn
Joined: Nov 13, 2012
Posts: 2
Ulf Dittmer wrote:
if (frozen = false)
You're missing a very important character here. I didn't look at the rest of the code, so there may be other issues.
Oh! but thats not the problem..
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35438
posted Nov 13, 2012 09:10:37
0
You should also get in the habit of using @Override annotations. You've got another typo that would have been caught by that.
Also, sleeping for 1 millisecond is too short. Sleep at least for 50 or 100.
subject: Problem with game applet