Forum de discussion
Forum « Flash et Shockwave » (archives)
pb interaction php/flash
Envoyé: 30 août 2004, 15h42 par nitneuq
je suis en train de créér un jeu, mais g un probleme avec la communication php/flash.
flash appelle php ki renvoie des coordonnées d'objets à placer sur la scene
php sort ca :
&option51=0&taupe_x=50&taupe_y=50&obstacle0_x=340&obstacle0_y=121&obstacle1_x=99&obstacle1_y=94&obstacle2_x=252&obstacle2_y=316
etc
b8 est mon heros
b10 à b20 sont des obstacles
function disposer(c) {
this.b8._x = _root.ecran.taupe_x;
this.b8._y = _root.ecran.taupe_y;
this.b8.dx = 3;
this.b8.dy = 0;
var tb = [];
for (var j = b_min; j < b_max; j++) {
this["b" + j]._x = _root.ecran["obstacle"+j+"_x"];
this["b" + j]._y = _root.ecran["obstacle"+j+"_y"];
}
}
je veux mettre mes objets b10 à b20 aux coordonnées fournies par el script php mais ca marcheu paa
please help ca fait longtemps ke je reflechis au probleme ss trouver le bug.
ps : les valeurs bmin et bmax sont 10 et 20, et le loadVariables est ss ste forme :
_root.ecran.loadVariables("fichier.php","","POST")
le LoadVars est une image clé avant, et il ne passe à l'image cuorante que s'il a recu une certaine variable du fichier php.
Réponses
|