开发者

ExternalInterface passing values from swf to an iFrame on the same page

开发者 https://www.devze.com 2023-02-24 09:00 出处:网络
On a page I have a an iFrame and a swf, I\'ve been trying to use ExternalInterface to pass values from the swf to the iFrame, anyone ever tried this and had any luck? I won\'t be able to post any code

On a page I have a an iFrame and a swf, I've been trying to use ExternalInterface to pass values from the swf to the iFrame, anyone ever tried this and had any luck? I won't be able to post any code until tomorrow, will update then if needed.

Thanks in adavnce.

Here is a visualization of what I need to accomplish, perhaps if it can't be done the way 开发者_如何学运维I said someone will have a suggestion of another way to accomplish this.

ExternalInterface passing values from swf to an iFrame on the same page


Try to target the frame. This should work with one frame on the page or you will have to change the index.

duhFrame = window.frames[0]
targetElement = duhFrame.getElementById('someIframeElement');

If this doesn't work for you then use LocalConnection and put a hidden swf on the iframe file.
LocalConnection is Global to the browser so be aware that if two browser windows are open you will get two iframes connecting on the same name and will get some funky results.
So change the connection name via query string and flashvars.
Its a real hackish workaround but it will work.

[EDIT]
One more thing make sure your javascript callback function is getting called as ExternalInterface has major domain issues when running under the file structure and not in a domain(EX: clicking run in the editor ). Try uploading to your server and change your embed code to allow for it. Also dont forget to update your crossdomain.xml(s).


You cannot access iframes from outside of them. These are security reasons, and browsers will and should block such attempts.

0

精彩评论

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

关注公众号