0
海蘭打開一個PDF文件,在Flex應用程序移動
我用這個方法來打開一個網頁到我的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)" />