Hi all!
I had tha same problem, and I found a solution:
In the
UIDragScrollView.cs script that is in every scrollview elements, I added two parameters (one to the Horizontal Scroll View, and other to the Vertical Scroll View), and in the Editor I maped this parameters to the horizontal and vertical scroll view:
// Added two ponters to the horizontal and vertical scroll views
public UIScrollView scrollView, horizontalScrollView, verticalScrollView;
and in this Class, in the "
OnDrag" method I added this change:
void OnDrag (Vector2 delta)
{
// update to the right scrollview depending the drag movement (vertical or horizontal)
scrollView = (Mathf.Abs(delta.x) > 10*Mathf.Abs(delta.y)) ? horizontalScrollView : verticalScrollView;
if (scrollView && NGUITools.GetActive(this))
scrollView.Drag();
}
Whith this changes it works!
I hope this could help, jus like it helped me!

Best regards,
Cris_Chile