Porque si el boton esta visible antes de cargar el xml entonces si le das click no te llevara ningun lado la web ya que el xml aun no carga la direccion , por eso el boton vuelve visible (
boton_btn._visible = true;)cuando carga la url:
Código:
obj_xml.onLoad = function(exito) {
if (exito) {
boton_btn._visible = true;
liga_a_google = String(obj_xml.firstChild.childNodes[0].firstChild.nodeValue);
varURL1.text = obj_xml.firstChild.childNodes[0].firstChild.nodeValue;
} else {
varURL1.text = "Error";
}
};