If you implement the Scroller (or VScroller) in a non-standard way as a
separate entity (i.e. NOT surrounding the object you want to scroll) then
manually assign it's viewport to the object that needs to be scrolled. The
scroller automatically changes the size and position of it's target object.
Is there a way to disable this?
Some non-tested example code:
<s:Application>
<s:Scroller top="0" viewport="{myViewPortObject}" />
<s:Group id="myViewPortObject" top="500" />
</s:Application>
In this example, the top="500" of the Group is not respected and instead
automatically shifted to fit into the positioning of the Scroller (top="0").
I would like for the Scroller to ONLY provide scrolling capabilities
regardless of where I decide to place the viewport, without having to extend
it - something like disableAutoPositioning=true - is this possible?
Thanks,
Baz