我将一些组件放到Group容器中,但是我可以将它们移到容器边框外面并查看它们。我怎么能在外面看到这些组件? 例如:100 * 100容器,放入简单按钮并设置(x,y)=(150,150)。所以,按钮在容器中,但在外面看到。我希望我的容器的边框是一个真正的边框并隐藏在组件之外。
答案 0 :(得分:1)
您需要做的就是将群组的clipAndEnableScrolling属性设置为true
(默认为false
)。
<s:Group width="100" height="100" clipAndEnableScrolling="true">
<s:Image width="150" height="150"
source="@Embed(source='/gfx/myimage.jpg')"/>
</s:Group>
以下是更多文档: http://help.adobe.com/en_US/flex/using/WS8DF44A60-B4B0-491f-A359-1B193DEB18D6.html