I've created a scroll view by doing the following:
1. NGUI > Create Scroll View
2. Named scroll view MyScrollView
3. On a button press, I instantiate a new ScrollItem prefab, and set it's transform.parent to MyScrollView.transform.
When I do this, my newly instantiated item is positioned at (0, -6428, 10), as are all subsequently instantiated items. Their prefabs have a position of (0, 0, 0), and even adding them to a UIGrid child of MyScrollView doesn't have any different effect (they just stack on top of each other at 0, -6428, 10).
In your instructional video here:
http://www.youtube.com/watch?v=OiA4o8KqBFI, you add scripts like UIDragPanelContents, but those don't seem to exist any more. I have added UIDragScroll to my items, and the scrolling does work if I manually drag the items within the panel's viewable area, and they snap to the top of the list if I drag above it. I just can't seem to get them to start out that way (at the top of the list, as you would expect).
What might I be doing wrong?
Thank you.