Voila l'histoire, je souhaite répartir sur le root une phrase décomposée mot à mot...mais ce tout ptit bout de code me stress...ca marche pas visiblement, une suggestion ?
----------------------------
ma_str = "ta mere en short";
mon_array = new Array();
mon_array = ma_str.split(" ");
for (i=0;i==mon_array.length;i++) {
_root.createTextField("texte"+i,i+2,random(100),random(100),400,200);
["texte"+i]text = mon_array[i];
["texte"+i]setTextFormat(monFormat);
monFormat = new TextFormat();
monFormat.color = 0x000000;
}
---------------------------