I have a problem that seems to be common and corona STILL hasnt fixed. I have a main menu scene and a webscene that shows a live a website. I can go from the menu screen to the webscene and go back to the menu screen fine. The problem is when I go back to webscene a gain all I get is a blank screen. every other option I tried besides the one below cause a crash or no webpage to appear even once. Please Help thanx 
this is in my createscene of the internet scene:
local function listener( event ) local shouldLoad = true local url = event.url if 1 == string.find( url, "corona:close" ) then -- Close the web popup shouldLoad = false end if event.errorCode then -- Error loading page print( "Error: " .. tostring( event.errorMessage ) ) shouldLoad = false end return shouldLoad end local options = { hasBackground = false, baseUrl = system.DocumentsDirectory, urlRequest = listener } native.showWebPopup( 20, 45, 430, 270, "https://www.youtube.com/watch?v=rujCyD\_nEdo", options )
and this is in my exitScene:
native.cancelWebPopup()