HY,
我使用这种方法将网页打开到我的flex移动应用程序中,我想现在可以为PDF文件做同样的事情。
<s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
title="Test">
<fx:Script>
<![CDATA[
import flash.net.URLRequest;
import flash.net.navigateToURL;
import flash.display.MovieClip;
import flash.media.StageWebView;
import flash.geom.Rectangle;
import flash.events.KeyboardEvent;
import flash.ui.Keyboard;
import flash.desktop.NativeApplication;
import mx.events.FlexEvent;
private var browser:StageWebView;
protected function onButtonClicked(event:MouseEvent):void
{
browser = new StageWebView();
browser.viewPort = new Rectangle(0, 0, 100, 200);
browser.stage = this.stage;
browser.loadURL("http://stackoverflow.com");
}
]]>
</fx:Script>
<s:Button x="209" y="67" label="test" click="onButtonClicked(event)" />
答案 0 :(得分:0)
查看我们的FlexPaper GPL库。它包含在Flex移动应用程序中显示文档所需的全部内容。