我想在下面的應用程序中放置相對較大的滾動條。 當我縮放圖像,我調整滾動...在滾動條中縮放圖像時,將相對尺寸設置爲滾動條時調整滾動條的大小
<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>
..但我的意圖是相對於其他組件定位滾動。 任何解釋/解決方案?
感謝