Hi ,
I take a screen capture from my screen (i can show it on the screen properly) and then i passed it in a variable like this :
local capture = display.captureBounds( screenBounds ) composer.setVariable( "captured\_image", capture )
Then i change the scene by
composer.showOverlay( "screenshot" , options )
in the screenshot scene , i want to display the image that is in the captured_image variable and stored in shoted_image local variable :
shoted\_image = composer.getVariable("captured\_image")
How can i do it ?
Thanks