1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
var texte="";
var style:TextFormat = new TextFormat("Arial",11,0x000000,true,false);
clip.test.autoSize = "left";
myXML = new XML();
myXML.ignoreWhite = true;
myXML.load("./fichier2.xml");
myXML.onLoad = function(flag) {
if (flag) {
i = 0;
x = myXML.firstChild;
while (x.childNodes[i] != undefined)
{
if (i == 2)
texte += (x.childNodes[i].childNodes[0].attributes.descr);
else
texte += ((x.childNodes[i].childNodes[0].attributes.descr) + " - ");
i++;
}
clip.test.text=texte;
clip.test.setTextFormat(style);
}
}
function infini(){
if (clip._x < 0-clip.test.textWidth){
clip._x = 644;
}
};
_root.onEnterFrame=infini; |
Partager