In my game I have a group that I insert items into and then I insert that group into a scrollview. When building the app using the regular corona sdk build it works fine. Howerver on corona cards it will not scroll the whole way it maybe scrolls 1/10 of the distance it should. From the docs it seems as though the scrollview should update the scrollHeight when items are inserted into it if I’m not mistaken? Anyways I thought okay easy enough I will just do the following when I define the scrollview
scrollHeight = group.height
This should set the scrollHeight of the scrollview to that of the height of my group right? Well that didn’t work either and still only scrolling like 1/10 of the distance it should be. Does anyone have any ideas?