我allreday閱讀了很多有用的東西在該論壇。現在這是我第一次請求具體幫助。StageWebView在AS3腳本
我對Flash非常陌生,並且遇到了一個問題,現在我已經爭取了一個多星期。對於我的問題,最有效和最優雅的方法是將StageWebView-Call放入as-File中。
這將是計劃: 在我的flash文件中:顯示PDF文檔「xyz」並將其放在舞臺上。
我alreday用Switch-Case試過它 - 但後來我無法擺脫PDF的。
這是我的想法: 一是新作 - 文件...
package {
import flash.display.MovieClip;
import flash.media.StageWebView;
import flash.geom.Rectangle;
import flash.filesystem.File;
import flash.display.Sprite;
import flash.display.Stage;
public class mypdf {
public var MyWebView:StageWebView
public var file:String
public var pdf:File
public function mypdf(ActFile:String) {
MyWebView = new StageWebView();
file = ActualFile; //MARKING #1
pdf = File.applicationDirectory.resolvePath(file);
MyWebView.stage = stage; //MARKING #2
MyWebView.viewPort = new Rectangle (200, 200, 400, 400);
MyWebView.loadURL(pdf.nativePath);
}
}
}
比我要打電話,在我的閃存文件...
stop();
var mynewpdf:mypdf = new mypdf("test.pdf");
兩個是錯誤回報顯示:
1120: Access of undefined property error ActualFile (at Marking #1)
1120: Access of undefined property error Stage (at Marking #2)
隨着更多的工作,我可以通過定義很多不同的每個pdf的腳本。 我的主要問題是第二個錯誤。
如果有人有任何好主意,這將是非常好的。
再見, 斯蒂芬