ok so i have an image:
ImageBackgroundPanel temp =null;
temp = new ImageBackgroundPanel(friend);
frame.add(temp);
frame.setVisible(true);
where my variable "friend" is just a bufferedimage (temp is a wrapper class mostly). So, what i want is simple: i want that image to be put in a different place!
As the code is now, the image is put at the top left corner of the frame. how do i move it? how do i do this dynamically? (i wanna animate the image by redrawing it several times a second in a different position? I know how to animate it, how do you move it?!?!?!?!
Someone please help me :(...