I have created a webpopup and link to google.com.
It works fine, but when I want to input something in the search field on the google page, the keyboard was not work.
The keyboard has appear on the screen, but can’t press any key.
anybody know where is the problem?
*the test code is below:
local ui = require("ui")
local bg\_img = display.newImage("bg.png")
--buttons---------------------------------------------
local function openWebPopup()
native.showWebPopup( "http://www.google.com")
end
local onRelease =
{
["btn\_1"] = openWebPopup
}
local buttonHandler = function( event )
if ( "release" == event.phase ) then
onRelease[event.id]()
end
end
local btn\_1 = ui.newButton{
default = "shortButton.png",over = "shortButtonOver.png",
onEvent=buttonHandler,
id = "btn\_1",text = "Google",size = 18,emboss = true,
x = 160, y = 300,
}
[import]uid: 5376 topic_id: 631 reply_id: 300631[/import]

