Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using Flash Professional, and my game is coded on that basically. I'm trying to import the web graph-API and tested it on my website, and I still can't get it to work to the point I can't even get a connection.

I run this code at the beginning of a code:

Facebook.init("API CODE", handleLogin);

Then my login:

function login(session:Object, fail:Object):void
{
    if(session != null) {
        player_name = session.user.name;
    }
    else {
        player_name = "failed";
    }
}

and nothing happens. Better yet, I use trace and the handleLogin is never called, but when I make a Flex document it works. How do I fix this problem?

share|improve this question
Where is your handleLogin method? – Greg B Oct 11 '11 at 7:52

1 Answer

up vote 0 down vote accepted

Are you trying to use a web-based lib in an ActionScript 3 project, or are you using the ActionScript 3 Facebook API:

Have you tried one of the examples to get it working?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.