flex 弹出窗口被ie拦截

    flex弹出新页面

 

    var strUrl:URLRequest = new URLRequest("http://www.sina.com.cn");// http://是必须的
    
    //这个会被ie拦截,参数是URLRequest的
    navigateToURL(strUrl,"_blank");

 

    //navigateToURL弹出页面(_blank)时会被ie拦截,

    //可以把html页面的flash的参数, wmode的值定义成transparent,用js方法调用新页面

    "wmode","transparent",

 

    ExternalInterface.call("window.open","CarMonitor.html","_blank");

你可能感兴趣的:(flex 弹出窗口被ie拦截)