Aqui dejo mi codigo para ve si se puede hacer algo.
Código:
this.loadVariables("instituto.txt");//aquí pones el nombre de tu archivo.txt this.Up.onRollOver = function(){ Direccion = "up"; MoverTexto(); } this.Down.onRollOver = function(){ Direccion = "down"; MoverTexto(); } function MoverTexto(){ _root.onEnterFrame = function(){ if(Direccion == "up"){ mytext.scroll -= 1; }else if(Direccion == "down"){ mytext.scroll += 1; } } } this.Down.onRollOut = function(){ delete _root.onEnterFrame; } this.Up.onRollOut = function(){ delete _root.onEnterFrame; }