I am trying to put a JButton over an animated image series

can anyone help me with this?What I have right now is a series of 6 images playing an animation of sort and I need to put a button overtop of this can anyone tell me how to do this?
[195 byte] By [Sina] at [2007-10-2 9:06:13]
# 1
What do you already know about GUI programming?
CeciNEstPasUnProgrammeura at 2007-7-16 23:13:14 > top of Java-index,Java Essentials,Java Programming...
# 2
I know some stuff, not much, but am just beggining to learn, I am one of the only two most advance studants in my class, I can show you what I go so far if you like.
Sina at 2007-7-16 23:13:14 > top of Java-index,Java Essentials,Java Programming...
# 3

> I know some stuff, not much, but am just beggining to

> learn, I am one of the only two most advance studants

> in my class, I can show you what I go so far if you

> like.

I believe you that you're good. But the question is:

- do you know the MVC pattern?

- do you know how to load an paint images?

- do you know how Swing paints components?

You need to know that stuff before you can do what you want. Learn to walk before you run.

CeciNEstPasUnProgrammeura at 2007-7-16 23:13:14 > top of Java-index,Java Essentials,Java Programming...
# 4
The first one you state I am unaware of what it is but the last two I know what they are.I know I should learn to walk before running but its kinda hard when you are self teaching yourself most of this stuff and you don't know were to beggin but you know what you have to do.
Sina at 2007-7-16 23:13:14 > top of Java-index,Java Essentials,Java Programming...
# 5
By MVC do you mean moving controls?
Sina at 2007-7-16 23:13:14 > top of Java-index,Java Essentials,Java Programming...
# 6

> By MVC do you mean moving controls?

No, by MVC I mean the model-view-controller pattern, because you'll need that. It's important that you clearly separate the displaying stuff from what you want to display. Otherwise, you'll code yourself into a cul-de-sac. Once you understood that, you should be a little closer to your goal and get an idea of what to do.

CeciNEstPasUnProgrammeura at 2007-7-16 23:13:14 > top of Java-index,Java Essentials,Java Programming...
# 7
The problem with self-teaching is that you're not unlikely to teach yourself the wrong stuff.
CeciNEstPasUnProgrammeura at 2007-7-16 23:13:14 > top of Java-index,Java Essentials,Java Programming...
# 8

Ok um do you know were I could find this information.

Or a good site that would have the information on it.

I really need to get this done. It抯 a big project worth lots of marks?br>

Its been over 6 weeks that I have been working on this and my teacher does not even know were I am right now, he can抰 help me anymore cause I surpassed him.

Sina at 2007-7-16 23:13:14 > top of Java-index,Java Essentials,Java Programming...
# 9
would it help if I posted the code?
Sina at 2007-7-16 23:13:14 > top of Java-index,Java Essentials,Java Programming...
# 10

> Ok um do you know were I could find this information.

Model-View-Controller:

[url=http://csis.pace.edu/~bergin/mvc/mvcgui.html]Building Graphical User Interfaces with the MVC Pattern[/url]

[url=http://java.sun.com/blueprints/patterns/MVC-detailed.html]Java BluePrints - Model-View-Controller[/url]

[url=http://www.javaworld.com/javaworld/jw-04-1998/jw-04-howto.html]MVC meets Swing[/url]

Patterns Overview:

[url=http://www.patterndepot.com/put/8/JavaPatterns.htm]The Design Patterns Java Companion[/url]

[url=http://www.wickedlysmart.com/HeadFirst/HeadFirstDesignPatterns/HeadFirstPatternsIndex.html]Head First Design Patterns[/url]

[url=http://home.earthlink.net/~huston2/dp/patterns.html]Huston Design Patterns[/url]

[url=http://www.mindspring.com/~mgrand/pattern_synopses.htm]Overview of Design Patterns[/url]

yawmarka at 2007-7-16 23:13:14 > top of Java-index,Java Essentials,Java Programming...
# 11
Ok reading this did help but I am still stuck that when I try to load the buttons I don't seen them, the disapear behind my images, because they are constantly being loaded.I can post the code if you want, if that would be of help.
Sina at 2007-7-16 23:13:14 > top of Java-index,Java Essentials,Java Programming...