I have MXML s:View component that consists of action bar and 3 custom components that are 100% application width. I added a scroller like so:
section = new VGroup();
var scroller:Scroller = new Scroller();
scroller.percentHeight = 100;
scroller.viewport = section;
What happens is that I get both vertical and horizontal scroll bars. I want to remove the horizontal scrollbar. The horizontal scrollbar appears to be barely wider than the width of the application. As far as I see my content does not exceed application width.
How can I get rid of the horizontal scroll bar?