Ver Mensaje Individual
  #7 (permalink)  
Antiguo 07/06/2003, 08:16
Avatar de kripton
kripton
 
Fecha de Ingreso: diciembre-2002
Ubicación: Zaragoza
Mensajes: 296
Antigüedad: 22 años
Puntos: 0
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((URLvector.get(posicion)));
        }
    }

    private 
void botonSiguiente_actionPerformed() {
        if (
posicion vector.size() - 1) {
            
posicion++;           
            
etiquetaImagen.setIcon(new ImageIcon((URLvector.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"));
    }


Cita:
Tan dificil es?
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