Scrolling background

I am using a scrolling layout, but as of now the background is white! How can I make a static background?
[lua] local widget = require “widget”
widget.setTheme( “theme_ios” )
local background = display.newImage(“background.png”, 0,0, 480, 320)
display.setStatusBar(display.HiddenStatusBar)

local widget = require “widget”
local scroller = widget.newScrollView{
width = 480,
height = 400,
scrollWidth = 480,
scrollHeight = 1000
}

local obj = display.newImage( “background.png” )
obj.x = 400
obj.y = 500

local easy = widget.newButton{
id = “btn001”,
left = 260,
top = 80,
label = “Widget Button”,
width = 150, height = 38,

onEvent = onButtonEvent
}

localGroup:insert(background)
localGroup:insert( scroller )
scroller:insert( obj )
scroller:insert(easy)[/lua]

Thanks! [import]uid: 59735 topic_id: 20845 reply_id: 320845[/import]

It could be that background.png is white? If it isn’t make sure that this
[lua] localGroup:insert(background)
localGroup:insert(scroller)[/lua]
is reversed.

Regards,
Jordan Schuetz
Ninja Pig Studios [import]uid: 29181 topic_id: 20845 reply_id: 82095[/import]

Alright, I figured it out. I added the hideBackground parameter to the table with the scroll widget and set it to true. Thanks! [import]uid: 59735 topic_id: 20845 reply_id: 82216[/import]