hi,
I'm using this code to open a popup
ExternalInterface.call("function () { window.open('" + url + "','" + title + "','" + options + "'); }");
for JavaScript people: calling ExternalInterface.call(string);
from flash player lets the browser do eval(string)();
as this call is within a click handler, it even works perfectly with Firefox and IE, for Opera it lets you open the popup manually. But in Safari, it is always blocked silently. Anyone have an idea how circumvent this?
thanks
back2dos