Update i loadvars
Vil gerne kunne opdatere nogle variabler ud ved at have 2 knapper som loader variablerne på ny. Men der sker ikke en opdatering af dem når jeg prøver nedenståedendeKnap 1:
load1 = new LoadVars();
load1.load("menu.php?knap=1");
load1.base = this;
load1.onLoad = function(success) {
if (success) {
trace("done loading");
this.base.id1 = this.id1;
this.base.id2 = this.id2;
this.base.id3 = this.id3;
};
}
Knap 2:
load2 = new LoadVars();
load2.load("menu.php?knap=1");
load2.base = this;
load2.onLoad = function(success) {
if (success) {
trace("done loading");
this.base.id1 = this.id1;
this.base.id2 = this.id2;
this.base.id3 = this.id3;
};
}
