J'ai oublié de mettre le code. Je l'ai pompé d'un exemple de livre d'or tout fait, posté sur ce site par
lwred
J'en profite pour lui dire merci!
stop();
this.xmlNews = new XML();
xmlNews.ignoreWhite = true;
this.xmlNews.load("xml/book.xml");
this.onEnterFrame = function ()
{
var _loaded2 = this.xmlNews.getBytesLoaded();
var _total2 = this.xmlNews.getBytesTotal();
if (_loaded2 == _total2)
{
this.onEnterFrame = undefined;
_global.vis = xmlNews;
gotoAndPlay(8);
}// end if
};