我已经用谷歌搜索了大约一个小时左右,但找不到可行的解决方案,我有一个 Flash 播放器,我需要使用 JavaScript 全屏显示它,我可以让 JavaScript 发送命令(我的音量功能有效)但我的全屏总是返回:
Error: Error calling method on NPObject.
大多数提到这个的帖子都是通过添加 as3 安全线来解决的,对我来说,这不是问题
Security.allowDomain("mydomain.com");
function fScreen() {
if (stage.displayState== "normal") {
stage.displayState="fullScreen";
stage.scaleMode = StageScaleMode.NO_SCALE;
} else {
stage.displayState="normal";
}
call('console.log', 'okok');
}
当我刚刚输出到控制台时,它运行良好。还有其他全屏方式吗?
谢谢