GUI improvement

Note, this is a repost from:

http://forum.java.sun.com/thread.jspa?threadID=5120608

I created a program, and now I want to try to improve the GUI.

Just as an example, if you press a certain button, a new jframe pops up with some options. Is there a way to make the whole Jframe go from full transparency to full opacity (alpha value) over a period of time instead of just 'appearing'.

Also, any links to helpful tutorials on customizing/building attractive GUIs would be appreciated.

Thanks

[529 byte] By [Nethera] at [2007-11-26 13:57:00]
# 1

> Is there a way to make the whole Jframe go from full transparency to full opacity (alpha value

As you where told in your other posting, frames don't support transparency.

If you search the forum using "transparent frame" you should find suggestions for how you might simulate this.

> over a period of time

Use a Swing Timer to schedule some event at a regular interval.

Search the forum for my "Fader" example that may give you some ideas.

camickra at 2007-7-8 1:36:50 > top of Java-index,Desktop,Core GUI APIs...