Ver Mensaje Individual
  #2 (permalink)  
Antiguo 25/06/2004, 13:35
Avatar de TMeister
TMeister
Crazy Coder
 
Fecha de Ingreso: enero-2002
Ubicación: En la Oficina
Mensajes: 2.880
Antigüedad: 22 años, 3 meses
Puntos: 193
Código:
tuarray = new Array();
tuarray[0] = {label:"···· Seleccione ····", data:" "};
tuarray[1] = {label:"Europa", data:45};
tuarray[2] = {label:"España", data:45};
tuarray[3] = {label:"Galicia", data:75};
Combo1.setEditable(false);
Combo1.setDataProvider(tuarray);
Combo1.setChangeHandler("manejador");
function manejador(Combo1) {
	var rotulo = Combo1.getSelectedItem().data;
	if (rotulo.length>0) {
		_root.gotoAndPlay(rotulo);
	}
}
A veces lo mas simple es la mejor solucion!!

Saludos!!