使用您选择的窗口方法轻松定位URL
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用您选择的窗口方法轻松定位URL相关的知识,希望对你有一定的参考价值。
Great little snippet I use to target an external link.
// gotoLink takes 3 parameters: the event, the URL string, and the method (_self, _blank, etc) // // sample usage: // gotoLink( evt, "http://google.com", "_blank" ); function gotoLink( evt:Event, l:String, meth:String ) : void { var URLReq:URLRequest = new URLRequest(l); try { navigateToURL(URLReq, meth); } catch (e:Error) { trace(e); } }
以上是关于使用您选择的窗口方法轻松定位URL的主要内容,如果未能解决你的问题,请参考以下文章