Bonjour à tous,

J'ai un big Mega Supra problème ! Smiley bawling

J'ai fais une galerie image en flash avec un XML. Tout fonctionne nikel sauf sur IE où d'après mes recherches c'est un problème de cache et interprétation du XML.

Le site se trouve http://news.ajmage.com/hypnotised/gallery.html

Mon action script est le suivant ;
Stage.align = "TL";
Stage.scaleMode = "noScale";
System.useCodepage = false;
var fsGallery;

function ChContent()
{
    this.attachMovie("contentGlobal_mc", "contentGlobal", 120);
    contentGlobal._y = 200;
    contentGlobal._x = Math.round(Stage.width / 3);
} // End of the function

fsGallery = this.attachMovie("$fsGallery", "$fsGallery", 10, {$activated: true, $XMLFile: "_xml/data.xml", $thumbNailMc: "thumb", $imgContainerMc: "imgContainer", $imgMc: "img", $loadingBarMc: "loadingBar", $descriptionMc: "desc"});
trace($XMLFile);
this.attachMovie("info_mc", "info_mc", 20);
info_mc._alpha = 0;
info_mc._x = 0;
info_mc._y = Math.round(Stage.height - info_mc._height);
info_mc.textInfo_mc._x = Math.round(Stage.width / 2 - info_mc.textInfo_mc._width / 2);
info_mc.BGtextInfo_mc._width = Stage.width;
_level0.BackMenuBtn.onRollOver = function ()
{
    _level0.BackMenuBtn.anim_mc.gotoAndPlay(2);
    this._alpha = 100;
};
_level0.BackMenuBtn.onRollOut = function ()
{
    _level0.BackMenuBtn.anim_mc.gotoAndPlay(1);
    this._alpha = 60;
};
_level0.BackMenuBtn.onPress = function ()
{
    _level0.$fsGallery.removeMovieClip();
    _level0.info_mc.removeMovieClip();
    this.removeMovieClip();
    unhide();
};


J'ai voulu remplacer ceci :
$XMLFile: "_xml/data.xml",
par
$XMLFile: "_xml/data.xml?rnd"+Math.random(),
pour simuler un nouveau xml mais ma galerie ne s'affiche plus alors. Smiley decu

Si quelqu'un a une idée... car je deviens Smiley biggol ...

Merci,

AJmage