Load af variabler
Okay! Jeg har det her movieclip som henter variabler:loadVarsText = new LoadVars();
LoadVarsText.load("mysql.php");
loadVarsText.onLoad = function(success) {
if (success) {
_root.nyheder.nyheder_box.text = this.nyhed;
_root.presse.presse_box.text = this.presse;
_root.gæstebog.guestbook_box.text = this.guestbook;
_root.koncert.nextconcert.text = this.nextconcert;
_root.koncert.allekoncerter.text = this.allconcerts;
_root.tekst_1.tekst1.text = this.tekst1;
_root.tekst_2.tekst2.text = this.tekst2;
_root.tekst_3.tekst3.text = this.tekst3;
_root.sql_check = this.sql_checker;
} else {
trace("not loaded");
}
};
og så nogle movieclips som bruger disse variabler!
Men hvis jeg gerne vil have indlæst variablerne igen, hvad gør jeg så?
Problemet er at jeg har nogle bokse som skal komme frem, og de indeholder nogle text-fields som ikke skal modtage data før de popper up!