我想每隔3秒使用一次事件计时器来刷新List。我创建了事件计时器,但不知道刷新List的功能。 有没有人这样做过?
感谢您的帮助,谢谢
答案 0 :(得分:2)
您应该将List绑定到数据源(arrayCollection)。每当更新arrayCollection时,它都会自动刷新列表,例如
<mx:List dataProvider="{myAC}"/>
其中myAC是arrayCollection,可以更改为另一个arrayCollection。
Code samples,检查此行(“绑定到数组的部分”)
请注意,最好是绑定而不是像
那样list.datasource = anotherArrayCollection;