我有一个以 html 页面为内容的 AIR 容器:
<initialWindow>
<content>index.html</content>
...
</initialWindow>
我需要将此 html 页面切换为 air-swf 文件。我想得到如下结果:
<initialWindow>
<content>index.swf</content>
...
</initialWindow>
当我尝试更改时document.location
,AIR 内部 webkit 尝试显示此 swf 并失败。当我尝试时navigateToURL()
,默认系统浏览器尝试显示此 swf 并且也失败了。
我怎么能切换到air-swf?谢谢。