无法卸载 XML 库中的内容 - AS3
我有一个 XML 库,我希望在下一步按钮功能中“卸载”所有内容并加载新的 XML 文件。
到目前为止,我使用此代码:
function navigateToRight(evt:MouseEvent):void{
if (thumbsHolder.numChildren > 0){
while (thumbsHolder.numChildren) {
thumbsHolder.removeChildAt(0);
}
removeloaded();}
loadXml("2.xml");
}
其中 removeloaded
函数是 loader.unload();
不幸的是,当我按下一步按钮时,我可以看到新的 xml 文件已加载,但项目是来自之前的 xml 文件。
I have an XML gallery and I want in the next button function to "unload" all content and load new XML file.
So far I use this code:
function navigateToRight(evt:MouseEvent):void{
if (thumbsHolder.numChildren > 0){
while (thumbsHolder.numChildren) {
thumbsHolder.removeChildAt(0);
}
removeloaded();}
loadXml("2.xml");
}
Where removeloaded
function is loader.unload();
Unfortunately when i press next button I can see the new xml file is loaded but the items are from the previous xml file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决方案成立!
每次加载新的 XML 文件时,我都必须重新声明保存 XML 对象的数组。
Solution founded!
I had to re-declare the Array that holds my XML objects everytime I load a new XML file.