Hola, ojalá puedan ayudarme, resulta que en un código de un ménú donde tengo 3 botones y tres campos de texto, quiero hacer que cuando presiono un boton , aparezca el campo correspondiente, y desaparezcan los otros 2. tengo el siguiente código que funcióna con la propiedad mc._x, es decir, si uso esta propiedad el codigo sirve, los cuadros de texto se desplazan de x=0 a x= 100, pero si reemplazo mc._x por mc.alpha, no me funciona, donde esta mi error?
Codigo (este es el que si funciona):
sumarA = -5;
bot_reing.enabled=false;
bot_analisis.onRelease = function() {
var p=false
this.enabled = false
tx_analisis.onEnterFrame = function() {
//sacar pagina
if (tx_reing._x >0) {
tx_reing._x += sumarA;
} else if (tx_apoyos._x >0){
tx_apoyos._x += sumarA;
}
//meter pagina
this._x += sumarA*-1;
if (this._x>99) {
bot_reing.enabled=true;
bot_apoyos.enabled=true;
if(!p){
p=true
this.onEnterFrame=null
}
}
};
};
bot_reing.onRelease = function() {
var p=false
this.enabled = false
tx_reing.onEnterFrame = function() {
//sacar pagina
if (tx_analisis._x >0) {
tx_analisis._x += sumarA;
} else if (tx_apoyos._x >0){
tx_apoyos._x += sumarA;
}
//meter pagina
this._x += sumarA*-1;
if (this._x>99) {
bot_analisis.enabled=true;
bot_apoyos.enabled=true;
if(!p){
p=true
this.onEnterFrame=null
// acomodar pag saliente
}
}
};
};
bot_apoyos.onRelease = function() {
var p=false
this.enabled = false
tx_apoyos.onEnterFrame = function() {
//sacar pagina
if (tx_reing._x >0) {
tx_reing._x += sumarA;
} else if (tx_analisis._x >0){
tx_analisis._x += sumarA;
}
//meter pagina
this._x += sumarA*-1;
if (this._x>99) {
bot_analisis.enabled=true;
bot_reing.enabled=true;
if(!p){
p=true
this.onEnterFrame=null
// acomodar pag saliente
}
}
};
};