Hola chikatilo!!!
Ahi va algo de código que puede ayudarte.
Código PHP:
import javax.swing.*;
import java.applet.Applet;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import java.util.Vector;
import java.net.URL;
public class Pruebas extends Applet {
private JLabel etiquetaImagen;
private JButton botonAtras;
private JButton botonSiguiente;
private Vector vector = new Vector();
private int posicion = 0;
public void init() {
super.init();
llenarVector();
etiquetaImagen = new JLabel(new ImageIcon(getClass().getResource("/imagen1.GIF")));
this.add(etiquetaImagen);
botonAtras = new JButton("<<");
this.add(botonAtras);
botonSiguiente = new JButton(">>");
this.add(botonSiguiente);
botonAtras.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
botonAtras_actionPerformed();
}
});
botonSiguiente.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
botonSiguiente_actionPerformed();
}
});
}
private void botonAtras_actionPerformed() {
if (posicion > 0) {
posicion--;
etiquetaImagen.setIcon(new ImageIcon((URL) vector.get(posicion)));
}
}
private void botonSiguiente_actionPerformed() {
if (posicion < vector.size() - 1) {
posicion++;
etiquetaImagen.setIcon(new ImageIcon((URL) vector.get(posicion)));
}
}
private void llenarVector() {
vector.add(getClass().getResource("/imagen1.GIF"));
vector.add(getClass().getResource("/imagen2.GIF"));
vector.add(getClass().getResource("/imagen3.GIF"));
vector.add(getClass().getResource("/imagen4.GIF"));
}
}
No es que sea dificil, pero tampoco es trivial y no siempre tenemos tiempo para dedicarnos en exclusia a contestar en los foros
Un saludete,
kripton