El código que utilizo es el siguiente:
btn_1.onRollOver = function() {
_root.linea.gotoAndStop("l1");
_root.linea.gotoAndPlay("a1");
};
//Al quitar el mouse del btn principal prentendo sacar los subBotones pero algo esta MAL
btn_1.onRollOut = function() {
var bt = _root.btn_11.onRelease;
if (bt=="True")
{
_root.linea.gotoAndStop("sincambio");
}
};
//Al quitar el mouse de los SubBotones prentendo sacar los Mismos pero algo esta MAL
btn_11.onRollOut = function() {
_root.linea.gotoAndStop("sincambio");
};
Desde ya muchas gracias.
