How can I set a scroll bar on my Flex Application?
My Flex application is half cut off with no scroll bar in the browser window. How can I get a scr开发者_运维百科oll bar? The application tag doesn't have a setVerticalScrollPollicy property.
You need verticalScrollPolicy
property (set it on/off/auto)
You have to use scroller. Please refer this link to learn more about scrollers in Flex4.
You need to add a to the main application's SKIN file around the contentGroup. Answered here: Flex ScrollBars
精彩评论