=S intente todo, agarre lo que me dijeron los dos, y lo unico que hace es cuando vuelvo a entrar al index, dejarme en el ComboBox seleccionado el pais que ya habia elegido. Les muestro mi código:
Código action:
Ver originalcombo.setStyle("themeColor","haloBlue");
combo.setStyle("backgroundColor",0xE0E1DD);
combo.setStyle("color",0x4d4f53);
combo.dropdown.setStyle("borderStyle", "solid");
combo.dropdown.setStyle("borderColor", 0x4d4f53);
combo.dropdown.setStyle("backgroundColor",0xFFFFFF );
combo.dropdown.setStyle("color",0x000000);
import mx.transitions.easing.*;
combo.setStyle("rollOverColor", 0xC3E7F5);
combo.setStyle("selectionColor", 0xFFFFFF);
combo.setStyle("textSelectedColor", 0x4d4f53);
combo.setStyle("textRollOverColor", 0x4d4f53);
combo.setStyle("fontFamily", "arial");
combo.setStyle("fontSize", 11);
combo.setStyle("openEasing", Bounce.easeOut);
alerta_mc._visible=false;
ok_btn.onRelease = function() {
if(combo.selectedIndex == 0){
alerta_mc._visible=true;
}
else if(combo.selectedIndex == 1){
alerta_mc._visible=false;
getURL("arindex.html", "_self");
} else if (combo.selectedIndex == 2) {
alerta_mc._visible=false;
getURL("uruindex.html", "_self");
}
}
arg_mc._visible=false;
uru_mc._visible=false;
combo.addEventListener("change", vista);
function vista () {
if (combo.selectedIndex == 1) {
arg_mc._visible=true;
uru_mc._visible=false;
} else if (combo.selectedIndex == 2) {
uru_mc._visible=true;
arg_mc._visible=false
}
}
var miCookie = SharedObject.getLocal("cookieLocal");
myCheck.addEventListener("click", fncGuardar);
function fncGuardar(){
miCookie.data.datoCookie = combo.text;
miCookie.flush();
}
combo.addEventListener("change", fncGuardar);
if(miCookie.data.datoCookie!=undefined){
combo.text = miCookie.data.datoCookie;
}
if(miCookie == "Argentina"){
getURL("argindex.html", "_self");
} else if (miCoockie == "Uruguay") {
getURL("uruindex.html", "_self");
}