Can someone please help me figure out what I am doing wrong? This code crashes on the device when I run it more than once.
[lua]function popTheWeb (event)
webView = native.newWebView( 0, 0, 320, 200 )
webView:request( “http://www.anscamobile.com/” )
end
function webSliceGo (event)
webView:removeSelf()
webView = nil
end
webLaunchButton = display.newRect( 200, 400, 50, 50 )
webLaunchButton:setFillColor(140, 140, 140)
webLaunchButton:addEventListener ( “tap”, popTheWeb )
webBackButton = display.newRect( 50, 400, 50, 50 )
webBackButton:setFillColor(255, 255, 255)
webBackButton:addEventListener ( “tap”, webSliceGo )[/lua]
[import]uid: 96383 topic_id: 21092 reply_id: 321092[/import]