I have an image that doesn’t fill the <mx:Image> tag because it’s not the exact dimensions (it is too short) and I have maintainAspectRatio set to true:
<mx:Image id="theImage"
source="{data.photo_thumb}"
horizontalCenter="0"
verticalCenter="0"
width="100%"
height="100%"
bottom="0"
maintainAspectRatio="true"/>
The <mx:Image> tag has a fixed width and height (it’s 100% of the tile size–this is in an ItemRenderer). How do I get the image to sit on the bottom of the <mx:Image> tag?
verticalAlign="bottom"Sometimes I’m putting images in the
Boxes to achieve greater control.