not working for me.
anyway, you can try this one:

cn.kevinkun.scrollarrangementplus.scrollarrangmentplus.aix (4.0 KB)
@SimpleFunction(description = "")
public void HideScrollBar(HVArrangement scrollArrangment) {
View view = scrollArrangment.getView();
if (view instanceof ScrollView) {
ScrollView scrollView = (ScrollView) view;
scrollView.setVerticalScrollBarEnabled(false);
} else if (view instanceof HorizontalScrollView) {
HorizontalScrollView horizontalScrollView = (HorizontalScrollView) view;
horizontalScrollView.setHorizontalScrollBarEnabled(false);
}
}