18/11/2006, 10:56
|
| Moderador | | Fecha de Ingreso: julio-2003 Ubicación: Lima - Perú
Mensajes: 16.726
Antigüedad: 21 años, 4 meses Puntos: 406 | |
Hola byzard:
Coloca los 3 botones en el escenario con los nombres de instancia: btn1, btn2 y btn3.
Crea un campo de texto dinámico con var: variables.
Crea un archivos .txt y lo guardas como: mi_texto:
&var1=pedro&
&var2=juan&
&var3=jose&
En el primer frame de tu película coloca éste código:
this.loadVariables("mi_texto.txt");
bot1.onRollOver = function() {
variables = var1;
};
btn1.onRollOut = function() {
variables = "";
};
btn2.onRollOver = function() {
variables = var2;
};
btn2.onRollOut = function() {
variables = "";
};
btn3.onRollOver = function() {
variables = var3;
};
btn3.onRollOut = function() {
variables = "";
};
Espero haberte sido de ayuda
.
Última edición por Bandit; 18/11/2006 a las 11:15 |