アプリケーションで Flash を使用していません。問題の原因となっているコードは、最後にある最も単純なものです。
Facebook 開発者サイトで言及されているとおりに、IFrame で動作するようにアプリケーションを構成しました。
問題は、initオプションを追加すると、IE8のサーバーへのajax呼び出し(無限ループ)を実行するためにページが停止せず、しばらくそれで遊んでいて、クリックした後に上下に移動する場合ですボタンをクリックしてフォームを送信すると、次のようなエラーが表示されます。
エラー #2044: 未処理の SecurityErrorEvent:。text=エラー #2047: セキュリティ サンドボックス違反: LocalConnection.send: ak.fbcdn.net は http://static.ak.fbcdn.net/rsrc.php/v1/yF/r/Y7YCBKX-HZn.swfにアクセスできません。
また
エラー #2044: 未処理の StatusEvent:。レベル=エラー、コード=
ここでも、Facebook アプリケーションで Flash/Flex/SWF を使用しておらず、JS のみを変更せずに含む最も単純なコードを使用しています。
<!DOCTYPE unspecified PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<body>
<!-- stylesheets for the UI -->
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : 'YOUR APP ID',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
};
(function() {
var e = document.createElement('script');
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
</script>
<form>
<button type="submit"> WOW</button>
</form>
</body>
</html>