vote up 1 vote down star
/* I start with this: */

<Report>
    <prop1>4</prop1> 
    <prop2>2255</prop2> 
    <prop3>true</prop3> 
    <prop4>false</prop4> 
    <prop5>true</prop5> 
</Report>

/* I want this result (change the value of node "prop5"): */

<Report>
    <prop1>4</prop1> 
    <prop2>2255</prop2> 
    <prop3>true</prop3> 
    <prop4>false</prop4> 
    <prop5>false</prop5> 
</Report>

/* I tried this: */

var reportXML:XML = 
    <Report>
        <prop1>4</prop1> 
        <prop2>2255</prop2> 
        <prop3>true</prop3> 
        <prop4>false</prop4> 
        <prop5>true</prop5> 
    </Report>;

var myArray:Array = [{xmlNodeName: "prop5", value: false}];

for each (var item:Object in myArray)
{
    report.xml[item.xmlNodeName] = item.value.toString();
}

/* But this just adds a new node, resulting in this: */

<Report>
    <prop1>4</prop1> 
    <prop2>2255</prop2> 
    <prop3>true</prop3> 
    <prop4>false</prop4> 
    <prop5>true</prop5> 
    <prop5>false</prop5> 
</Report>;
flag

70% accept rate

3 Answers

vote up 1 vote down check

This seems to be doing exactly what you want. It's just your code with some typos fixed.

		var reportXML:XML = 
			<Report>
				<prop1>4</prop1> 
				<prop2>2255</prop2> 
				<prop3>true</prop3> 
				<prop4>false</prop4> 
				<prop5>true</prop5> 
			</Report>;

		var myArray:Array = [{xmlNodeName: "prop5", value: false}];

		for each (var item:Object in myArray)
		{
			reportXML[item.xmlNodeName] = item.value.toString();
		}

		trace(reportXML);
link|flag
I'll give you credit for this one.... I've got it working now. Both in pseudo code and real code. Thanks. – Eric Belair Dec 3 '08 at 21:30
vote up 0 vote down

I just verified that this works:

private var reportXML:XML = 
    <Report>
        <prop1>4</prop1>
        <prop2>2255</prop2>
        <prop3>true</prop3>
        <prop4>false</prop4>
        <prop5>true</prop5>
    </Report>;

private function changeXML():void {
    reportXML.prop5[0] = 'false';
    trace(reportXML.prop5);  // traces 'false'
}
link|flag
This still does not answer my original question. Look at my original example - I want this to be DYNAMIC. I have an Array of Objects that specify the nodes to be updated. My whole purpose in posting this is to find a way to not have to hardcode "prop5" into my application. – Eric Belair Nov 18 '08 at 16:48
vote up -1 vote down

Using E4X syntax in ActionScript 3 I guess that would be something like:

report.prop5[0] = false;
link|flag
This didn't work either. This created a new node with a different namespace (the namespace was based on the name of the class I was in). – Eric Belair Nov 17 '08 at 16:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.