Hello all actionscripters, you can’t use getURL anymore in Actionscript 3.
Below is how you should now start doing it:
var request:URLRequest = new URLRequest("/");
try { navigateToURL(request, '_blank');}
catch (e:Error) { trace("Error occurred!");}