Results 1 to 4 of 4
Thread: Timed response button
- 05-17-2011, 03:15 PM #1
Member
- Join Date
- Dec 2009
- Posts
- 55
- Rep Power
- 0
- 05-17-2011, 03:22 PM #2
Which part of this are you stuck on?
How to Ask Questions the Smart Way
Static Void Games - Play indie games, learn from game tutorials and source code, upload your own games!
- 05-17-2011, 06:57 PM #3
Member
- Join Date
- Dec 2009
- Posts
- 55
- Rep Power
- 0
I guess I'm stumped on how to make a method that when called makes a button appear for only 2 seconds.
It's part of a bigger game that has 3 buttons and when started the game will generate a random number and then that number will be checked against 3 if statements that go something like if(randnumb=1){
Make button 1 appear for 2 seconds.}
This is all inside a while(gameisalive=true) loop
Not pressing the correct button in time results in gameisalive=false and pressing the button keeps the game alive of course.at least this was my bestshot as to how it should be designed. Any help or suggestions would be beyond helpful.I'm completely on my own when it comes to programming and I'm sure a lot of u know what that's like
- 05-17-2011, 08:01 PM #4
How to Use Swing Timers (The Java™ Tutorials > Creating a GUI With JFC/Swing > Using Other Swing Features)how to make a method that when called makes a button appear for only 2 seconds.
It is never needed to compare a boolean with true or false.This is all inside a while(gameisalive=true) loopdbJava Code:// while(gameisalive=true) while(gameisalive) // while(gameisalive=false) while(!gameisalive)
Similar Threads
-
SOAP|Java Response - IOException| Server response - a:System.Net.WebException
By bornster in forum XMLReplies: 0Last Post: 04-07-2011, 03:09 PM -
javamail, Connection timed out
By OmerHalit in forum NetworkingReplies: 11Last Post: 04-12-2010, 07:02 AM -
Connection Timed Out
By sukatoa in forum NetworkingReplies: 2Last Post: 10-27-2009, 03:20 PM -
solution for connection timed out
By santhosh_el in forum NetworkingReplies: 0Last Post: 10-03-2009, 07:55 AM -
i am getting connection timed out
By santhosh_el in forum NetworkingReplies: 1Last Post: 08-25-2009, 06:57 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks