Thanks for the help, things are working well, to a point. I have the text that I am pulling from a database being inserted to the Scroll View. But the last 5 or 10 lines of data are not showing at the bottom of the scroll. You can see them in the “bounce” (for a lack of a proper term) when you attempt to scroll past the bottom of the scroll max.
Here is what I have inserting the data into the
for row in db:nrows(sql) do
if row.data == nil then
print(" NO DATA FOUND ")
end
count = count +1
local dbText = row.data1…" - "…row.data2
local t = display.newText(dbText, tTab, tTop + ((fSize * 1.25) + (fSize * 3.5 * count)), tWidth, 0, native.systemFont, fSize)
t.anchorX = 0
scrollView:insert(t)
end