FLEX可滚动NavigatorContent

时间:2012-03-18 17:19:41

标签: flex scroll tabnavigator

我有一个TabNaivgator,我用运行时填充的NavigatorContent填充运行时以及内容。 我看到我的内容比NavigatorContent高度更高,但是Flex不会创建滚动条,而是让内容退出NavigatorContent界限 这是代码:http://pastebin.com/xxnSz6pk 这是结果:http://dl.dropbox.com/u/4064417/Immagine.png

如何滚动内容?

提前

thanx

1 个答案:

答案 0 :(得分:1)

使用NavigationContent标记内的Scroller组件和Scroller标记内的Group:

<s:NavigatorContent width="100%" height="100%">
  <s:Scroller width="100%" height="100%">
    <s:Group>               
    <!-- Your component(s) here! -->
    </s:Group>
  </s:Scroller>
</s:NavigatorContent>