誰かが助けてくれることを願っています。次のように宣言されたグラフィックを持つ Flex (4.5/Air) アプリがあります。
<s:Graphic id="viewRect" width="200" height="200">
<s:Rect id="border" width="200" height="200">
<s:stroke >
<s:SolidColorStroke weight="1" color="#606060" />
</s:stroke>
</s:Rect>
<s:Ellipse id="upperLeftHandle" height="8" width="8" left="-2" top="-2" >
<s:fill>
<s:SolidColor color="#FFFFFF"/>
</s:fill>
</s:Ellipse>
</s:Graphic>
プログラムでグラフィックのサイズを変更すると、境界線 (Rect) と楕円 (upperLeftHandle) もスケーリングされます。グラフィック オブジェクトのサイズを変更する必要がありますが、Rect と Ellipse (および Graphic 内のその他のもの) は同じ縮尺のままです。
誰にもアイデアはありますか?