Hola a todos.. seguí ionstrucciones pero no me funciona el ScrollBar.. el texto se queda quieto... la instrucción no funciona... ...
 
Tengo 2 capas
 
 En la capa 1 tengo:
- el "cuadro de texto": dinámico, multilinea, variable: texto
- Dos botones: con nombres de instancia "up" y "down" respectivamente
- En esta capa, en frame 1 tengo un "stop"
 
 En la capa 2 tengo el siguiente código:
this.loadVariables("parabola.txt");
this.up.onPress = function() {
Direccion = "up";
MoverTexto();
};
this.down.onPress = function() {
Direccion = "down";
MoverTexto();
};
function MoverTexto() {
_root.onEnterFrame = function() {
if (Direccion == "up") {
Texto.scroll -= 1;
} else if (Direccion == "down") {
Texto.scroll += 1;
}
};
}
this.Down.onRelease = function() {
delete _root.onEnterFrame;
};
this.Up.onRelease = function() {
delete _root.onEnterFrame;
};
 
 
En la misma carpeta, tengo el archivo parabola.txt
 
Graias por su ayuda!!! 
  
 
 
