如何打开PDF空气为Android /黑色浆果浆果、空气、黑色、PDF

2023-09-08 13:27:45 作者:残年っ

我想在空中打开的PDF为Android /黑色浆果。

I want to open pdf in Air for Android/Black berry.

我该怎么办呢?

我用AIR 2.6和IDE是Flash Builder 4.5中。

I use AIR 2.6 and IDE is Flash Builder 4.5.

推荐答案

的StageWebView。

StageWebView.

的http://help.adobe.com/en_US/as3/dev/WS901d38e593cd1bac3ef1d28412ac57b094b-8000.html

例如,从上面的链接复制:

Example copied from the link above:

package  { 
    import flash.display.MovieClip; 
    import flash.media.StageWebView; 
    import flash.geom.Rectangle; 

    public class StageWebViewExample extends MovieClip{ 

        var webView:StageWebView = new StageWebView(); 

        public function StageWebViewExample() { 
            webView.stage = this.stage; 
            webView.viewPort = new Rectangle( 0, 0, stage.stageWidth, stage.stageHeight ); 
            webView.loadURL( "http://www.adobe.com" ); 
        } 
    } 
}