我希望能够在Flex Mobile项目中阅读PDF(我正在使用Flash Builder 4.6以及Android和iPad)。
我已成功尝试使用stagewebview从Web服务器加载pdf:
webView = new StageWebView();
webView.loadURL("http://<url>/Paper.pdf");
webView.viewPort = new Rectangle(0, 100,this.stage.stageWidth, this.stage.stageHeight);
webView.stage = this.stage;
但我真正想要的是更直观的东西。我的意思是,您可以在哪里创建翻书,转到第X页或类似页面。像这样的东西: http://devaldi.com/zine/NZ_Tourism_2007.php?ro=flash,html
我已经尝试过FlexPaper,但Zine不适用于Flex Mobile Project。
你知道有什么事可做吗?或者我该怎么做?
提前致谢
答案 0 :(得分:1)
最后,我使用了FlexPaper,但我没有在Flex Mobile Project中包含该组件,而是使用了他们的文档发布者,并在我的应用程序中加载了一个URL。
答案 1 :(得分:0)
我发现了这个Ane: https://github.com/memeller/vfrReaderNativeExtension
它只适用于iOS并且不是非常“可视”,但它是一些东西。