Respuesta: efecto On mouse over Si quieres que cambie el color del texto y a la vez cargue una imagen de la Biblioteca tendrías que poner el código así:
btn1.onPress = function() {
_root.attachMovie("img", "img_a", this.getNextHighestDepth());
};
btn1.onRollOver = function() {
_root.btn2.gotoAndStop(1);
this.gotoAndStop(2);
};
Espero haberte sido de ayuda. |