I have openfeint working with everything (scores, achievements, etc.), but for the life of me, I can’t open a dashboard that points to a specific area. When I try to do so, it takes me to the generic dashboard (where you can select from leaderboards, achievements, etc.)
These are the functions I am using now (with the secret, key, and id removed):
local callOpenFeint = function()
openfeint.init("", "", "Game Name", "")
openfeint.launchDashboard()
end
local callOpenFeintLeaderboards = function()
openfeint.init("", "", "Game Name", "")
openfeint.launchDashboard("leaderboards")
end
So with the above code, you’d expect that on a first-run you’d get the log-in dashboard (which I do) and that the launchDashboard function would be skipped. Once logged-in, init would be skipped and launchDashboard would do its thing, which it does. BUT both of the above functions open the same generic view of the dashboard. Putting in the word “leaderboards” does not take me to the leaderboards directly like the API states it should. Note: I did double check that I am calling the right function (each is attached to a different button).
Any ideas?
Any help is appreciated! [import]uid: 36054 topic_id: 7464 reply_id: 307464[/import]