我想使用Flex Builder 4.5为移动应用程序显示HTML文件。
以下代码不起作用 -
protected var webView:StageWebView = new StageWebView();
protected function view1_viewActivateHandler():void
{
if (StageWebView.isSupported)
{
webView.viewPort = new Rectangle(5, 80, stage.width-10, stage.height-9);
webView.stage = this.stage;
webView.loadURL("file:/assets/sample.html");
......
我收到此错误 - 错误#2044:未处理的ErrorEvent: text =加载错误。
我是actionscript和flex的新手。