Allow a preconfigured URLRequest to be passed in.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5646 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2009-01-30 00:12:22 +00:00
parent 5c26798d10
commit 02d97ddec1
+6 -2
View File
@@ -30,11 +30,15 @@ public class NetUtil
* Convenience method to load a web page in the browser window without
* having to worry about SecurityErrors in various conditions.
*
* @param url a String or a URLRequest.
* @param preferredWindow the browser tab/window identifier in which to load. If you
* specify a non-null window and it causes a security error, the request is retried with null.
*
* @return true if the url was able to be loaded.
*/
public static function navigateToURL (url :String, preferredWindow :String = "_self") :Boolean
public static function navigateToURL (url :*, preferredWindow :String = "_self") :Boolean
{
var ureq :URLRequest = new URLRequest(url);
var ureq :URLRequest = (url is URLRequest) ? URLRequest(url) : new URLRequest(String(url));
while (true) {
try {
flash.net.navigateToURL(ureq, preferredWindow);