23/10/2006, 10:17
|
| Moderador | | Fecha de Ingreso: julio-2003 Ubicación: Lima - Perú
Mensajes: 16.726
Antigüedad: 21 años, 4 meses Puntos: 406 | |
Al campo de texto dinámico le pones como nombre de instancia: eventos_txt y su variable: texto.
Crea 2 botones y al ponerlo al costado derecho del campo de texto le pones como nombre de instancia: BtnAbajo y BtnArriba.
En la capa 2 frame 1 éste código:
loadVariablesNum("mi_texto.txt", 0);
_root.BtnAbajo.onRollOver = function() {
abajo("presionado");
};
_root.BtnAbajo.onRollOut = function() {
abajo("");
};
_root.BtnArriba.onRollOver = function() {
arriba("presionado");
};
_root.BtnArriba.onRollOut = function() {
arriba("");
};
function abajo(estado) {
onEnterFrame = function () {
if (estado == "presionado") {
_root.eventos_txt.scroll += 1;
} else {
}
};
}
function arriba(estado) {
onEnterFrame = function () {
if (estado == "presionado") {
_root.eventos_txt.scroll -= 1;
} else {
delete (this.onEnterFrame);
}
};
}
Para mover el scroll solamente pones el mouse en los botones.
Espero haberte sido de ayuda.
Última edición por Bandit; 24/10/2006 a las 19:14 |