Ver Mensaje Individual
  #4 (permalink)  
Antiguo 28/06/2004, 08:50
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
Ahora si...

prueba

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(component) {
	rotulo = component.getSelectedItem().data;
	if (rotulo>0) {
		trace(rotulo);
		_root.gotoAndPlay(rotulo);
	}
}
Saludos!!