To get the complete URL as it appears in your web browser's address bar we use AS3's ExternalInterface class. Without going into too much detail, know that in this example we use ExternalInterface to access the DOM (Document Object Model) of the HTML page which contains our Flash. A downside of ExternalInterface is that the SWF must be embedded in the HTML page with the "allowscriptaccess" parameter set to either "sameDomain" or "always". This is OK when you control the embedding of a SWF but unfortunately cannot be relied upon if the SWF may be run on third party websites. Don’t forget to add import flash.external.ExternalInterface at the top of your document.
function get currentURL():String { var url:String; if (ExternalInterface.available) { return ExternalInterface.call("window.location.href"); } return url; }
Comments
Subscribe to comments
You need to login to post a comment.

ExternalInterface return an undefined value.
You must add the "function" string to get the value : "function(){return window.location.href;}"