Jason,

>
> Why not oNode.value = 1.54; and for attributes [EMAIL PROTECTED]

That statement set's an element node, or attribute of the node, and
produces the following XML. You can try it if you want =)
cheers,
Thunder
__________________________________
 
   var oNode:XML = <value>1.54</value>;
 
   // assign the "value" property of the node
   oNode.value=1.77;
   [EMAIL PROTECTED];

   trace(oNode.toString()); 
// outputs: 
/*
<value value="1.88">
  1.54
  <value>1.77</value>
</value>
*/







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to