Hello !
First some explanation of my problem :
I have a xml file with some elements. I need to create a movieclip for each of these element.
The name of the movieclip should be different for each.
var lists:XML = new XML( evt.target.data );
var forums:XMLList = lists.elements();
var forum_name = 0;
var container_name:Array = new Array();
for each(var forum:XML in forums)
{
forum.TITLE = new MovieClip();
}
and of course, this don’t work ! Try to find some tips on the web, but nothing…
Thanks !