All you need is to set the scroll policy on B to be auto. This way, if A get's too large, B will have scroll bars. This should be done in the MXML.
<mx:Canvas name="B" width=100 height=100 scrollPolicy="auto">
<mx:Canvas name="A" width=90 height=90>
...
</mx:Canvas>
</mx:Canvas>
CookieOfFortune
2009-05-21 13:27:28