How Can I scroll up and down on scrollView and other scrollView on TOP

How Can I scroll up and down on scrollView and other scrollView on TOP ?

When I touch the “scrollViewInfo” , I can’t move up and down "scrollView ",

Any method I can scroll up and down when i touch the “scrollViewInfo”

 scrollView = widget.newScrollView { top = 0, left =0, width = 320, height =800, scrollWidth =320, scrollHeight =1200, horizontalScrollDisabled = true } group:insert(scrollView) scrollViewInfo = widget.newScrollView { top = 0, left =0, width = 320, height =135, scrollWidth =300, scrollHeight =100, verticalScrollDisabled = true } scrollViewInfo.x =info\_panel.x scrollViewInfo.y =info\_panel.y scrollView:insert(scrollViewInfo)

Hi @raymondcheng,

Consider using the “:takeFocus()” method, outlined here:

https://docs.coronalabs.com/api/type/ScrollViewWidget/takeFocus.html

Brent

Thanks

Hi @raymondcheng,

Consider using the “:takeFocus()” method, outlined here:

https://docs.coronalabs.com/api/type/ScrollViewWidget/takeFocus.html

Brent

Thanks