Assigning Values to an XMLList : XMLList « XML « Flash / Flex / ActionScript






Assigning Values to an XMLList

 

package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){
        var doc:XML = <DOC TOPIC="Code Tips" AUTHOR="Colin">
            <P>Errors are your friends</P>
            <P>Backup often</P>
          </DOC>;
        
        doc.* = <P>Practice coding everyday</P>;
        trace(doc.*);

    }
  }
}

        








Related examples in the same category

1.To access the XMLList representing child nodes, use the XML class's instance method children( ).
2.To access a specific child in an XMLList
3.Treating XMLList as XML
4.To replace an XML element with new elements, we assign either an XMLList or XML object to that element
5.Converting XMLList to a String: toString( ) had been invoked on the single XML instance directly: