在组件'Group'中我一次拖动多张图片我需要清理这个组件,但是包含一个组件BitmapImage并且我不会被删除:
<s:Group id="droppedImages" width="100%" height="100%">
<s:BitmapImage id="bg" source="@Embed('lineal2.jpg')" width="1024" height="577" verticalCenter="0"/>
</s:Group>
我这样做:
while (droppedImages.numChildren > 0) droppedImages.removeElementAt(0);
我尝试类似的事情:
while (droppedImages.numChildren > 1 ) {
if(droppedImages.getChildAt(0).name != 'bg'){
droppedImages.removeChildAt(0)
}
}
感谢您的帮助
答案 0 :(得分:0)
我看到的主要问题是你混淆了“孩子”和“元素”。它们不是兼容的数字。