I have a simple scrollview populated with a number of display objects:
myScrollView = widget.newScrollView {
top = 100,
left = (200),
width = 45,
height = (60),
horizontalScrollDisabled = true,
verticalScrollDisabled = false,
topPadding = 31,
bottomPadding = 5,
backgroundColor = { 0, 0, 0},
isBounceEnabled = true,
listener = scrollViewTouched
}
When I touch the scrollview and drag the finger outside it, the scrolling stops and no “ended” or “cancelled” events are triggered.
How do I make it keep scrolling even if I drag outside?