Hacer funcionar la camara con la libreria Director. AYUDA!

Pues estoy intentado hacer funcionar la camara de un dispositivo y no hay manera. He ido simplificando el codigo hasta lo maximo posible y sigue sin funcionar. El problema es que si lo saco y lo monto por su parte solo el codigo de la camara funciona pero cuando lo pongo en mi app en una pagina nueva dentro del codigo minimo de director me da error. 

Alguien puede ayudarme?? 

Pongo codigo:

Esto me da error:

[lua]module(…, package.seeall)

function new()

–creamos el grupo de imagenes
local mainGroup = display.newGroup()

–DAMOS LAS FUNCIONES Y INSTRUCCIONES PRA QUE FUNCIONE LA CAMARA

– Camera not supported on simulator.
local isXcodeSimulator = “iPhone Simulator” == system.getInfo(“model”)
if (isXcodeSimulator) then
local alert = native.showAlert( “Information”, “Camera API not available on iOS Simulator.”, { “OK”})
end


local bkgd = display.newRect( 0, 0, display.contentWidth, display.contentHeight )
bkgd:setFillColor( 128, 0, 0 )

local text = display.newText( “Tap anywhere to launch Camera”, 0, 0, nil, 16 )
text:setTextColor( 255, 255, 255 )
text.x = 0.5 * display.contentWidth
text.y = 0.5 * display.contentHeight

local sessionComplete = function(event)
local image = event.target

print( "Camera ", ( image and “returned an image” ) or “session was cancelled” )
print( "event name: " … event.name )
print( "target: " … tostring( image ) )

if image then
– center image on screen
image.x = display.contentWidth/2
image.y = display.contentHeight/2
local w = image.width
local h = image.height
print( “w,h = “… w …”,” … h )
end
end

local listener = function( event )
if media.hasSource( media.Camera ) then
media.show( media.Camera, sessionComplete )
else
native.showAlert(“Corona”, “Camera not found.”)
end
return true
end
bkgd:addEventListener( “tap”, listener )

return mainGroup
end

[/lua]

Y ESTO ME FUNCIONA:

[lua]
– Camera not supported on simulator.
local isXcodeSimulator = “iPhone Simulator” == system.getInfo(“model”)
if (isXcodeSimulator) then
local alert = native.showAlert( “Information”, “Camera API not available on iOS Simulator.”, { “OK”})
end


local bkgd = display.newRect( 0, 0, display.contentWidth, display.contentHeight )
bkgd:setFillColor( 128, 0, 0 )

local text = display.newText( “Tap anywhere to launch Camera”, 0, 0, nil, 16 )
text:setTextColor( 255, 255, 255 )
text.x = 0.5 * display.contentWidth
text.y = 0.5 * display.contentHeight

local sessionComplete = function(event)
local image = event.target

print( "Camera ", ( image and “returned an image” ) or “session was cancelled” )
print( "event name: " … event.name )
print( "target: " … tostring( image ) )

if image then
– center image on screen
image.x = display.contentWidth/2
image.y = display.contentHeight/2
local w = image.width
local h = image.height
print( “w,h = “… w …”,” … h )
end
end

local listener = function( event )
if media.hasSource( media.Camera ) then
media.show( media.Camera, sessionComplete )
else
native.showAlert(“Corona”, “Camera not found.”)
end
return true
end
bkgd:addEventListener( “tap”, listener )
[/lua]

Lo unico que hago es coger el codigo que es el ejemplo del corona simulator que he probado y funciona en el movil y meterlo dentro de la estructura de director.

Por que no me funciona? Como puedo usar la camara con director?

Un saludo