little experience with Java and graphics

I'm writing an applet and I'm first creating a Frame with buttons, textareas, and textfields. What I really need to do is be able to use images 'instead' of the buttons and as a background to the overall Frame as well. In addition (although this part is not very crucial for the time being) how can I create custom pull-down menus (as in ones that look the way I want them to) in the Frame as well?

Does anyone know the best way to add an Image overtop of a component like a button? Please keep in mind that I must avoid any Swing and use only AWT classes. Thanks in advance.

[592 byte] By [uberallesa] at [2007-11-26 16:09:21]
# 1
Well, if you "must" avoid Swing, why is this in the Swing forum?
kirillga at 2007-7-8 22:31:39 > top of Java-index,Desktop,Core GUI APIs...
# 2
You can override the paint() method of the AWT objects.
CaptainMorgan08a at 2007-7-8 22:31:39 > top of Java-index,Desktop,Core GUI APIs...
# 3
Oops..didn't move back far enough. Yeah..this post should have been in an AWT forum.
uberallesa at 2007-7-8 22:31:39 > top of Java-index,Desktop,Core GUI APIs...
# 4

> Does anyone know the best way to add an Image overtop

> of a component like a button? Please keep in mind

only way you could do this would be to create a Window right over the button and draw something on that

Heavyweight AWT components (aside from Canvas) cannot be drawn over or have their paint method overridden.

tjacobs01a at 2007-7-8 22:31:39 > top of Java-index,Desktop,Core GUI APIs...