hi all,
to take the high scores and stuff on my games from php/mysql, i always used some POST vars generated by a php file. But now, i have to catch the GET vars in the url for another project and well … it doesn’t work and google didn’t help that much !
i have my page with a URL like http://www…./index.php?lang=fr
for example.
The only thing i want is catch the “fr” value inside flash.
I tried with something like :
___________________________________________________
var monChargement_lv = new LoadVars();
monChargement_lv.onLoad = function(success) {
if (success) {
score_max = monChargement_lv.lang;
}
};
monChargement_lv.load(“http://…index.php”, monChargement_lv, “GET”);
_____________________________________________________
but well, i get the super “undefined” value. if anyone got an idea, it would be great :D
thanks
pixtiz