tags:

views:

43

answers:

2

I have a swing app and I want there to be a title screen that lasts for a few seconds and then transitions to the program. What's the best way to do this? I was thinking a layered pane with a timer, but maybe there's something better?

+1  A: 

You might look into the splash screen feature of Java Web Start.

trashgod
+2  A: 

Besides the JWS based splash, see also the SplashScreen class. The AWT based class provides more control over the splash than JWS, but the JWS based splash worked for versions before 1.6.

Andrew Thompson