请帮助您了解如何在 Flash 中的 List 组件的特定索引处删除列表项,因为我在 adobe docs 上找不到任何帮助。只提到了 addItem,所有其他适用于列表组件的方法,就像任何其他语言一样。
提前致谢。
请帮助您了解如何在 Flash 中的 List 组件的特定索引处删除列表项,因为我在 adobe docs 上找不到任何帮助。只提到了 addItem,所有其他适用于列表组件的方法,就像任何其他语言一样。
提前致谢。
您可以使用 Arraycollection 将您的数据与 Flash 中的 List 绑定。数组集合中发生的更改也将反映在列表视图中。您可以使用数据提供者的 addItem 和 removeItemAt(index),这将反映在您的 List VIew
[Bindable]var MyArr : ArrayCollection = new ArrayCollection() ;
Assign values to this arraycollection.....
<s:List x="170" y="146" dataProvider="{myArr}"></s:List>
use..
myArr.addItem("Hello"); // to add something
myArr.removeItemAt(0); // to remove something from a Array