0

シンプルなフラッシュファイルをFacebookに埋め込んでいますが、うまくいきません...テキストをエコーすると表示されます...しかし、フラッシュファイル自体は表示されません...ここに私がいるものがありますこれまでに行ったこと:

function handleLoginStatus(response) {
            if (response.session) { //Show the SWF                                      

                //A 'name' attribute with the same value as the 'id' is REQUIRED for Chrome/Mozilla browsers
                swfobject.embedSWF("textfla.swf", "newerFlash", "650", "700", "9.0", null, null, null, {name:"newerFlash"});

            } else { //ask the user to login                    

                var params = window.location.toString().slice(window.location.toString().indexOf('?'));                 
                top.location = 'https://graph.facebook.com/oauth/authorize?client_id='+APP_ID+'&scope='+PERMS+'&redirect_uri='+REDIRECT_URI+params;                                     

            }
4

1 に答える 1

0

object タグを使用して、フラッシュ ファイルを埋め込むことができます。

<object type="application/x-shockwave-flash" data="textfla.swf" width="650" height="700">          
   <param name="wmode" value = "transparent" > 
</object>
于 2013-06-27T08:14:49.123 に答える