Hello all actionscripters, you can’t use getURL anymore in Actionscript 3.

Below is how you should now start doing it:

1
2
3
var request:URLRequest = new URLRequest("http://www.ataiva.com/");
try { navigateToURL(request, '_blank');}
catch (e:Error) { trace("Error occurred!");}