0
我需要創建一個圖庫來加載圖像並顯示它們。這部分是好的:在flex中加載圖像時添加加載器圖像
/**
* @variable image_name to store the name of the selected item
*/
private function showimage(evt:Event):void
{
// to store the name of the selected image
var image_name : String = evt.currentTarget.selectedItem.img_name;
// checks if any item is clicked
try
{
if(image_name == "")
{
throw new Error("No image selected from the list");
}
// supplying the image source for the Image imgmain
// also supplying the height and width for the image source
imgMain.source = siteurl + image_name.toString();
}
catch(err:Error)
{
Alert.show(err.message);
}
}
其中imgMain是圖像組件的id。
但是,我需要一個小小的轉折點。應該在加載圖像時顯示轉換圖像,即加載圖像。 Plz幫助我。