el primero de abajo hacia arriba tiene la siguiente acción para hacer scroll de texto:
Código:
Código :
/////////
stop();
// --
stopScroll = function () { sonidoScroll.stop();delete loop.onEnterFrame;this.texto.textColor = 0x000000;suena = undefined;};
// --
startScroll = function (texto, direccion) { loop.onEnterFrame = function() {if (texto.scroll == texto.maxscroll && direccion == 1 || texto.scroll == 1 && direccion<1) {sonidoScroll.stop();} else {if (!suena) {sonidoScroll.start(0, 999);suena = true;}}texto.scroll += direccion;};};
// --
subir_btn.onRollOver = function() {
this.texto.textColor = 0xff0000;
startScroll(miTextField, 1);
};
bajar_btn.onRollOver = function() {
this.texto.textColor = 0xff0000;
startScroll(miTextField, -1);
};
// --
subir_btn.onRollOut = bajar_btn.onRollOut=stopScroll;el layer del medio tiene el texto y el layer superior sobre ese segundo layer tiene una máscara sencilla...
cuando no tiene la acción el texto se ve, cuando la tiene se ve todo menos el texto mas si se ve los botones para hacer el scroll. ¿por qué?
saludos.-
usa las etiquetas code para postear tu codigo

Zguillez