Results 1 to 4 of 4
Thread: Loading Game Screen.
- 09-04-2011, 01:48 PM #1
Loading Game Screen.
Cannot get a loading screen to pop up when using sleep (Making it look like it's loading).
Why can't I do this? After the loading screen it's supposed to go to another page.
But first it stops on the menu screen. Then it just jumps over to the other page?
Why? How can I fix it?
Kind,
Regards Alexander HålleniusCurrently Developing a Game Called Loaie, You Can Download It From "The Loaie Website".
- 09-04-2011, 02:24 PM #2
Re: Loading Game Screen.
Is your code blocking the GUI's thread?
Post some sample code so we can see what you are doing.
- 09-04-2011, 02:54 PM #3
Re: Loading Game Screen.
*Clicking Menu Button*
Java Code:Menu.setVisible(false); Loading.setVisible(true); add(Loading); try{ Thread.sleep(4000); } catch(Exception e) {} Loading.setVisible(false); NextScreen.setVisible(true); add(NextScreen);Currently Developing a Game Called Loaie, You Can Download It From "The Loaie Website".
- 09-04-2011, 03:02 PM #4
Re: Loading Game Screen.
Sorry, I meant a SSCCE that we can compile and execute to see the problem.
The sleep in your code will block the thread. If it is the GUI's EDT then nothing happens on that thread until your code returns. Try using a Timer in place of the sleep. The code after the sleep should be moved to the Timer's action method to be executed after the Timer has fired.
Similar Threads
-
Chess game selection screen
By gruffyddd in forum AWT / SwingReplies: 1Last Post: 03-19-2011, 03:27 AM -
First Java game: Why is screen painting so slow?
By CoderMan in forum Java GamingReplies: 5Last Post: 05-20-2010, 02:55 AM -
Loading screen using splash windows
By andres3546 in forum Advanced JavaReplies: 1Last Post: 10-27-2009, 08:27 PM -
Best way to draw to screen & call game update method?
By dwfait in forum Java AppletsReplies: 2Last Post: 04-03-2009, 05:04 AM -
Blank Screen while navigating from one screen to another
By mohana.krishna in forum Java ServletReplies: 0Last Post: 03-03-2009, 05:03 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks