Help needed in designing dynamic images

Hi,

I just posted a thread before, but there is something wrong in that post.

Any ways, I am new to Java and am trying to design a GUI which has images, which change dynamically. One of the examples is on this webpage

http://images.google.com/imgres?imgurl=http://www.snapstream.com/images/blog/godzilla/overheating_max_cpu_tn.jpg&imgrefurl=http://blogs.snapstream.com/2006/01/18/godzilla-pvr/&h=516&w=683&sz=80&hl=en&start=3&tbnid=huDY6gDdtS_o-M:&tbnh=105&tbnw=139&prev=/images%3Fq%3DCPU%2Btemperature%26gbv%3D2%26svnum%3D10%26hl%3Den%26sa%3DG

I need help desperately. I would appreciate, if you can help me. What do i need to use? Can it be done by using Swing? Are there any good examples of it on web? I am basically not clear, what do I need to use...

waiting for your reply. thanks in advance.

Ankit

[890 byte] By [usc_trojana] at [2007-11-27 7:37:16]
# 1
this can be done with swing
calvino_inda at 2007-7-12 19:17:51 > top of Java-index,Java Essentials,Java Programming...
# 2
Do you have any examples online? I am trying to look at it, but cant find much !!
usc_trojana at 2007-7-12 19:17:51 > top of Java-index,Java Essentials,Java Programming...
# 3
consider you have a JFrame called "frame"what you can do:JLabel lab = new JLabel("../firstPic.jpg");frame.getContentPane().add(lab);then, each time you will call "setIcon()" on the lab and refresh the frame it will display a new picture
calvino_inda at 2007-7-12 19:17:51 > top of Java-index,Java Essentials,Java Programming...
# 4
Great !!! I am trying to implement this !! Thank you buddy..i really appreciate it !! But I guess, I will return to this thread again....coz i would need more help..
usc_trojana at 2007-7-12 19:17:51 > top of Java-index,Java Essentials,Java Programming...