Я думаю, что StageWebView - это то, что вам нужно.
Я только что сделал подобное ...
var _file:String = "nameOfPdf.pdf";
var webView = new StageWebView();
webView.stage = stage;
webView.viewPort = new Rectangle(20,103,960,640);//specify the clipping mask(x,y,w,h)
//NB I have my pdf file as an included file here (added in the publish panel.
var fPath:String = new File(new File("app:/includes/"+_file).nativePath).url;
webView.loadURL( fPath );
//Alternatively you should be able to navigate to a URL
webView.loadURL("http://www.google.com");