0
我在mxml中有一個組件,它接受一個字符串作爲輸入,並且必須在當前文件夾中使用該字符串搜索圖像並將圖像顯示在HorizontalList中。ActionScript:在文件夾中搜索圖像
任何簡單的方法,我可以做到這一點?我嘗試追加字符串並查看絕對URL,但也不確定具體輸入的圖像數量。
我的電流分量代碼看起來是這樣的:
<s:Group ..>
<fx:Declarations>
<fx:String id="INPUT"/>
<fx:Declarations>
<fx:Script>
<![CDATA[
import ..;
private var arrColl:ArrayCollection;
private var arr:Array = [ "images/" + INPUT + "a.jpg",
"images/" + INPUT + "b.jpg", .. ];
private function initHList(items:Array):void
{
arrColl = new ArrayCollection(items);
myList.dataProvider = arrColl;
}
]]>
</fx:Script>
<mx:HorizontalList id="myList" .. columnCount="2" creationComplete="initHList(arr)"/>
</s:Group>
怎麼辦以使圖像網址更加動態並且(在上述情況下,而不是常數2)顯示可變數目的圖像在橫向列表中?