Je dois créer une galerie pour charger des images et les afficher. Cette partie est bien :
/**
* @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);
}
}
où imgMain est l'identifiant du composant image.
Mais, j'ai besoin d'un petit coup de pouce. Une image de transition, c'est-à-dire une image de chargement, doit être affichée pendant le chargement de l'image. Aidez-moi, s'il vous plaît.