开发者

Get Current Browser URL - ActionScript 3

开发者 https://www.devze.com 2022-12-18 03:49 出处:网络
I\'m trying to get current browser开发者_如何学编程 url. I have already tried with External Call, and it didn\'t work. And with loaderInfo.url I receive the current SWF url.Give this a go:

I'm trying to get current browser开发者_如何学编程 url. I have already tried with External Call, and it didn't work. And with loaderInfo.url I receive the current SWF url.


Give this a go:

import flash.external.ExternalInterface;

var url:String = ExternalInterface.call("window.location.href.toString");
if (url) textfield.text = url;

should do the trick.


There are a couple of ways to solve this problem, however all of them involve the use of JavaScript to query the browser directly.

My preferred way to solve this problem would be to provide the URL via a flashVar property, direct from the embed code (personally, I would reccomend using SWFObject to make this easier); don't forget you will need to URL Encode it to avoid markup issues.

var flashvars = {
  browserURL: escape(location.href)
};
swfobject.embedSWF("myContent.swf", "myContent", "300", "120", "9.0.0", "expressInstall.swf", flashvars);

Now you will be able to access the Browser URL via the loaderInfo object:

trace(stage.loaderInfo.parameters["browserURL"]);

note that this will only work if you have control of generated HTML for your SWF file - if users are going to be grabbing the SWF and writing their own embed HTML, it's not going to work.

If you don't have control of the flash embed HTML, then you will need to get flash to query the browser at runtime using the ExternalInterface class; other people have suggested the use of "window.location.href.toString" however this can prove problematic in IE6, I find the following works reliably across all browsers

const browserURL : String = ExternalInterface.call("eval", "window.location.href");

Note that in order for this to work, you will need to grant JavaScript access to your Flash movie, this is done, again, via the HTML embed code and the allowScriptAccess param


var url:String = loaderInfo.loaderURL;

seems to work too.


I would try passing the required info in as a flashvar. Not the best out of the box solution I know, but it will work.

Flash: FlashVars in AS3


i think its posible to use the external interface an do it with javascript window.location


I have been using flash for a long time and never noticed this one. It only gives the domain though for security. It does work through loaded swfs as well. Not sure about iframes.

Security.pageDomain
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号