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?
精彩评论