var size = cc.winSize;
var scrollView = new ccui.ScrollView();
scrollView.setDirection(ccui.ScrollView.DIR_VERTICAL);
scrollView.setTouchEnabled(true);
scrollView.setBounceEnabled(true);
scrollView.setBackGroundColorType(ccui.Layout.BG_COLOR_SOLID);
scrollView.setBackGroundColor(cc.color(255,255,255));
//scrollView.setBackGroundImageScale9Enabled(true);
scrollView.setContentSize(cc.size(720, 1280));
scrollView.setInnerContainerSize(cc.size(720, (1280*2)));
scrollView.setAnchorPoint(cc.p(0.5, 0.5));
scrollView.setPosition(cc.p(360, 640));
this.addChild(scrollView);
ボタンの位置が途中から始まります。Cocos2dx - js - ScrollView - 配置できません。
scrollView.setPosition(cc.p(360, 0));
私はy位置を変更した場合、それは別の表情を与えます。