带外部接口的 showPermissionDialog (facebook/flash)
我尝试使用 showPermissionDialog 来允许用户在朋友墙上发布内容。
我有流动的 javascript 代码:
<script type="text/javascript">
function showStreamPermissions() {
FB.Connect.showPermissionDialog("publish_stream", doResult);
}
</script>
在可能的 as3 类文件上,我有这段代码来调用 showStreamPermissions:
protected function showPermissionDialog(e:MouseEvent):void {
ExternalInterface.call("showStreamPermissions");
}
但是当我单击按钮显示 Premonition Dialog 时,没有任何反应?
有谁知道为什么?
谢谢。
MB
I trying to pomp showPermissionDialog for allow the user to post something in a friend Wall.
I have the flowing javascript code:
<script type="text/javascript">
function showStreamPermissions() {
FB.Connect.showPermissionDialog("publish_stream", doResult);
}
</script>
On may as3 class file i have this code to call showStreamPermissions:
protected function showPermissionDialog(e:MouseEvent):void {
ExternalInterface.call("showStreamPermissions");
}
But when i click the button to show Premonition Dialog , nothing happens?
Does anyone know why ?
Thanks.
MB
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想出了什么问题。有必要允许脚本访问
params.allowScriptAccess="always";
I figure what was the problem. It´s necessary to allow script access
params.allowScriptAccess="always";