夥計們,的Flex-的ActionScript: - XML解析
我有以下在ActionScript xml
。
var xml:XML = <Top>
<Component>
<type>Button</type>
<id></id>
<width>50</width>
<height>20</height>
<x>0</x>
<y>0</y>
</Component>
<Component>
<type>Label</type>
<id></id>
<width>30</width>
<height>10</height>
<x>0</x>
<y>0</y>
</Component>
</Top>;
現在,我想讀/解析該XML字符串,然後生成根據其各自的特性Flex控件(即按鈕,標籤)。
如何做到這一點?
謝謝。
燦我們在一些arraycollection/dictionary中以名稱 - 值對的形式進行存儲?我無法做到這一點...... –
啊,它很好地轉換xml。然後你有o.Top.Component.getItemAt(index)將是一個對象(這是一個名稱 - 值對基本上) –
你是天才的人! Flex-guru :) ..你的soln工作順利。從我+1和接受這個答案。再次感謝 :) –