I have the following codes in my facebook application. The initApp function is called at creationComplete
protected function initApp():void {
try {
Facebook.init(myID, loginHandler);
} catch (err:Error) {
Alert.show(err.message);
}
currentState = (topURL) ? "loggedout": "facebookloggedout";
Alert.show(currentState.toString());
}
In the loginHandler function, I just put an Alert box to show "Success" if it is success and "fail" if it is failed. I put the release build on my web server. When I hit the web server directly in my browser, however, when I hit it through Facebook, it works perfectly in IE but not in Chrome. I have not tried the other browsers yet. My try and catch block is not showing an error message in Chrome. However, my "Success" and "Fail" alert box in the login handler function is not coming up either. It appears that the loginhandler is completely ignored by Google chrome.
Are there any ways I can do something equivalent to "Facebook.init" that works in Google Chrome?
Thanks in advance, Monte