作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在 Air 中为 Android/Black berry 打开 pdf。
我怎么做?
我使用 AIR 2.6,IDE 是 Flash Builder 4.5。
最佳答案
舞台网页 View 。
http://help.adobe.com/en_US/as3/dev/WS901d38e593cd1bac3ef1d28412ac57b094b-8000.html
从上面的链接复制的示例:
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" );
}
}
}
关于actionscript-3 - 如何在 Air 中打开 pdf for Android/Black berry,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6184927/
我是一名优秀的程序员,十分优秀!