1

how can I access the value of a variable when writing XML code in AS3? something like this:

var myVar:Number = 3;

var xml:XML =
    <myXML>
        <valueOfMyVar>???</valueOfMyVar>
    </myXML>

what do I have to replace ??? with?

2 Answers 2

7

ActionScript 3.0 now treats XML as a native data type meaning its no longer parsed as a String. That does bring with it that the old methods of inserting variable values (e.g. “”+myValue+””) no longer apply.

Just take a look at the following snippet of code:

var myVar:Number = 3;

var xml:XML =
<myXML>
    <valueOfMyVar>{myVar}</valueOfMyVar>
</myXML>

That’s right, the curly braces notation from MXML. One difference though, this is not an active reference to the variable. If you change the value of the variable this will not update your XML (no, not even in Flex — this is pure AS3 code but you can of course define the XML structure in MXML and take advantage of its data binding features).

Also worth noting is that you don’t put quotes around the curly braces when you use it for an XML attribute, if you do that it’ll treat it as a String rather than eval’ing it. The XML object takes care of generating valid XML from it.

Sign up to request clarification or add additional context in comments.

Comments

0
var myVar:Number = 3;

var xml:XML =
    <myXML>
        <valueOfMyVar></valueOfMyVar>
    </myXML>

xml.valueOfMyVar[0] = myVar;

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.