Actually that information is available.
widget.newTableView and widget.newScrollView support a listener function that will handle events generated from scrolling the events. The newTableview docs lists the events generated by the widget, but the example is in the widget.newScrollView docs:
http://docs.coronalabs.com/api/library/widget/newTableView.html
http://docs.coronalabs.com/api/library/widget/newScrollView.html
The tableView generates the following events: “beganScroll”, “endedScroll”, “movingToTopLimit”, “movingToBottomLimit”. “beganScroll” and “endedScroll” are pretty obvious. I think you get “movingToTopLimit” when someone has pulled down on the list to a point that the top row is lower than the top of the view and when they release it and it springs back into place, this get generated. I presume “movingToBottomLimit” is the opposite when someone is at the bottom of the list and they pull up and it springs back down.
This wasn’t working for tableViews until a build around the 950’s if I remember correctly. So you def. want the latest daily or the most recent public build to make sure this works. [import]uid: 199310 topic_id: 33894 reply_id: 134812[/import]