hola Basurdetxo:
la solucion que veo posible es crear 4 archivos
.txt a los que les daras el nombre de
miVariable1, miVariable2, miVariable3, miVariable4 dentro de cada archivo ira el nombre de la variable,
var1(dentro de miVariable1), var2(dentro de miVariable2).... y asi consecutivamente, luego en flash en las acciones de fotograma colocas este codigo:
Código:
var i:Number = 0;
this.onEnterFrame = function() {
if (i<=3) {
i++;
loadVariables("miVariable"+i+".txt", "");
bot1.onRollOver = function() {
variables = var1;
};
bot1.onRollOut = function() {
variables = "";
};
bot2.onRollOver = function() {
variables = var2;
};
bot2.onRollOut = function() {
variables = "";
};
bot3.onRollOver = function() {
variables = var3;
};
bot3.onRollOut = function() {
variables = "";
};
bot4.onRollOver = function() {
variables = var4;
};
bot4.onRollOut = function() {
variables = "";
};
trace(i);
}
};
espero esto te sea de mucha ayuda...
saludos
...