The showpopup is not working in my android or iOS device I followed the tutorial in sending mail using mail popup here are some relevant code:
[code]
local widget = require “widget”
function sendmail()
local options =
{
to = “wwwdotphilip@gmail.com”,
subject = “My High Score”,
body = “I scored over 9000!!! Can you do better?”,
}
native.showPopup(“mail”, options)
end
local buttonsend = widget.newButton
{
default = “done.png”,
over = “doneOver.png”,
onRelease = sendmail
}
buttonsend.x = display.contentWidth / 2; buttonsend.y = display.contentHeight / 2
[/code] [import]uid: 189861 topic_id: 34535 reply_id: 334535[/import]