StageWebView (Air) issue on iOS when typing into a text field
I am using Adobe Flash Professional CS5.5 to build an iPhone app with AIR 3.
I am implementing the FacebookMobile flash API which uses a StageWebView to display the login form. Everything works fine when I test my app locally (on my computer) but the app always crashes on iPhone as soon as I click on the "Email" text field to type my email and be able to login. The iPhone's keyboard is shown and then my app simply freeze forever (I don't have time to write any character in the text field).
Am I doing something wrong with my StageWebView? I can't figure out why this is happening.
public var webView:StageWebView;
Here is the code where I initialize the StageWebView :
webView = new StageWebView();
webView.viewPort = new Rectangle( 0, 0, stage.stageWidth, stage.stageHeight );
FacebookMobile.login(handleLogin, stage, permissions, webView);
Any help would be appreciated.