Firsly, my scroll view consists of many large buttons which take a large portion of space in the scrollview. If I try to scroll but initially put my finger on a button the scrollview will not scroll.
So if I want to scroll i need to avoid initially tapping the buttons which is an effort and not a very easy one. I need to be able to scrolll even if my initial touch was on a button. The focus on the button is removed when my finger is no longer on it but I still cant scroll. How can I fix this?
I am using widget.newScrollView() and widget.newButton()
Secondly, my scrollview is a horizontal scrollview. And the horizontal scrollbar is not displayed. Why?
Heres the code
scrollView = widget.newScrollView({ width = \_W, height = \_H, scrollHeight = \_H\*2, locked = false, hideBackground = true, horizontalScrollDisabled = false, verticalScrollDisabled = true, hideScrollBar = false, isBounceEnabled = true, listener = onScroll }) scrollView.anchorX = 0 scrollView.anchorY = 0 scrollView.x = 0 scrollView.y = 0