Código ActionScript :
this.loadVariables("instituto.txt");//leo el archivo externo txt
this.Up.onPress = function(){
Direccion = "up";
MoverTexto();
}
this.Down.onPress = function(){
Direccion = "down";
MoverTexto();
}
function MoverTexto(){
_root.onEnterFrame = function(){
if(Direccion == "up"){
mytext.scroll -= 1;
}else if(Direccion == "down"){
mytext.scroll += 1;
}
}
}
this.Down.onRelease = function(){
delete _root.onEnterFrame;
}
this.Up.onRelease = function(){
delete _root.onEnterFrame;
}
Otra cosita probe en lugar de onRelease por onRollOver pero no funciona, ayuda urgente!!!! Gracias
