I try this, but only the default background is visible instead of the webview
local function webListener(event) if event.type == "loaded" then webView.x =0 end end local webView = native.newWebView( display.contentCenterX, display.contentCenterY, 320, 480 ) webView:request( "http://gogols.in/" ) webView.x=-10000000 webView:addEventListener( "urlRequest", webListener )