<s:List>
次のように、リストアイテムを水平方向に表示しているリストがFlexアプリケーションにあります。
<s:List id="horzList">
<s:Layout>
<s:HorizontalLayout/>
</s:Layout>
<s:dataProvider>
<s:ArrayList>
<fx:String>Short Item</fx:String>
<fx:String>Looooonnnnggggeeerrrrr Item</fx:String>
<fx:String>A really, really, really long item for this list</fx:String>
</s:ArrayList>
</s:dataProvider>
</s:List>
イベントを使用してchange
、水平リスト内のこれらのアイテムの1つの幅を取得するにはどうすればよいですか?
お時間をいただきありがとうございます。