只需从 xml 加载 image1 和 image2 并将其放置在舞台上各自的 MC 中
这让我抓狂。我想要的应该非常简单,但他们似乎让它变得困难,而且论坛上的人们似乎有意给出复杂的答案。请帮忙提供一个简单的解决方案。
我有一个名为 userData.xml 的 XML,其中包含大量数据,如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<videos>
<vid src="videos/video1.flv"/>
<vid src="videos/video2.flv"/>
</videos>
<images>
<img src="images/image1.jpg"/>
<img src="images/image2.jpg"/>
</images>
我想做的就是(使用 AS3)获取 image1.jpg 并将其添加到 imageHolderOne_mc 并获取 image2.jpg 将其添加到 imageHolderTwo_mc。完全忽略 XML 的视频部分(必须保留用于其他用途)
我真的希望有人可以提供帮助 提前致谢
this is driving me nuts. What I want should be super simple but they seem to have made it dificult and people on forums seem intent on giving complicated answers. please help with a simple solution.
I have an XML with lots of data in called userData.xml that looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<videos>
<vid src="videos/video1.flv"/>
<vid src="videos/video2.flv"/>
</videos>
<images>
<img src="images/image1.jpg"/>
<img src="images/image2.jpg"/>
</images>
ALL I want to do is (using AS3) get image1.jpg and add it to imageHolderOne_mc and get image2.jpg add it to imageHolderTwo_mc. Completely ignoring the videos part of the XML (which must stay for other uses)
I realy hope someone can help
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看来自republicofcode的xml入门
以及如何动态加载图像 在 as3 中
基本上是这样的...
have a look at the xml primer from republicofcode
and how to load images dynamically in as3
basically something like...
尝试包装在根标签中。
e4x 标准/
根标签被忽略
因此,如果没有根标记,XML 解析器就会感到困惑。
访问数据时,您还将忽略根标签并且不引用它。
像这样访问。
Try wrapping in a root tag.
Root tags get ignored with e4x standard/
So by not having a root tag the XML parser gets confused.
When accessing the data you will also ignore the root tag and not refer to it.
Accessed like so.