如何在adobe air应用程序中显示本地html内容?

时间:2011-04-19 13:15:44

标签: flex actionscript-3 air

我想在我的应用程序中显示一个本地html文件,但我找不到这样做。

我使用<mx:HTML>组件使用其location属性,但是当我尝试使用applicationdirectory中的本地文件时,它不起作用。

我是adobe air和actionscript的新手。

希望你能帮我找到解决方案。

由于

编辑:这是我的代码:

    <fx:Script>
    <![CDATA[   
        private function init():void {
            mybrowser.location = "http://www.google.com/maps";
        }
    ]]>
</fx:Script>
<fx:Declarations>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>

2 个答案:

答案 0 :(得分:1)

答案 1 :(得分:1)

使用htmlText属性:

&lt; mx:HTML htmlText =“您的HTML内容”/&gt;