Hi,
I’m having trouble filling the screen with a rectangle using display.viewableContentWidth, and display.viewableContentHeight as size arguments. It only fills part of the screen. Is there something I’m not seeing here?
Here’s the code I’ve attached a pic
[lua]_W = display.viewableContentWidth
_H = display.viewableContentHeight
local background = display.newRect(0, 0, _W, _H)
background:setFillColor(47/255,147/255,84/255)[/lua]
Thanks,
David