|
|
|||
Flash Player 7
myTextEditor.getImages()
None
Returns
Array of objects with image properties .
Method; Returns properties of the images used in currently edited text field.
The following code displays image properties in the output window:
var imgProps:Array = myTextEditor.getImages();
for (var i in imgProps) {
for (var j in imgProps[i]){
trace(j + ": " + imgProps[i][j]);
}
trace("###########################");
}