我想在我的应用程序中相对放置一个滚动条,如下所示。当我缩放图像时,我会调整滚动条的大小......
<s:Scroller width="50%" height="50%" >
<s:Group>
<mx:Image
id="img"
source="sample.jpg"
/>
</s:Group>
</s:Scroller>
如果我像下面那样为滚动条设置绝对尺寸,它不会调整大小(我想要的行为)
<s:Scroller width="400" height="400" >
<s:Group>
<mx:Image
id="img"
source="sample.jpg"
/>
</s:Group>
</s:Scroller>
..但我的意图是相对于其他组件定位滚动条。任何解释/解决方案?