align menu bar of the frame , change frame background

hello to all

I'm novice in java Swing

I want to ask you some questions

How can I change frame background by an image or by a color

How can I change the alignment in menu bar ?

and change the alignment in the subject bar which has a minimize button, close button ... etc

its alignment by default is left to right, I want to change it to right to left

Thank you :$

[412 byte] By [happy_paina] at [2007-11-27 4:07:46]
# 1
Container content = Frame.getContentPane();Frame.setVisible(true);content.setBackground(Color.magenta);this is for change a frame by color.what about the others ?
happy_paina at 2007-7-12 9:13:04 > top of Java-index,Desktop,Core GUI APIs...
# 2
> How can I change the alignment in menu bar ?To what?
camickra at 2007-7-12 9:13:04 > top of Java-index,Desktop,Core GUI APIs...
# 3
I want it in the right side of my frame
happy_paina at 2007-7-12 9:13:04 > top of Java-index,Desktop,Core GUI APIs...
# 4
Read the Swing tutorial on [url http://java.sun.com/docs/books/tutorial/uiswing/components/menu.html]How to Use Menus[/url]. It show you how to align a single menu on the right. The concept would be the same for all menus.
camickra at 2007-7-12 9:13:04 > top of Java-index,Desktop,Core GUI APIs...
# 5
happy_pain : And how can i put a personalized color in background ?Color. ?Thanks !
SnowFalcona at 2007-7-12 9:13:04 > top of Java-index,Desktop,Core GUI APIs...
# 6
An idea ?
SnowFalcona at 2007-7-12 9:13:04 > top of Java-index,Desktop,Core GUI APIs...
# 7
I read the docs, It's "new Color(0x99ccff)". Sorry !
SnowFalcona at 2007-7-12 9:13:04 > top of Java-index,Desktop,Core GUI APIs...