如何在 adobe air 应用程序中显示本地 html 内容?
我想在我的应用程序中显示本地 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>
I want to show a local html file into my application but I could't find to do that.
I used <mx:HTML>
component with using its location
property but it is not working when I try to do it with a local file which is in applicationdirectory.
I am new on adobe air and actionscript.
Hope you can hellp me out to find a solution.
Thanks
EDIT: Here is my code :
<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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 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
Use the HTMLLoader object.
Tutorials + sample code:
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
使用 htmlText 属性:
Using htmlText property:
<mx:HTML htmlText="your html content"/>