AIR HTMLLoader window.open无效

时间:2012-06-27 03:25:33

标签: javascript actionscript-3 air

我有一个用Flex开发的Web项目,我必须使用AIR独立工作。

我创建了Air项目并使用flash.html.HTMLLoader加载了Web应用程序。 内容正在加载正常并正常工作。

使用javascript函数window.open打开不同链接的按钮很少。

链接未打开。使用ExternalInterface调用javascript函数,然后在显示的内容中放置警报。

该功能包含简单的window.open

window.open("http://www.google.co.in","Google");

我尝试了几种解决方案,但没有一种解决方案。

http://digitaldumptruck.jotabout.com/?p=672
http://soenkerohde.com/2008/09/air-html-with-_blank-links/
http://cookbooks.adobe.com/index.cfm?event=showdetails&postId=9243

我甚至尝试使用window.open方法在HTMLLoader组件中加载一个简单的页面,但它仍无法正常工作。在按钮上单击仅警报正在运行,但window.open未打开链接。

<html>
<head>
<title>Test</title>
<body scroll="no">
<input type="button" value="Click" onClick="window.open('http://www.google.co.in');">
</body>
</html>

请一位有人帮助我

2 个答案:

答案 0 :(得分:0)

AIR Webkit环境对window.open方法的支持非常严格。请参阅Restrictions on calling the JavaScript window.open() method上的Adobe文档。

处理此问题的最简单方法是让系统的默认浏览器打开链接。 Adobe documents this very question,并显示如何从AIR中弹出打开的URL:

var url = "http://www.adobe.com"; 
var urlReq = new air.URLRequest(url); 
air.navigateToURL(urlReq);

概括:

function openExternalLink(href:String):void {
  var urlReq = new air.URLRequest(href);
  air.navigateToURL(urlReq);
}

一个选项:假设您在页面上运行jQuery,您可以将所有链接打开,如下所示:

var html:HTMLLoader = new HTMLLoader(); 
var urlReq:URLRequest = new URLRequest("whatever.html"); 
html.load(urlReq); 
html.addEventListener(Event.COMPLETE,
  function completeHandler(event:Event):void { 
    html.window.jQuery('a').click(clickHandler); 
  });

function clickHandler( e:Object ):void { 
  if (e.target && e.target.href) {
    openExternalLink(e.target.href);
  }
  e.preventDefault();
}

有关在ActionScript中处理DOM事件的更多信息,请参阅relevant Adobe Documentation

这些都没有经过测试,但希望它能给出一个粗略的轮廓。


否则,如果您尝试做一些花哨的事情,比如弹出带有HTMLLoader框架的AIR窗口,我确实找到了一篇博客文章讨论:Opening links in AIR’s HTML loader

答案 1 :(得分:0)

这是一个激进的建议,可能会或可能不会奏效,但我认为值得一试。

覆盖window.open方法本身

和以前一样,等到Event.COMPLETE被解雇,然后从那里拿走它:

var html:HTMLLoader = new HTMLLoader();
var urlReq:URLRequest = new URLRequest("whatever.html");
var oldWindowOpen:Object; // save it, just in case

html.load(urlReq);

html.addEventListener(Event.COMPLETE,
  function (event:Event):void {
    oldWindowOpen = html.window.open;

    html.window.open = asWindowOpen;
  });

function asWindowOpen(href:String, name:String="_blank", specs:Object=null, replace:Object=null):void { 
  var urlReq = new air.URLRequest(href); 
  air.navigateToURL(urlReq);
}

您应该填写一些函数来处理W3Schools Reference for Window open() Method中指定的其他输入。您可能必须(或想要)将所有参数类型更改为Object,这是安全的,因为与ExternalInterface交互不同,JavaScript-ActionScript类型不会在AIR-WebKit交换中自动进行类型转换。