开发者

How to embed a lot of images in the SWF?

开发者 https://www.devze.com 2023-03-24 14:43 出处:网络
I use several folders. Each have a dozens of pictures. All data is stored in XML. When I get a picture from a folder, I use code like this:

I use several folders. Each have a dozens of pictures. All data is stored in XML. When I get a picture from a folder, I use code like this:

var arrCardStrings:Array = [];
    for (var i:int = 0; i < activeCards.object.length(); i++)
    {
        var url:String = activeCards.object[i].@url;
        arrCardStrings.push(url);
    }
    imgLoader.loadImgs(arrCardStrings);

XML like this:

<?xml version="1.0" encoding="UTF-8"?>
<sharedObjects>
<objects id="0">
        <object url="art/images/10/0.jpg" id="0">   
        </object>

        <object url="art/images/10/1.jpg" id="1">
        </object>
</objects>
</sharedObjects>

I need to hide all pictures into SWF for its had no access from the folder开发者_Go百科 of my app. I can do this for a single picture, but what to do with a lot of images?

0

精彩评论

暂无评论...
验证码 换一张
取 消