Create an object with your property and use appendChild to add it to your XML. 
http://livedocs.adobe.com/flex/3/langref/XML.html

--- In flexcoders@yahoogroups.com, j2me_soul <j2me_s...@...> wrote:
>
> I want to create a XMLList using e4x grammar like this:
> var list:XMLList  = 
> <Region>
>        <city> LA. </city>
>        <city> SF. </city>
>        ...
> </Region>;
>  
> function createList(nodeName:String, city:String):void{
> ...
> ...
> list += < nodeName > city </ nodeName >;
> }
>  
> but the list finally is look like this:
> <nodeName> city </nodeName>
> <nodeName> city </nodeName>
> ...
>  
> How can I create xmlList node and xmllist node content dynamically ?
>


Reply via email to