如何在位图中加载多于一张图像(Flex)

发布于 2024-09-26 09:04:17 字数 860 浏览 2 评论 0原文

我无法从

function processXML(e:ResultEvent):void 
    {
        myXML = e.result as XML;
        for (var i:Number=0;i<myXML.icon.length();i++)//amout of urls.Now there tree elements
           {
              loader.load( new URLRequest(myXML.image[i].imageURL.toString()));   //get url             
           }
    }

有 event.COMPLETE 功能的

private function handleLoadComplete( e:Event ):void

           {


              var bmp:Bitmap = ( e.target as LoaderInfo ).content as Bitmap;
           imgColl.addItem(bmp); //sore elements
           Alert.show("load complete");//scheck for loadin
           img.source = imgColl.getItemAt(1) as Bitmap; // ERROR Store only one element

url

<mx:Image id="img" width="20" height="20"/> 

下载多于一张图像我做错了什么?

i can't download more then one image from url

function processXML(e:ResultEvent):void 
    {
        myXML = e.result as XML;
        for (var i:Number=0;i<myXML.icon.length();i++)//amout of urls.Now there tree elements
           {
              loader.load( new URLRequest(myXML.image[i].imageURL.toString()));   //get url             
           }
    }

there is event.COMPLETE function

private function handleLoadComplete( e:Event ):void

           {


              var bmp:Bitmap = ( e.target as LoaderInfo ).content as Bitmap;
           imgColl.addItem(bmp); //sore elements
           Alert.show("load complete");//scheck for loadin
           img.source = imgColl.getItemAt(1) as Bitmap; // ERROR Store only one element

MXML file

<mx:Image id="img" width="20" height="20"/> 

What i'm doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

随波逐流 2024-10-03 09:04:17

您需要为每个并发请求使用单独的加载器。

文档中并没有明确说明这一点,但它确实这么说:

Loader 类重写它继承的以下方法,因为 Loader 对象只能有一个子显示对象,即它加载的显示对象。调用以下方法会引发异常:addChild()、addChildAt()、removeChild()、removeChildAt() 和 setChildIndex()。要删除加载的显示对象,必须从其父 DisplayObjectContainer 子数组中删除 Loader 对象。

You need to use separate loaders for each concurrent request.

It's not explicitly clear from the docs, but it does say this:

The Loader class overrides the following methods that it inherits, because a Loader object can only have one child display object—the display object that it loads. Calling the following methods throws an exception: addChild(), addChildAt(), removeChild(), removeChildAt(), and setChildIndex(). To remove a loaded display object, you must remove the Loader object from its parent DisplayObjectContainer child array.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文