Can't Seem To Disable Horizontal Scroll In Widget 2 Scrollview

Hi everyone,

This was working a day or two ago but now I can’t seem to get horizontal scrolling disabled in my ScrollView. Code as follows:

[lua]

 local sv = widget.newScrollView{

width = 440,

height = 280,

maskFile =“mask-440.png”,

horizontalScrollingDisabled = true,

verticalScrollingDisabled = false,

backgroundColor = {255,255,255,0},

}

[/lua]

Am I doing something wrong?

Thanks,

Ian

Ah - figured it out. I had the wrong parameter name horizontalScrollingDisabled - should be:

horizontalScrollDisabled = true,

Now it works.

Thanks!

Ian

Ah - figured it out. I had the wrong parameter name horizontalScrollingDisabled - should be:

horizontalScrollDisabled = true,

Now it works.

Thanks!

Ian

Thank you!! It seems the sample code is wrong.

Thank you!! It seems the sample code is wrong.