Ho,
how can I recursively analyze/modify XML in Flex / As3?
Let's say I have this XML:
<div>
<P ALIGN="center">
<FONT FACE="ArialV" SIZE="15" COLOR="#000000" LETTERSPACING="0" KERNING="1"> </FONT>
</P>
<P ALIGN="center">
<FONT FACE="ArialV" SIZE="12" COLOR="#000000" LETTERSPACING="0" KERNING="1">Copyright 2010555</FONT>
</P>
</div>
How can I find/change, let's say all 'font' tags that have 'size' attribute and multiply it by 2 (no matter where it is)?
Thanks in advance!