我想在我的应用程序中显示一个本地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>
答案 0 :(得分:1)
使用HTMLLoader对象。
教程+示例代码:
http://jurnal.tripmedia.ro/adobe-air-html-tutorial/1732.html
http://www.donotyet.com/2009/09/18/how-to-render-pdf-content-in-air-with-source-code/
http://www.badu.ro/?tag=htmlloader
答案 1 :(得分:1)
使用htmlText属性:
&lt; mx:HTML htmlText =“您的HTML内容”/&gt;