A ver ... Si podeis decidme si este codigo estaria bien teniendo en cuenta que texto es bio1, btarriba y btabajo el nombre de las variables de los botones :
function scrollTexto() {
_root.onEnterFrame = function() {
if (direccion == "arriba") {
bio1.scroll -= 1
} else if (direccion == "abajo") {
bio1.scroll += 1;
}
};
}
this.btarriba.onRelease = function() {
direccion="";
delete _root.onEnterFrame;
};
this.btabajo.onRelease = function() {
direccion="";
delete _root.onEnterFrame;
};
this.btabajo.onPress = function() {
direccion = "abajo";
scrollTexto();
};
this.btarriba.onPress = function() {
direccion = "arriba";
scrollTexto();
};
a ver si esto va !!