0
votes

Ever since I updated my Adobe Readed to Version 11, I can't view any PDF on my Flex Air Application anymore. Is there anything i need to do?

  • AIR version: 3.6
  • OS: Mac OS X
  • Flex Builder: 4.6
  • Adobe Reader: 11.0.02
  • Flex components used: mx:HTML

Please help.

1

1 Answers

0
votes

Have you tried with stagewebview?

You have to do something like this:

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;