flex 弹出窗口被ie拦截

前端之家收集整理的这篇文章主要介绍了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相关文章