Tienes que usar un poquito de sentido común.
No puedes utilizar las funciones para el botón, con el código que se pone directamente en el botón.
Este código no debería estar en el frame:
Código actionscript:
Ver originalon(rollOver){
mensaje.text = "Iscar";
}
on(rollOut){
mensaje.text = "";
}
El código deberías de escribirlo así:
Código actionscript:
Ver originalvar municipio="Íscar";
var codigo="m075";
this.onPress=function(){
this._parent._parent.press(this);
}
this.onRollOver=function(){
this._parent._parent.over(this);
mensaje.text = "Iscar";
}
this.onRollOut=this.onDragOut=function(){
this._parent._parent.out(this);
mensaje.text = "";
}
this.onRelease = function() {
getURL("http://www.elegimos.org", _blank);
}
Espero haberte sido de ayuda.