I initialized OpenFeint correctly in my Main.lua… but whenever I put the Open feint into app, it’s clickable, but won’t launch the dashboard.
Please see if you can see the problem. Thanks.
[code]
local ofbtn = display.newImage(“ofbtn.png”, 234, 48)
ofbtn.x = display.contentWidth/2
ofbtn.y = 835
ofbtn.isVisible = true
ofbtn.isBodyActive = true
localGroup:insert(ofbtn) – need this
local onofbtnTouch = function (event)
if event.phase == “ended” then
openfeint.launchDashboard()
end
end
ofbtn:addEventListener(“touch”, onofbtnTouch)
[/code] [import]uid: 19768 topic_id: 7175 reply_id: 307175[/import]