I have a canvas and a few controls within the canvas. On of these is an
image.
Essentially, what I want is that the image appear towards the bottom of
the canvas, so what I do is this
<mx:Image id="myImage" top="{containerCanvas.height -
myImage.height}" />
This works, except that when the canvas is sized to a different size it
looks like I have a slow motion effect in place. It takes quite a few
seconds (3-10) depending on the difference between the old and new
height of the canvas.
So is there a way to speed this up?