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.

It's a twisted question, I hope to explain good.

I've followed this tutorial

http://permadi.com/blog/2011/02/using-facebook-graph-api-in-flash-as3-1-5/

Where you can try the results here

www.permadi.com/tutorial/as3-open-graph-example-basic-1.5/index.html?test

All works perfect, but I applied a little modification to the source code.

Considering that in my site the user not necessarily will log-in with his facebook account, but he can do this with the data of manual registration, I thought that is useless initializate the facebook app when the site starts. I want to inizialize it only after clicked on the login button. And this is the result:

http://digilander.libero.it/American_horizon/index.html

If you try it without having already allowed the app, you will notice a little bug. After allowed the app throght the classic Auth dialog window, the site don't log automatically to facebook. For do that, you've to refresh the page and click on login-in button again..

In the AS3 code, I've simple applied this variation:

original code:

Facebook.init(APP_ID, handleLogin, {channelUrl : 'http://digilander.libero.it/American_horizon/index.html'});

loginButton.addEventListener(MouseEvent.CLICK, onLoginButtonClicked);

function onLoginButtonClicked(event:MouseEvent):void
{

[...]   

modified code

loginButton.addEventListener(MouseEvent.CLICK, onLoginButtonClicked);

function onLoginButtonClicked(event:MouseEvent):void
{

    Facebook.init(APP_ID, handleLogin, {channelUrl : 'http://digilander.libero.it/American_horizon/index.html'});

[...]
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.