xmlの「ノード」に何かが含まれているかどうかを知る方法は不思議でした。下の最初の2つの<note>
ノードには<chord></chord>
ノードが含まれていますが、最後のノードにはノードが含まれているかどうかを確認する方法がありません。Actionscript 3 and XML
<note><chord></chord>
<pitch><step>C</step>
<alter>1</alter>
<octave>5</octave>
</pitch>
<duration>1</duration>
<voice>1</voice>
<type>quarter</type>
<notations><dynamics><f></f>
</dynamics>
<technical><string>2</string>
<fret>2</fret>
</technical>
</notations>
</note>
<note><chord></chord>
<pitch><step>G</step>
<alter>1</alter>
<octave>5</octave>
</pitch>
<duration>1</duration>
<voice>1</voice>
<type>quarter</type>
<notations><dynamics><f></f>
</dynamics>
<technical><string>1</string>
<fret>4</fret>
</technical>
</notations>
</note>
<note><pitch><step>A</step>
<octave>5</octave>
</pitch>
<duration>1</duration>
<voice>1</voice>
<type>quarter</type>
<notations><dynamics><f></f>
</dynamics>
<technical><string>1</string>
<fret>5</fret>
</technical>
</notations>
</note>
おかげで、より良い方法のように思えます – james