0
我試圖用showPermissionDialog來允許用戶在朋友牆上張貼一些東西。帶ExternalInterface的showPermissionDialog(facebook/flash)
我已經流動javascript代碼:
<script type="text/javascript">
function showStreamPermissions() {
FB.Connect.showPermissionDialog("publish_stream", doResult);
}
</script>
在5月AS3類文件,我有這樣的代碼來調用showStreamPermissions:
protected function showPermissionDialog(e:MouseEvent):void {
ExternalInterface.call("showStreamPermissions");
}
但是當我點擊按鈕顯示預感對話框,沒什麼發生?
有誰知道爲什麼?
謝謝。
MB