0

自从我将 Adob​​e Readed 更新到第 11 版后,我再也无法在我的 Flex Air 应用程序上查看任何 PDF。我有什么需要做的吗?

  • AIR 版本:3.6
  • 操作系统:Mac OS X
  • 弹性生成器:4.6
  • Adobe 阅读器:11.0.02
  • 使用的 Flex 组件:mx:HTML

请帮忙。

4

1 回答 1

0

您是否尝试过使用 stagewebview?

你必须做这样的事情:

webView = new StageWebView();

webView.loadURL("http://<url>/xxx.pdf");

webView.viewPort = new Rectangle(0, 100,this.stage.stageWidth, this.stage.stageHeight);
webView.stage = this.stage;
于 2013-03-19T17:34:18.647 回答