Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
自从我将 Adobe Readed 更新到第 11 版后,我再也无法在我的 Flex Air 应用程序上查看任何 PDF。我有什么需要做的吗?
请帮忙。
您是否尝试过使用 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;