/ Published in: ActionScript 3
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
private var _urlStr:String; private var _webPageURL:URLRequest; private var _targ:String; private var _jscommand:String; private var _popup:Boolean; ///////////////////////////// //Navigate to URL. ////////////////////////////// private function goToURL (_urlStr, _targ, _popup):void { if(_popup) { _jscommand = "window.open('" + _urlStr + "','PopUpWindow','height=550,width=350,toolbar=no,scrollbars=no,resizable=yes');"; _webPageURL = new URLRequest("javascript:" + _jscommand + " void(0);"); } else { _webPageURL = new URLRequest(_urlStr); } navigateToURL (_webPageURL, _targ); } //////////////////////////////