Images not displaying in group

I’m trying to add some images into a group

This is the main file
[lua]local storyboard = require “storyboard”

– load background
local backgroundImg = display.newImage(“background.jpg”, true)

– load first scene
storyboard.gotoScene( “default”, “fade”, 400 )[/lua]
The thing is my image are there when I don’t add them to the group, but when I add them they are gone

[lua]-- Called when the scene’s view does not exist:
function scene:createScene( event )
local group = self.view


– CREATE display objects and add them to ‘group’ here.
– Example use-case: Restore ‘group’ from previously saved state.


local blueCardbg = display.newImage(“parkingdisc_bg.png”, true)

– this makes them hide
group:insert(blueCardbg)

print(blueCardbg.contentWidth)
r = 0
a = 0
b = 0

end[/lua] [import]uid: 149404 topic_id: 26712 reply_id: 326712[/import]

May be you should put

local scene = storyboard.newScene()  

after local storyboard = require( "storyboard" )
[import]uid: 5578 topic_id: 26712 reply_id: 112296[/import]