如何重用通过 AS3 的 loader() 加载到 Flash 中的图像
我使用加载器对象在 Flash 中显示外部图像,然后使用 addchild() 以及整个过程。我想知道如果可能的话,如何将同一个孩子添加到另一个影片剪辑中。到目前为止,当我这样做时,它不再出现在原始影片剪辑中。有没有一种方法可以让我通过从同一个源中提取图像来显示图像两次,就像使用 html、css 一样?
我是否必须使用 bitmapdata 对象来实现这样的目的?我正在阅读它,但我什至看不到它的目的。
谢谢你们!
I'm displaying an external image in Flash with the loader object, and then addchild() and that whole thing. Im wondering how, if possible, I could then add that same child to another movie clip. So far, when i do, it doesn't show up in the original movie clip anymore. Is there a way for me to display an image twice by pulling it from the same source like you would do with html,css?
Do i have to use the bitmapdata object for something like this? Im reading about it and I cant even see the purpose for it.
Thanks guys!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这就是要走的路。基本上创建一个使用相同
BitmapData
的新Bitmap
。这是一个例子:Yes, that's the way to go. Basically create a new
Bitmap
that uses the sameBitmapData
. Here's an example: