Flash Player 7
myImageSatellite.caption : String
Use this property to change image caption text in the runtime.
The following code will change image caption to "myImage"
ImageSatellite.caption = "myImage";
Flash Player 7
myImageSatellite.load(url:String)
Nothing.
Method; loads the image inside ImageSatellite.
The following code will load image inside ImageSatellite component:
myImageSatellite.load("http://flashloaded.com/myImage.jpg");
Flash Player 7
myImageSatellite.setCaptionFormat(obj:Object)
Nothing.
Method; allows changing of caption format.
The following code will make caption text red with size 12:
myImageSatellite.setCaptionFormat({
color:0xff0000,
size:12
});