Hi there.
I have a very simple easyXDM-facilitated lightbox that gets opened with an easyXDM iframe.
Consumer Code:
new socialvibe.easyXDM.Rpc({
swf: provider_swf_url,
remote: provider_window_url,
container: lightbox_div,
props: { style: {width: window_width }}
},
{
remote: {},
local: {
finish: function() { alert('finished'); }
}
});
Provider Code:
var rpc = new easyXDM.Rpc({
swf: provider_swf_url,},
{
remote: {
finish: {}
},
local: { }
});
rpc.sendFinish = function() { rpc.finish(); } // define a convenience method to be compatible with existing code
Can you see anything that might be generating the "Unsafe JavaScript attempt to access frame with URL" error message 3 times?
My test consumer page does include jquery and swfobject libraries, but I don't see how these would cause this error. Otherwise, it is a very basic HTML page.
I'd appreciate any debugging tips.
Thanks so much.