Hola amigos, estoy cargando el Menú a mi película mediante el AS 2.0
Código:
ASSetPropFlags(_global, "findTweenValue", 1, 0);
var myButtons = [menuu.b1, menuu.b2, menuu.b3, menuu.b4, menuu.b5, menuu.b6, menuu.b7];
var myPelis = ["presentacion/presentacion.swf", "trajes/trajes.swf", "pantalones/pantalones.swf",
"camisas/camisas.swf", "sacos/sacos.swf", "telas/telas.swf", "contacto/contacto.swf"];
FOTO2._alpha = 0;
menuu.b1.onRollOver = over;
menuu.b1.onRollOut = out;
menuu.b1.buttText.buttonText.text = "Presentación";
menuu.b2.onRollOver = over;
menuu.b2.onRollOut = out;
menuu.b2.buttText.buttonText.text = "Trajes";
menuu.b3.onRollOver = over;
menuu.b3.onRollOut = out;
menuu.b3.buttText.buttonText.text = "Pantalones";
menuu.b4.onRollOver = over;
menuu.b4.onRollOut = out;
menuu.b4.buttText.buttonText.text = "Camisas";
menuu.b5.onRollOver = over;
menuu.b5.onRollOut = out;
menuu.b5.buttText.buttonText.text = "Sacos";
menuu.b6.onRollOver = over;
menuu.b6.onRollOut = out;
menuu.b6.buttText.buttonText.text = "Telas";
menuu.b7.onRollOver = over;
menuu.b7.onRollOut = out;
menuu.b7.buttText.buttonText.text = "Contáctanos";
var mySwf;
var peliloader = new MovieClipLoader();
var pelilistener = new Object();
carga._visible = false;
var i = 0;
Sucede que cargaba bien con 6 menúes pero agregué "Sacos" y algo anda mal.
En la película principal de mi Flash hago los Movies vacíos para cargar el AS pero no me aparece "Sacos", está la SELECCION del Menú pero vacía, es decir, no se muestra el texto
¿qué podría hacer?
Saludos