Here is my issue. I have a canvas with a mouseOver and mouseOut
transition that resizes the height of the canvas. This works, except
when you move the mouse over the canvas inside (insideCanvas) it throws
the mouseOut command and shrinks the canvas back down. How do I catch
the fact that it is still "inside" the main canvas (mainCanvas) and not
stop it from running the mouseOut event?
<mx:Canvas id="mainCanvas" x="0" y="0" width="774" height="77"
mouseOver="mainCanvasOver('Metrics');" mouseOut="mainCanvasOut
('Metrics');">
<mx:Canvas id="insideCanvas" x="2" y="15" width="200" height="55"
borderStyle="solid" borderThickness="1" borderColor="#c0c0c0"/>
</mx:Canvas>