I just tried with 2041 and it built the scrollView correctly using this code:
local scrollView = widget.newScrollView({ width = 300, height = 300, scrollWidth = 600, scrollHeight = 600 }) scrollView.x = display.contentCenterX scrollView.y = display.contentCenterY local zzz = display.newRect(0, 0, 600, 600) zzz.x = display.contentCenterX zzz.y = display.contentCenterY scrollView:insert(zzz) zzz.fill = {type="gradient", color1={1,0,0}, color2={0, 0, 1}, direction="down"}
Rob