ScrollPaneStyle を追加すると、私の scrollPane がスクロールしません。
scroller = new ScrollPane( myWidget , skin);
scroller.setBounds(0, 0, Gdx.graphics.getWidth(), Gdx.graphics.getHeight());
this.addActor(scroller);
scroller.setLayoutEnabled( true );
scroller.setCancelTouchFocus( true );
ScrollPaneStyle paneStyle = new ScrollPaneStyle();
Texture tex = new Texture(Gdx.files.internal(filepath + "page.png"));
tex.setWrap(Texture.TextureWrap.Repeat, Texture.TextureWrap.ClampToEdge);
paneStyle.background = new SpriteDrawable( new Sprite(tex));
scroller.setScrollbarsOnTop(true);
scroller.setStyle(paneStyle);